/* ========================================================
   NOVA CORE LABS — Premium Tech Aesthetic
   Version 2.0 - Ultra-Premium Redesign
   ======================================================== */

:root {
    /* Color Palette — Deep, Premium Blacks & Glacier Accents */
    --color-bg: #050505;
    --color-bg-darker: #030303;
    --color-surface: rgba(15, 15, 15, 0.8);
    --color-surface-soft: rgba(18, 18, 18, 0.7);
    --color-accent: #45fcfd;
    --color-accent-dim: rgba(69, 252, 253, 0.1);
    --color-accent-glow: rgba(69, 252, 253, 0.25);
    --color-white: #f5f5f7;
    --color-text-dim: #86868b;
    --color-border: rgba(255, 255, 255, 0.08);
    --color-border-active: rgba(69, 252, 253, 0.3);

    /* Typography */
    --font-heading: 'Outfit', sans-serif;
    --font-body: 'Inter', sans-serif;

    /* Spacing & Effects */
    --section-padding: 10rem;
    --border-radius: 16px;
    --border-radius-sm: 8px;
    --glass-blur: 24px;
    --transition: all 0.5s cubic-bezier(0.16, 1, 0.3, 1);
    --transition-fast: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
    --ease-out-expo: cubic-bezier(0.16, 1, 0.3, 1);
    --ease-in-out: cubic-bezier(0.65, 0, 0.35, 1);
}

/* ======================== RESET & BASE ======================== */

*,
*::before,
*::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

body {
    background-color: var(--color-bg);
    color: var(--color-white);
    font-family: var(--font-body);
    font-weight: 300;
    line-height: 1.5;
    overflow-x: hidden;
    cursor: none;
}

img {
    max-width: 100%;
    display: block;
}

a {
    color: inherit;
    text-decoration: none;
}

ul {
    list-style: none;
}

.container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 2.5rem;
}

h1, h2, h3, h4 {
    font-family: var(--font-heading);
    font-weight: 500;
    letter-spacing: -0.02em;
    line-height: 1.1;
}

/* ======================== CURSOR EFFECT ======================== */

.cursor-follower {
    position: fixed;
    width: 30px;
    height: 30px;
    background: rgba(69, 252, 253, 0);
    border: 1.5px solid rgba(69, 252, 253, 0.5);
    border-radius: 50%;
    pointer-events: none;
    z-index: 9999;
    opacity: 0;
    transition: transform 0.1s ease, opacity 0.3s ease, width 0.3s ease, height 0.3s ease;
    transform: translate(-50%, -50%);
}

.cursor-hover {
    width: 60px;
    height: 60px;
    background: rgba(69, 252, 253, 0.05);
    border: 1.5px solid var(--color-accent);
}

body:hover .cursor-follower {
    opacity: 1;
}

/* ======================== UTILITIES ======================== */

.text-cyan {
    color: var(--color-accent);
}

.text-dim {
    color: var(--color-text-dim);
}

.text-center {
    text-align: center;
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.8rem;
    padding: 1rem 2.5rem;
    font-family: var(--font-heading);
    font-size: 0.95rem;
    font-weight: 500;
    border-radius: 100px;
    transition: var(--transition);
    cursor: pointer;
    border: none;
    position: relative;
    overflow: hidden;
    z-index: 1;
}

.btn-primary {
    background: var(--color-accent);
    color: var(--color-bg);
}

.btn-primary:hover {
    box-shadow: 0 0 30px var(--color-accent-glow);
}

.btn-primary::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transform: translateX(-100%);
    z-index: -1;
}

.btn-primary:hover::before {
    animation: shimmer 1.5s infinite;
}

.btn-block {
    width: 100%;
}

.btn-outline {
    background: transparent;
    border: 1px solid var(--color-border);
    color: var(--color-white);
}

.btn-outline:hover {
    border-color: var(--color-accent);
    color: var(--color-accent);
    box-shadow: 0 0 30px rgba(69, 252, 253, 0.05);
}

.btn-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    transition: transform 0.3s var(--ease-out-expo);
}

.btn:hover .btn-icon {
    transform: translateX(4px);
}

