/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    /* Defense Color Palette */
    --primary-dark: #0a0f1c;
    --primary-darker: #060b15;
    --secondary-dark: #1a2332;
    --accent-blue: #00d4ff;
    --accent-green: #00ff88;
    --accent-red: #ff0040;
    --accent-gold: #ffd700;
    
    /* Glass Effect Colors */
    --glass-bg: rgba(255, 255, 255, 0.05);
    --glass-border: rgba(255, 255, 255, 0.1);
    --glass-shadow: rgba(0, 0, 0, 0.3);
    
    /* Text Colors */
    --text-primary: #ffffff;
    --text-secondary: #b8c5d6;
    --text-muted: #7a8ba0;
    
    /* Typography */
    --font-primary: 'Inter', sans-serif;
    --font-mono: 'JetBrains Mono', monospace;
    
    /* Spacing */
    --section-padding: 120px 0;
    --container-padding: 0 2rem;
    --container-max-width: 1200px;
}

body {
    font-family: var(--font-primary);
    background: linear-gradient(135deg, var(--primary-dark) 0%, var(--primary-darker) 100%);
    color: var(--text-primary);
    line-height: 1.6;
    overflow-x: hidden;
    min-height: 100vh;
    position: relative;
}

/* Background Pattern */
body::before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: 
        radial-gradient(circle at 20% 50%, rgba(0, 212, 255, 0.05) 0%, transparent 50%),
        radial-gradient(circle at 80% 20%, rgba(0, 255, 136, 0.05) 0%, transparent 50%),
        radial-gradient(circle at 40% 80%, rgba(255, 215, 0, 0.03) 0%, transparent 50%);
    pointer-events: none;
    z-index: -1;
}

/* Glass Effect Utility Classes */
.glass-card {
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    border-radius: 16px;
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    box-shadow: 
        0 8px 32px var(--glass-shadow),
        inset 0 1px 0 rgba(255, 255, 255, 0.1);
}

.glass-nav {
    background: rgba(10, 15, 28, 0.8);
    border-bottom: 1px solid var(--glass-border);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
}

.glass-button {
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    transition: all 0.3s ease;
}

.glass-button:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 255, 255, 0.2);
    transform: translateY(-2px);
}

.glass-badge {
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
}

.glass-stats {
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
}

/* Navigation */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    padding: 1rem 0;
}

.nav-container {
    max-width: var(--container-max-width);
    margin: 0 auto;
    padding: var(--container-padding);
    display: flex;
    justify-content: space-between;
    align-items: center;
}

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

.logo-icon {
    width: 32px;
    height: 32px;
    color: var(--accent-blue);
}

.brand-text {
    font-weight: 800;
    font-size: 1.1rem;
    letter-spacing: 0.5px;
    color: var(--text-primary);
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 2rem;
}

.nav-link {
    color: var(--text-secondary);
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
    position: relative;
}

.nav-link:hover {
    color: var(--accent-blue);
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--accent-blue);
    transition: width 0.3s ease;
}

.nav-link:hover::after {
    width: 100%;
}

.cta-button {
    padding: 0.75rem 1.5rem;
    border-radius: 8px;
    font-weight: 600;
    color: var(--text-primary);
    border: none;
    cursor: pointer;
    font-size: 0.9rem;
}

/* Hero Section */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    position: relative;
    padding: var(--section-padding);
}

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    overflow: hidden;
}

.grid-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: 
        linear-gradient(rgba(0, 212, 255, 0.1) 1px, transparent 1px),
        linear-gradient(90deg, rgba(0, 212, 255, 0.1) 1px, transparent 1px);
    background-size: 50px 50px;
    opacity: 0.3;
}

.particles {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
}

.hero-container {
    max-width: var(--container-max-width);
    margin: 0 auto;
    padding: var(--container-padding);
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    position: relative;
    z-index: 1;
}

.hero-badge {
    display: inline-block;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    margin-bottom: 1.5rem;
}

.badge-text {
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--accent-gold);
    font-family: var(--font-mono);
}

.hero-title {
    margin-bottom: 1.5rem;
}