.deploy-btn {
    position: relative;
    z-index: 2;
    overflow: hidden;
}

.deploy-btn::after {
    content: '';
    position: absolute;
    top: 0;
    left: -10%;
    width: 120%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(69, 252, 253, 0.2), transparent);
    transform: skewX(-15deg);
    transition: transform 0.6s var(--ease-out-expo);
    transform: translateX(-100%);
    z-index: -1;
}

.deploy-btn:hover::after {
    transform: translateX(100%);
}

/* Glass Card Effect */
.glass-card {
    background: var(--color-surface);
    backdrop-filter: blur(var(--glass-blur));
    border: 1px solid var(--color-border);
    border-radius: var(--border-radius);
    position: relative;
    overflow: hidden;
    transition: var(--transition);
}

.glass-card:hover {
    border-color: var(--color-border-active);
    transform: translateY(-5px);
}

.card-glow {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 1;
    opacity: 0;
    transition: opacity 0.6s ease;
    background: radial-gradient(circle at var(--x, 50%) var(--y, 50%), 
                var(--color-accent-dim) 0%, 
                transparent 60%);
}

.glass-card:hover .card-glow {
    opacity: 1;
}

/* Reveal Animations */
.reveal-text, .reveal-element {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.8s var(--ease-out-expo), transform 0.8s var(--ease-out-expo);
}

.reveal-text.active, .reveal-element.active {
    opacity: 1;
    transform: translateY(0);
}

/* Counter Animation */
@keyframes shimmer {
    0% {
        transform: translateX(-100%);
    }
    100% {
        transform: translateX(100%);
    }
}

/* ======================== NAVBAR ======================== */

.navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    padding: 1.5rem 0;
    transition: var(--transition-fast);
}

.navbar.scrolled {
    background: rgba(5, 5, 5, 0.8);
    backdrop-filter: blur(var(--glass-blur));
    border-bottom: 1px solid var(--color-border);
    padding: 1rem 0;
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.logo img {
    height: 32px;
    transition: var(--transition-fast);
}

.logo-text {
    font-family: var(--font-heading);
    font-size: 0.85rem;
    font-weight: 500;
    letter-spacing: 0.15em;
    opacity: 0;
    transform: translateX(-10px);
    transition: var(--transition-fast);
}

.navbar.scrolled .logo-text {
    opacity: 1;
    transform: translateX(0);
}

.nav-links {
    display: flex;
    gap: 1.5rem;
    align-items: center;
}

.nav-link {
    font-family: var(--font-heading);
    font-size: 0.8rem;
    font-weight: 500;
    color: var(--color-white);
    text-transform: uppercase;
    letter-spacing: 0.05em;
    padding: 0.6rem 1.2rem;
    border: 1px solid transparent;
    border-radius: 100px;
    transition: var(--transition-fast);
    position: relative;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0.3rem;
    left: 1.2rem;
    right: 1.2rem;
    height: 1px;
    background-color: var(--color-accent);
    transform: scaleX(0);
    transform-origin: right;
    transition: transform 0.3s var(--ease-out-expo);
}

.nav-link:hover::after {
    transform: scaleX(1);
    transform-origin: left;
}

.nav-link.cta-nav {
    border-color: var(--color-accent);
    background-color: transparent;
}

.nav-link.cta-nav:hover {
    background-color: var(--color-accent);
    color: var(--color-bg);
}

.nav-link.cta-nav::after {
    display: none;
}

.mobile-menu-toggle {
    display: none;
    background: transparent;
    border: none;
    width: 32px;
    height: 24px;
    position: relative;
    cursor: pointer;
    z-index: 1001;
}

.mobile-menu-toggle span {
    display: block;
    width: 100%;
    height: 2px;
    background-color: var(--color-white);
    position: absolute;
    left: 0;
    transition: var(--transition-fast);
}

.mobile-menu-toggle span:first-child {
    top: 5px;
}

.mobile-menu-toggle span:last-child {
    bottom: 5px;
}

.mobile-menu-toggle.active span:first-child {
    transform: rotate(45deg) translate(5px, 5px);
}

.mobile-menu-toggle.active span:last-child {
    transform: rotate(-45deg) translate(5px, -5px);
}

/* ======================== HERO ======================== */

.hero-section {
    position: relative;
    height: 100vh;
    min-height: 700px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    text-align: center;
    padding-top: 5rem;
}

.hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
    transition: opacity 1.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.bg-off {
    background: radial-gradient(circle at center, transparent 0%, var(--color-bg) 80%),
        url('../assets/images/drone-off.webp') center/cover no-repeat;
    opacity: 1;
}

.bg-on {
    background: radial-gradient(circle at center, transparent 0%, var(--color-bg) 80%),
        url('../assets/images/drone-on.webp') center/cover no-repeat;
    opacity: 0;
}

.hero-particle-container {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.hero-section.lights-active {
    background: radial-gradient(circle at center, var(--color-accent-dim) 0%, transparent 70%);
}

.hero-section.lights-active .bg-off {
    opacity: 0;
}

.hero-section.lights-active .bg-on {
    opacity: 1;
}

.hero-content {
    max-width: 900px;
    z-index: 10;
    padding: 0 2rem;
}

.hero-tagline {
    font-family: var(--font-heading);
    font-weight: 500;
    color: var(--color-accent);
    letter-spacing: 0.3em;
    text-transform: uppercase;
    font-size: 0.75rem;
    margin-bottom: 1.5rem;
    display: block;
}

.hero-title {
    font-size: clamp(3rem, 10vw, 5.5rem);
    font-weight: 500;
    margin-bottom: 2rem;
}

.hero-desc {
    font-size: 1.25rem;
    font-weight: 300;
    color: var(--color-text-dim);
    max-width: 600px;
    margin: 0 auto 3.5rem;
    line-height: 1.4;
}

/* Toggle Switch */
.toggle-switch-container {
    margin-bottom: 3.5rem;
}

.toggle-label-container {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
}

.toggle-label {
    font-size: 0.8rem;
    color: var(--color-text-dim);
    transition: var(--transition-fast);
}

.toggle-label.active {
    color: var(--color-white);
}

.toggle-btn {
    position: relative;
    width: 60px;
    height: 30px;
    border-radius: 100px;
    background: transparent;
    border: 1px solid var(--color-border);
    cursor: pointer;
    transition: var(--transition-fast);
    display: inline-flex;
    align-items: center;
    padding: 3px;
}

.toggle-track {
    position: absolute;
    top: 3px;
    left: 3px;
    right: 3px;
    bottom: 3px;
    border-radius: 100px;
    background: rgba(255, 255, 255, 0.05);
    transition: var(--transition-fast);
}

.toggle-indicator {
    position: relative;
    z-index: 2;
    width: 24px;
    height: 24px;
    background: var(--color-white);
    border-radius: 50%;
    transition: transform 0.4s var(--ease-out-expo);
}

.hero-section.lights-active .toggle-btn {
    border-color: var(--color-accent);
    background-color: transparent;
}

.hero-section.lights-active .toggle-track {
    background: rgba(69, 252, 253, 0.2);
}

.hero-section.lights-active .toggle-indicator {
    transform: translateX(30px);
    background: var(--color-accent);
    box-shadow: 0 0 15px var(--color-accent-glow);
}

.hero-section.lights-active .toggle-label.right {
    color: var(--color-accent);
}

.hero-section.lights-active .toggle-label.left {
    color: var(--color-text-dim);
}

/* Hero Stats */
.hero-stats {
    display: flex;
    justify-content: center;
    gap: 4rem;
}

.hero-stat {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.stat-value {
    font-size: 3rem;
    font-weight: 600;
    font-family: var(--font-heading);
    line-height: 1;
    background: linear-gradient(180deg, var(--color-white) 0%, rgba(255, 255, 255, 0.7) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-fill-color: transparent;
}

.stat-unit {
    font-size: 1.4rem;
    font-weight: 400;
    font-family: var(--font-heading);
    background: linear-gradient(180deg, var(--color-white) 0%, rgba(255, 255, 255, 0.7) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-fill-color: transparent;
}

.stat-label {
    font-size: 0.7rem;
    font-weight: 500;
    letter-spacing: 0.15em;
    color: var(--color-text-dim);
    margin-top: 0.5rem;
}

/* Scroll Indicator */
.scroll-indicator {
    position: absolute;
    bottom: 2rem;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
    z-index: 10;
}

.scroll-indicator span {
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--color-text-dim);
}

.scroll-arrow {
    width: 24px;
    height: 24px;
    border: solid var(--color-text-dim);
    border-width: 0 1px 1px 0;
    transform: rotate(45deg);
    animation: scrollArrow 2s infinite;
}

@keyframes scrollArrow {
    0%, 100% {
        transform: translateY(0) rotate(45deg);
    }
    50% {
        transform: translateY(10px) rotate(45deg);
    }
}

/* ======================== VIDEO SECTION ======================== */

.video-section {
    padding: var(--section-padding) 0;
    background-color: var(--color-bg-darker);
    position: relative;
}

.video-wrapper {
    margin-top: 4rem;
    display: flex;
    justify-content: center;
}

.video-container {
    position: relative;
    width: 100%;
    max-width: 800px;
    border-radius: var(--border-radius);
    overflow: hidden;
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.5);
    border: 1px solid var(--color-border);
    transition: var(--transition);
    transform: perspective(1000px) rotateX(5deg);
}

.video-container:hover {
    transform: perspective(1000px) rotateX(0deg);
    box-shadow: 0 40px 80px rgba(0, 0, 0, 0.6);
    border-color: var(--color-border-active);
}

.video-container::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(0deg, transparent, rgba(69, 252, 253, 0.05));
    pointer-events: none;
}

.video-container iframe {
    display: block;
    width: 100%;
    height: 450px;
    border: none;
}

/* ======================== PRODUCTS SECTION ======================== */

.products-section {
    padding: var(--section-padding) 0;
    background: var(--color-bg);
}

.bento-grid {
    display: grid;
    grid-template-columns: repeat(12, 1fr);
    gap: 2rem;
}

.product-card {
    padding: 3.5rem;
    position: relative;
    transition: var(--transition);
    display: flex;
    flex-direction: column;
}

.titan-card {
    grid-column: span 7;
}

.scout-card {
    grid-column: span 5;
}

.card-badge {
    position: absolute;
    top: 2rem;
    right: 2rem;
    font-size: 0.7rem;
    font-weight: 600;
    color: var(--color-accent);
    text-transform: uppercase;
    letter-spacing: 0.1em;
    padding: 0.5rem 1rem;
    border-radius: 100px;
    background: rgba(69, 252, 253, 0.1);
    backdrop-filter: blur(10px);
}

.badge-outline {
    background: transparent;
    border: 1px solid rgba(69, 252, 253, 0.3);
}

.card-content {
    position: relative;
    z-index: 2;
}

.product-name {
    font-size: 2.2rem;
    margin-bottom: 0.5rem;
}

.product-price {
    margin-bottom: 2.5rem;
}

.price-val {
    font-size: 1.6rem;
    font-weight: 500;
}

.price-sub {
    font-size: 0.85rem;
    color: var(--color-text-dim);
    margin-top: 0.2rem;
}

.product-specs {
    margin-bottom: 3.5rem;
}

.product-card .btn {
    margin-top: auto;
}

.spec-row {
    display: flex;
    justify-content: space-between;
    padding: 1.2rem 0;
    border-bottom: 1px solid var(--color-border);
}

.spec-row:last-child {
    border-bottom: none;
}

.spec-label {
    font-size: 0.85rem;
    color: var(--color-text-dim);
}

.spec-val {
    font-size: 0.95rem;
    font-weight: 400;
}

.discounts-note {
    margin-top: 3rem;
    color: var(--color-text-dim);
    font-size: 0.9rem;
}

/* ======================== APPLICATIONS SECTION ======================== */

.applications-section {
    padding: var(--section-padding) 0;
    background: var(--color-surface-soft);
}

.applications-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

.app-card {
    display: flex;
    flex-direction: column;
    transition: var(--transition);
    height: 100%;
}

.app-image-container {
    width: 100%;
    height: 200px;
    overflow: hidden;
    border-radius: var(--border-radius-sm);
    margin-bottom: 1.5rem;
    position: relative;
}

.app-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.8s var(--ease-out-expo);
}

.app-card:hover .app-image {
    transform: scale(1.05);
}

.app-content {
    padding: 0 1.5rem 1.5rem;
    position: relative;
    z-index: 2;
    flex: 1;
}

.app-title {
    font-size: 1.4rem;
    margin-bottom: 1rem;
}

.app-desc {
    font-size: 0.95rem;
    color: var(--color-text-dim);
    margin-bottom: 2rem;
    line-height: 1.6;
}

.app-list li {
    font-size: 0.85rem;
    color: var(--color-text-dim);
    margin-bottom: 0.8rem;
    display: flex;
    align-items: center;
    padding-left: 1rem;
    position: relative;
    transition: color 0.3s ease;
}

.app-list li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    width: 4px;
    height: 4px;
    background: var(--color-accent);
    border-radius: 50%;
    transform: translateY(-50%);
}