.title-primary {
    display: block;
    font-size: 4rem;
    font-weight: 800;
    color: var(--text-primary);
    line-height: 1;
    margin-bottom: 0.5rem;
    background: linear-gradient(135deg, var(--accent-blue), var(--accent-green));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.title-secondary {
    display: block;
    font-size: 1.5rem;
    font-weight: 400;
    color: var(--text-secondary);
    line-height: 1.2;
}

.hero-description {
    font-size: 1.2rem;
    color: var(--text-secondary);
    margin-bottom: 2rem;
    line-height: 1.6;
}

.highlight {
    color: var(--accent-green);
    font-weight: 600;
}

.hero-stats {
    display: flex;
    align-items: center;
    padding: 1.5rem;
    border-radius: 12px;
    margin-bottom: 2.5rem;
    gap: 2rem;
}

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

.stat-value {
    font-size: 2rem;
    font-weight: 700;
    color: var(--accent-blue);
    display: block;
    font-family: var(--font-mono);
}

.stat-label {
    font-size: 0.9rem;
    color: var(--text-muted);
    margin-top: 0.25rem;
}

.stat-divider {
    width: 1px;
    height: 40px;
    background: var(--glass-border);
}

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

.primary-button, .secondary-button {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 1rem 2rem;
    border-radius: 10px;
    font-weight: 600;
    font-size: 1rem;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
    border: none;
}

.primary-button {
    background: linear-gradient(135deg, var(--accent-blue), var(--accent-green));
    color: var(--primary-dark);
}

.primary-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(0, 212, 255, 0.3);
}

.secondary-button {
    color: var(--text-primary);
}

.button-icon {
    width: 18px;
    height: 18px;
}

.large {
    padding: 1.25rem 2.5rem;
    font-size: 1.1rem;
}

/* Hero Visual */
.hero-visual {
    display: flex;
    justify-content: center;
    align-items: center;
}

.system-preview {
    width: 100%;
    max-width: 400px;
    padding: 1.5rem;
}

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

.header-controls {
    display: flex;
    gap: 0.5rem;
}

.control {
    width: 12px;
    height: 12px;
    border-radius: 50%;
}

.control.red { background: var(--accent-red); }
.control.yellow { background: var(--accent-gold); }
.control.green { background: var(--accent-green); }

.system-status {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.status-indicator {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--accent-green);
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.5; }
}

.status-label {
    font-size: 0.8rem;
    color: var(--accent-green);
    font-family: var(--font-mono);
    font-weight: 600;
}

.preview-content {
    border-top: 1px solid var(--glass-border);
    padding-top: 1.5rem;
}

/* Drone Detection Visualization */
.drone-detection-area {
    margin-bottom: 1.5rem;
}

.detection-zone {
    position: relative;
    width: 100%;
    height: 200px;
    background: rgba(0, 0, 0, 0.3);
    border: 2px solid var(--glass-border);
    border-radius: 8px;
    overflow: hidden;
}

.drone-target {
    position: absolute;
    width: 32px;
    height: 32px;
    color: var(--accent-red);
    z-index: 2;
}

.drone-icon {
    width: 100%;
    height: 100%;
    filter: drop-shadow(0 0 8px rgba(255, 0, 64, 0.6));
}

.tracking-square {
    position: absolute;
    width: 60px;
    height: 60px;
    border: 2px solid var(--accent-green);
    z-index: 1;
}

.corner {
    position: absolute;
    width: 12px;
    height: 12px;
    border: 2px solid var(--accent-green);
}

.corner.top-left {
    top: -2px;
    left: -2px;
    border-right: none;
    border-bottom: none;
}

.corner.top-right {
    top: -2px;
    right: -2px;
    border-left: none;
    border-bottom: none;
}

.corner.bottom-left {
    bottom: -2px;
    left: -2px;
    border-right: none;
    border-top: none;
}

.corner.bottom-right {
    bottom: -2px;
    right: -2px;
    border-left: none;
    border-top: none;
}

.target-info {
    position: absolute;
    top: -25px;
    left: 0;
    display: flex;
    gap: 0.5rem;
    font-size: 0.7rem;
    font-family: var(--font-mono);
    color: var(--accent-green);
    font-weight: 600;
}