.app-card:hover .app-list li {
    color: var(--color-white);
}

/* ======================== CTA SECTION ======================== */

.cta-section {
    padding: var(--section-padding) 0;
    background-color: var(--color-bg);
}

.cta-box {
    padding: 6rem;
    text-align: center;
    background: radial-gradient(circle at top right, rgba(69, 252, 253, 0.05), transparent 70%),
                var(--color-surface);
}

.cta-stats {
    display: flex;
    justify-content: center;
    gap: 5rem;
    margin: 3rem 0;
}

.stat-item {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.stat-val {
    font-size: 3rem;
    font-weight: 500;
    font-family: var(--font-heading);
    line-height: 1;
    background: linear-gradient(180deg, var(--color-white) 0%, rgba(255, 255, 255, 0.7) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-fill-color: transparent;
}

.stat-suffix {
    font-size: 1.4rem;
    font-weight: 400;
    font-family: var(--font-heading);
    background: linear-gradient(180deg, var(--color-white) 0%, rgba(255, 255, 255, 0.7) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-fill-color: transparent;
}

.stat-label {
    font-size: 0.7rem;
    font-weight: 500;
    letter-spacing: 0.15em;
    color: var(--color-text-dim);
    margin-top: 0.5rem;
}

/* ======================== EMAIL CAPTURE FORM ======================== */

.email-capture-container {
    max-width: 600px;
    margin: 3rem auto 0;
    position: relative;
}

.form-row {
    display: flex;
    gap: 1rem;
    width: 100%;
    margin-bottom: 1rem;
}

.email-input {
    flex: 1;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid var(--color-border);
    padding: 1rem 1.5rem;
    color: var(--color-white);
    font-family: var(--font-body);
    font-size: 0.95rem;
    outline: none;
    border-radius: 100px;
    transition: var(--transition-fast);
}

.email-input:focus {
    border-color: var(--color-accent);
    background: rgba(255, 255, 255, 0.1);
}

.email-input::placeholder {
    color: var(--color-text-dim);
    font-size: 0.9rem;
}

.btn-submit {
    padding: 1rem 2rem;
    border-radius: 100px;
    border: none;
    background: var(--color-accent);
    color: var(--color-bg);
    font-family: var(--font-heading);
    font-weight: 500;
    font-size: 0.95rem;
    cursor: pointer;
    transition: var(--transition);
    display: inline-flex;
    align-items: center;
    gap: 0.8rem;
}

.btn-submit:hover {
    box-shadow: 0 0 30px var(--color-accent-glow);
}

.btn-submit:disabled {
    opacity: 0.4;
    cursor: not-allowed;
    background: var(--color-text-dim);
    box-shadow: none;
}

.checkbox-row {
    display: flex;
    align-items: flex-start;
    gap: 0.8rem;
    text-align: left;
    width: 100%;
    color: var(--color-text-dim);
    font-size: 0.85rem;
}

.checkbox-row input[type="checkbox"] {
    margin-top: 0.2rem;
    width: 16px;
    height: 16px;
    cursor: pointer;
    accent-color: var(--color-accent);
}

.checkbox-row label {
    cursor: pointer;
    line-height: 1.4;
}

.form-disclaimer {
    margin-top: 1.5rem;
    font-size: 0.8rem;
    color: var(--color-text-dim);
    opacity: 0.7;
}

/* ======================== SUCCESS MODAL ======================== */

.modal-overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.8);
    backdrop-filter: blur(10px);
    z-index: 1999;
}

.modal-overlay.active {
    display: block;
    animation: fadeOpacity 0.4s ease forwards;
}

.success-modal {
    display: none;
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    padding: 3rem;
    z-index: 2000;
    text-align: center;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.8);
    max-width: 400px;
    width: 90%;
    background: var(--color-surface);
}

.success-modal.active {
    display: block;
    animation: fadeIn 0.4s ease forwards;
}

.success-icon {
    margin-bottom: 1.5rem;
    display: flex;
    justify-content: center;
}

.success-title {
    color: var(--color-accent);
    margin-bottom: 1rem;
    font-size: 1.8rem;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translate(-50%, -45%);
    }
    to {
        opacity: 1;
        transform: translate(-50%, -50%);
    }
}

@keyframes fadeOpacity {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

/* ======================== RESPONSIVE DESIGN ======================== */

@media (max-width: 1200px) {
    :root {
        --section-padding: 8rem;
    }

    .titan-card, 
    .scout-card {
        grid-column: span 6;
    }
}

@media (max-width: 992px) {
    :root {
        --section-padding: 6rem;
    }

    .hero-title {
        font-size: clamp(2.5rem, 8vw, 4rem);
    }
    
    .hero-desc {
        font-size: 1.1rem;
    }

    .hero-stats {
        gap: 2rem;
    }

    .stat-value, .stat-val {
        font-size: 2.5rem;
    }

    .stat-unit, .stat-suffix {
        font-size: 1.2rem;
    }

    .bento-grid {
        gap: 1.5rem;
    }

    .titan-card, 
    .scout-card {
        grid-column: span 12;
    }

    .applications-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .cta-box {
        padding: 4rem 3rem;
    }

    .cta-stats {
        gap: 3rem;
    }

    .video-container iframe {
        height: 400px;
    }
}

@media (max-width: 768px) {
    :root {
        --section-padding: 5rem;
    }

    body {
        cursor: auto;
    }

    .cursor-follower {
        display: none;
    }

    .container {
        padding: 0 1.5rem;
    }

    .nav-links {
        display: none;
    }

    .mobile-menu-toggle {
        display: block;
    }

    .logo img {
        height: 28px;
    }

    .hero-content {
        padding: 0 1rem;
    }

    .hero-title {
        font-size: 2.5rem;
    }

    .toggle-label-container {
        flex-direction: column;
        gap: 0.5rem;
    }

    .hero-stats {
        flex-direction: column;
        gap: 2rem;
    }

    .cta-box {
        padding: 3rem 1.5rem;
    }

    .cta-stats {
        flex-direction: column;
        gap: 2rem;
    }

    .form-row {
        flex-direction: column;
    }

    .btn-submit {
        width: 100%;
    }

    .product-card {
        padding: 2rem;
    }

    .video-container iframe {
        height: 350px;
    }

    .section-title {
        font-size: 2.2rem;
    }
}

@media (max-width: 480px) {
    :root {
        --section-padding: 4rem;
    }

    .hero-section {
        min-height: 600px;
    }

    .hero-title {
        font-size: 2rem;
    }

    .hero-desc {
        font-size: 1rem;
    }

    .video-container iframe {
        height: 250px;
    }

    .product-name {
        font-size: 1.8rem;
    }

    .product-card {
        padding: 1.5rem;
    }

    .app-card {
        padding: 0;
    }

    .app-image-container {
        height: 160px;
    }

    .success-modal {
        padding: 2rem;
    }
}

/* ======================== ANIMATIONS ======================== */

@keyframes float {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-15px);
    }
}

@keyframes pulse {
    0%, 100% {
        opacity: 0.5;
    }
    50% {
        opacity: 1;
    }
}

@keyframes gradient {
    0% {
        background-position: 0% 50%;
    }
    50% {
        background-position: 100% 50%;
    }
    100% {
        background-position: 0% 50%;
    }
}