.scan-line {
    position: absolute;
    top: 0;
    left: 0;
    width: 2px;
    height: 100%;
    background: linear-gradient(to bottom, transparent, var(--accent-blue), transparent);
    animation: scanMovement 3s infinite linear;
    opacity: 0.6;
}

@keyframes droneMovement {
    0% { 
        transform: translate(20px, 30px); 
    }
    25% { 
        transform: translate(280px, 50px); 
    }
    50% { 
        transform: translate(200px, 140px); 
    }
    75% { 
        transform: translate(60px, 120px); 
    }
    100% { 
        transform: translate(20px, 30px); 
    }
}

@keyframes trackingMovement {
    0% { 
        transform: translate(6px, 16px); 
    }
    25% { 
        transform: translate(266px, 36px); 
    }
    50% { 
        transform: translate(186px, 126px); 
    }
    75% { 
        transform: translate(46px, 106px); 
    }
    100% { 
        transform: translate(6px, 16px); 
    }
}

@keyframes scanMovement {
    0% { 
        left: 0; 
        opacity: 0; 
    }
    10% { 
        opacity: 0.6; 
    }
    90% { 
        opacity: 0.6; 
    }
    100% { 
        left: 100%; 
        opacity: 0; 
    }
}

/* Second drone animations */
@keyframes droneMovement2 {
    0% { 
        transform: translate(250px, 80px); 
    }
    25% { 
        transform: translate(100px, 40px); 
    }
    50% { 
        transform: translate(180px, 110px); 
    }
    75% { 
        transform: translate(300px, 90px); 
    }
    100% { 
        transform: translate(250px, 80px); 
    }
}

@keyframes trackingMovement2 {
    0% { 
        transform: translate(236px, 66px); 
    }
    25% { 
        transform: translate(86px, 26px); 
    }
    50% { 
        transform: translate(166px, 96px); 
    }
    75% { 
        transform: translate(286px, 76px); 
    }
    100% { 
        transform: translate(236px, 66px); 
    }
}

/* Drone-specific styling */
#droneTarget {
    animation: droneMovement 8s infinite ease-in-out;
}

#trackingSquare {
    animation: trackingMovement 8s infinite ease-in-out;
}

#droneTarget2 {
    animation: droneMovement2 10s infinite ease-in-out 2s; /* 2s delay for staggered effect */
    opacity: 0;
    transform: scale(0.5);
    transition: opacity 0.5s ease, transform 0.5s ease;
}

#trackingSquare2 {
    animation: trackingMovement2 10s infinite ease-in-out 2s; /* 2s delay for staggered effect */
    opacity: 0;
    transform: scale(0.5);
    transition: opacity 0.5s ease, transform 0.5s ease;
}

.detection-info {
    space-y: 0.75rem;
}

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

.info-line .label {
    font-size: 0.8rem;
    color: var(--text-muted);
    font-family: var(--font-mono);
}

.info-line .value {
    font-size: 0.9rem;
    color: var(--accent-green);
    font-weight: 600;
    font-family: var(--font-mono);
}

/* Features Section */
.features {
    padding: var(--section-padding);
    position: relative;
}

.features-container {
    max-width: var(--container-max-width);
    margin: 0 auto;
    padding: var(--container-padding);
}

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

.section-title {
    font-size: 3rem;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 1rem;
    line-height: 1.2;
}

.section-description {
    font-size: 1.2rem;
    color: var(--text-secondary);
    max-width: 600px;
    margin: 0 auto;
}

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

.feature-card {
    padding: 2rem;
    text-align: center;
    transition: transform 0.3s ease;
}

.feature-card:hover {
    transform: translateY(-5px);
}

.feature-icon {
    width: 60px;
    height: 60px;
    margin: 0 auto 1.5rem;
    color: var(--accent-blue);
}

.feature-title {
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 1rem;
}

.feature-description {
    color: var(--text-secondary);
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

.feature-metric {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.25rem;
}

.metric-value {
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--accent-green);
    font-family: var(--font-mono);
}

.metric-label {
    font-size: 0.9rem;
    color: var(--text-muted);
}

/* Performance Section */
.performance {
    padding: var(--section-padding);
    background: rgba(0, 0, 0, 0.2);
}

.performance-container {
    max-width: var(--container-max-width);
    margin: 0 auto;
    padding: var(--container-padding);
}

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

.performance-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
}

.performance-metrics, .deployment-specs {
    padding: 2.5rem;
}

.metrics-title, .specs-title {
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 2rem;
}

.metrics-grid {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.metric-row {
    display: grid;
    grid-template-columns: 1fr auto auto;
    gap: 1rem;
    align-items: center;
}

.metric-name {
    color: var(--text-secondary);
    font-size: 0.9rem;
}

.metric-bar {
    width: 100px;
    height: 8px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 4px;
    overflow: hidden;
}

.bar-fill {
    height: 100%;
    background: linear-gradient(90deg, var(--accent-blue), var(--accent-green));
    border-radius: 4px;
    transition: width 0.8s ease;
}

.metric-row .metric-value {
    color: var(--accent-green);
    font-weight: 600;
    font-family: var(--font-mono);
    font-size: 0.9rem;
}

.specs-list {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.spec-item {
    padding: 1.5rem;
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid var(--glass-border);
    border-radius: 12px;
}

.spec-header {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 0.75rem;
}

.spec-icon {
    width: 24px;
    height: 24px;
    border-radius: 6px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 12px;
    font-weight: 600;
    color: var(--primary-dark);
}

.spec-icon.gpu { background: var(--accent-blue); }
.spec-icon.cpu { background: var(--accent-green); }
.spec-icon.edge { background: var(--accent-gold); }

.spec-icon::before {
    content: 'GPU';
}

.spec-icon.cpu::before {
    content: 'CPU';
}

.spec-icon.edge::before {
    content: 'EDGE';
}

.spec-name {
    color: var(--text-primary);
    font-weight: 600;
}

.spec-details {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.spec-value {
    color: var(--accent-green);
    font-weight: 600;
    font-family: var(--font-mono);
}

.spec-desc {
    color: var(--text-muted);
    font-size: 0.9rem;
}

/* CTA Section */
.cta {
    padding: var(--section-padding);
}

.cta-container {
    max-width: 800px;
    margin: 0 auto;
    padding: var(--container-padding);
}

.cta-content {
    padding: 4rem;
    text-align: center;
}

.cta-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 1.5rem;
}

.cta-description {
    font-size: 1.2rem;
    color: var(--text-secondary);
    margin-bottom: 2.5rem;
    line-height: 1.6;
}

.cta-actions {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin-bottom: 2.5rem;
}

.contact-info {
    display: flex;
    justify-content: center;
    gap: 3rem;
    margin-top: 2.5rem;
    padding-top: 2rem;
    border-top: 1px solid var(--glass-border);
}

.contact-item {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    text-align: center;
}

.contact-label {
    font-size: 0.9rem;
    color: var(--text-muted);
    font-family: var(--font-mono);
}

.contact-value {
    color: var(--accent-blue);
    font-weight: 600;
    font-family: var(--font-mono);
}

/* Footer */
.footer {
    background: var(--primary-darker);
    border-top: 1px solid var(--glass-border);
    padding: 3rem 0 1.5rem;
}

.footer-container {
    max-width: var(--container-max-width);
    margin: 0 auto;
    padding: var(--container-padding);
}

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

.footer-brand {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.footer-tagline {
    color: var(--text-muted);
    font-size: 0.9rem;
}

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

.link-group {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.link-title {
    font-size: 1rem;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 0.5rem;
}

.footer-link {
    color: var(--text-muted);
    text-decoration: none;
    font-size: 0.9rem;
    transition: color 0.3s ease;
}

.footer-link:hover {
    color: var(--accent-blue);
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 2rem;
    border-top: 1px solid var(--glass-border);
}

.footer-copyright {
    color: var(--text-muted);
    font-size: 0.9rem;
}

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

.legal-link {
    color: var(--text-muted);
    text-decoration: none;
    font-size: 0.9rem;
    transition: color 0.3s ease;
}

.legal-link:hover {
    color: var(--accent-blue);
}

/* Modal Styles */
.modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(8, 20, 40, 0.9);
    backdrop-filter: blur(10px);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 10000;
    opacity: 0;
    animation: modalFadeIn 0.3s ease forwards;
}

.modal-content {
    position: relative;
    max-width: 90vw;
    max-height: 90vh;
    overflow-y: auto;
    animation: modalSlideIn 0.3s ease forwards;
}

.modal-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1.5rem;
    padding-bottom: 1rem;
    border-bottom: 1px solid var(--glass-border);
}

.modal-title {
    color: var(--text-primary);
    font-size: 1.5rem;
    font-weight: 600;
    margin: 0;
}

.modal-close {
    background: none;
    border: none;
    color: var(--text-muted);
    font-size: 2rem;
    cursor: pointer;
    padding: 0;
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: all 0.3s ease;
}

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

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

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

/* Responsive Design */
@media (max-width: 1200px) {
    .hero-container {
        gap: 2.5rem;
    }
    
    .title-primary {
        font-size: 3.5rem;
    }
    
    .features-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .footer-links {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 1024px) {
    .hero-container {
        grid-template-columns: 1fr;
        gap: 3rem;
        text-align: center;
    }
    
    .title-primary {
        font-size: 3rem;
    }
    
    .performance-content {
        grid-template-columns: 1fr;
    }
    
    .hero-stats {
        flex-direction: column;
        gap: 1rem;
    }
    
    .stat-divider {
        width: 80%;
        height: 1px;
    }
    
    .features-grid {
        grid-template-columns: 1fr;
    }
    
    .footer-links {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
}

@media (max-width: 768px) {
    /* Navigation */
    .nav-container {
        padding: 0 1rem;
    }
    
    .nav-links {
        display: none;
    }
    
    /* Typography */
    .title-primary {
        font-size: 2.5rem;
        line-height: 1.1;
    }
    
    .title-secondary {
        font-size: 1.1rem;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .hero-description {
        font-size: 1rem;
    }
    
    /* Hero Section */
    .hero-container {
        padding: 0 1rem;
        gap: 2rem;
    }
    
    .hero-actions, .cta-actions {
        flex-direction: column;
        align-items: stretch;
        gap: 1rem;
    }
    
    .primary-button, .secondary-button {
        padding: 1rem 1.5rem;
        font-size: 1rem;
    }
    
    /* System Preview */
    .system-preview {
        margin: 0 1rem;
    }
    
    .drone-detection-area {
        height: 250px;
    }
    
    .detection-info {
        padding: 1rem;
    }
    
    /* Stats */
    .hero-stats {
        padding: 0 1rem;
    }
    
    .stat-item {
        padding: 1rem;
    }
    
    .stat-value {
        font-size: 1.5rem;
    }
    
    /* Sections */
    .features-container,
    .performance-container,
    .cta-container {
        padding: 0 1rem;
    }
    
    .section-header {
        margin-bottom: 2rem;
    }
    
    /* Performance Metrics */
    .metrics-grid {
        gap: 1rem;
    }
    
    .metric-row {
        padding: 1rem;
    }
    
    .specs-list {
        gap: 1rem;
    }
    
    .spec-item {
        padding: 1rem;
    }
    
    /* Contact & Footer */
    .contact-info {
        flex-direction: column;
        gap: 1.5rem;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .footer-bottom {
        flex-direction: column;
        gap: 1rem;
        text-align: center;
    }
    
    .footer-legal {
        flex-direction: column;
        gap: 1rem;
    }
}

@media (max-width: 480px) {
    /* Extra small screens */
    .title-primary {
        font-size: 2rem;
    }
    
    .section-title {
        font-size: 1.5rem;
    }
    
    .hero-container,
    .features-container,
    .performance-container,
    .cta-container {
        padding: 0 0.75rem;
    }
    
    .primary-button, .secondary-button {
        padding: 0.875rem 1.25rem;
        font-size: 0.9rem;
    }
    
    .drone-detection-area {
        height: 200px;
    }
    
    .stat-value {
        font-size: 1.25rem;
    }
    
    .stat-label {
        font-size: 0.8rem;
    }
    
    .feature-card,
    .metric-row,
    .spec-item {
        padding: 0.75rem;
    }
    
    .cta-title {
        font-size: 2rem;
    }
    
    .contact-item {
        padding: 0.75rem;
    }
} 