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

:root {
    --primary-color: #2e3f9e;
    --secondary-color: #6dd5d4;
    --text-dark: #1a1a1a;
    --text-light: #ffffff;
    --bg-light: #f8f9fa;
    --bg-dark: #2a2a2a;
    --transition: 0.3s ease;
}

html {
    scroll-behavior: smooth;
    overflow-x: hidden;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    line-height: 1.6;
    color: var(--text-dark);
    overflow-x: hidden;
}

/* Parallax smooth transitions */
.hero-background-image img,
.content-image img,
.alt-image img,
.logistics-image img,
.launch-image img,
.features-showcase-image img,
.builtin-features-image img,
.feature-card,
.builtin-feature-item,
.builtin-features-content h2,
.content-text,
.alt-text,
.logistics-text,
.launch-text {
    will-change: transform;
}

/* Add overflow hidden to sections to prevent elements from escaping */
section {
    overflow: hidden;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

a {
    text-decoration: none;
    color: inherit;
}

button {
    cursor: pointer;
    border: none;
    outline: none;
    font-family: inherit;
}

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

.container-full {
    width: 100%;
    padding: 0;
}

/* ========================================
   Navigation
   ======================================== */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    z-index: 1000;
    padding: 0.5rem 0;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
    transition: var(--transition);
}

.navbar.scrolled {
    padding: 0.5rem 0;
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.1);
}

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

.logo img {
    height: 110px;
    width: auto;
    transition: transform var(--transition);
}

.logo img:hover {
    transform: scale(1.05);
}

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

.nav-menu a {
    font-weight: 500;
    transition: color var(--transition);
}

.nav-menu a:hover {
    color: var(--primary-color);
}

.cta-btn {
    background: var(--primary-color);
    color: var(--text-light);
    padding: 0.75rem 1.5rem;
    border-radius: 25px;
    font-weight: 600;
    transition: transform var(--transition), box-shadow var(--transition);
}

.cta-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(46, 63, 158, 0.3);
}

.hamburger {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
}

.hamburger span {
    width: 25px;
    height: 3px;
    background: var(--text-dark);
    transition: var(--transition);
}

/* ========================================
   Hero Section
   ======================================== */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    padding-top: 160px;
}

.hero-background-image {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 0;
}

.hero-background-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(90deg, rgba(0, 0, 0, 0.6) 0%, rgba(0, 0, 0, 0.3) 50%, rgba(0, 0, 0, 0.4) 100%);
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 2;
    width: 100%;
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 3rem;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    text-align: left;
}

.hero-text {
    max-width: 600px;
}

.hero-text h1 {
    font-family: 'Poppins', 'Inter', sans-serif;
    font-size: clamp(2.5rem, 5vw, 3.5rem);
    font-weight: 800;
    color: #ffffff;
    margin-bottom: 0.5rem;
    line-height: 1.2;
    letter-spacing: -0.02em;
    text-shadow: 2px 4px 12px rgba(0, 0, 0, 0.5);
    animation: fadeInUp 0.8s ease-out;
}

.safari-text {
    font-size: clamp(3.5rem, 8vw, 6rem);
    font-weight: 900;
    color: var(--secondary-color);
    text-shadow: 0 0 30px rgba(109, 213, 212, 0.5), 3px 6px 20px rgba(0, 0, 0, 0.7);
    letter-spacing: 0.1em;
    display: block;
    margin: 0.2em 0;
}

.hero-text p {
    font-size: clamp(1rem, 2vw, 1.2rem);
    color: #ffffff;
    margin-top: 0.5rem;
    margin-bottom: 1.5rem;
    font-weight: 400;
    line-height: 1.6;
    letter-spacing: 0.01em;
    text-shadow: 1px 2px 8px rgba(0, 0, 0, 0.5);
    opacity: 0.95;
    animation: fadeInUp 1s ease-out 0.2s backwards;
}

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

.hero-btn {
    background: #4A90E2;
    color: #ffffff;
    padding: 0.9rem 2rem;
    border-radius: 8px;
    font-size: 1rem;
    font-weight: 600;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(74, 144, 226, 0.3);
    position: relative;
    overflow: hidden;
    animation: fadeInUp 1.2s ease-out 0.4s backwards;
}

.hero-btn::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;
}

.hero-btn:hover::before {
    left: 100%;
}

.hero-btn:hover {
    background: #3A7BC8;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(74, 144, 226, 0.4);
}

.scroll-indicator {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 3;
}

.scroll-indicator span {
    display: block;
    width: 30px;
    height: 50px;
    border: 2px solid rgba(255, 255, 255, 0.8);
    border-radius: 25px;
    position: relative;
}

.scroll-indicator span::before {
    content: '';
    position: absolute;
    top: 10px;
    left: 50%;
    transform: translateX(-50%);
    width: 6px;
    height: 6px;
    background: rgba(255, 255, 255, 0.8);
    border-radius: 50%;
    animation: scroll-down 2s infinite;
}

@keyframes scroll-down {
    0%, 100% { transform: translateX(-50%) translateY(0); opacity: 1; }
    50% { transform: translateX(-50%) translateY(15px); opacity: 0; }
}

/* ========================================
   Content Sections
   ======================================== */
section {
    padding: 6rem 0;
    position: relative;
}

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

.content-grid.reverse {
    direction: rtl;
}

.content-grid.reverse > * {
    direction: ltr;
}

.content-text h2 {
    font-size: clamp(1.5rem, 3vw, 1.8rem);
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 1rem;
    line-height: 1.3;
}

.content-text p {
    font-size: clamp(0.95rem, 1.5vw, 1.05rem);
    line-height: 1.7;
    margin-bottom: 1rem;
    color: #555;
}

.highlight-text {
    font-weight: 700;
    color: var(--primary-color);
}

.features-list {
    list-style: none;
    margin-top: 2rem;
}

.features-list li {
    padding: 0.75rem 0;
    padding-left: 2rem;
    position: relative;
    font-size: 1.05rem;
}

.features-list li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--secondary-color);
    font-weight: 700;
    font-size: 1.3rem;
}

.content-image img {
    width: 70%;
    max-width: 400px;
    margin: 0 auto;
    display: block;
    transition: transform var(--transition);
}

.content-image:hover img {
    transform: scale(1.02);
}

/* ========================================
   Dark Section
   ======================================== */
.dark-section {
    background: linear-gradient(135deg, var(--bg-dark) 0%, #1a1a1a 100%);
    color: var(--text-light);
}

.dark-section .content-text h2,
.dark-section .content-text p {
    color: var(--text-light);
}

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

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

.stat-item h3 {
    font-size: 2.5rem;
    color: var(--secondary-color);
    margin-bottom: 0.5rem;
}

.stat-item p {
    font-size: 0.9rem;
    color: #888;
}

/* ========================================
   Gallery Preview
   ======================================== */
.gallery-preview {
    background: var(--bg-light);
}

/* ========================================
   Features Showcase
   ======================================== */
.showcase-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
}

.showcase-item {
    position: relative;
    border-radius: 15px;
    overflow: hidden;
}

.showcase-item img {
    width: 100%;
    transition: transform 0.5s ease;
}

.showcase-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(to top, rgba(0,0,0,0.8), transparent);
    padding: 2rem;
    color: var(--text-light);
    transform: translateY(20px);
    opacity: 0;
    transition: all var(--transition);
}

.showcase-item:hover .showcase-overlay {
    transform: translateY(0);
    opacity: 1;
}

.showcase-item:hover img {
    transform: scale(1.05);
}

/* ========================================
   Features Showcase Section
   ======================================== */
.features-showcase-section {
    padding: 3rem 0;
    background: linear-gradient(135deg, #3B82F6 0%, #60A5FA 100%);
    position: relative;
    overflow: hidden;
}

.features-showcase-section::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -10%;
    width: 600px;
    height: 600px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
}

.features-showcase-section::after {
    content: '';
    position: absolute;
    bottom: -30%;
    right: 60%;
    width: 400px;
    height: 400px;
    background: rgba(255, 255, 255, 0.08);
    border-radius: 50%;
}

.features-showcase-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    position: relative;
    z-index: 1;
}

.features-showcase-image {
    position: relative;
}

.features-showcase-image img {
    width: 100%;
    max-width: 500px;
    height: auto;
    display: block;
}

.features-showcase-cards {
    display: flex;
    flex-direction: column;
    gap: 1.2rem;
}

.feature-card {
    background: #ffffff;
    padding: 1.3rem 1.5rem;
    border-radius: 12px;
    display: flex;
    gap: 1.2rem;
    align-items: flex-start;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
    transition: transform var(--transition), box-shadow var(--transition);
}

.feature-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 35px rgba(0, 0, 0, 0.15);
}

.feature-icon {
    background: var(--primary-color);
    width: 50px;
    height: 50px;
    min-width: 50px;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #ffffff;
}

.feature-icon svg {
    width: 24px;
    height: 24px;
}

.feature-content h3 {
    font-family: 'Poppins', 'Inter', sans-serif;
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 0.3rem;
}

.feature-content p {
    font-size: 0.85rem;
    color: #666;
    line-height: 1.5;
    margin: 0;
}

/* ========================================
   Built-in Features Section
   ======================================== */
.builtin-features-section {
    padding: 5rem 0;
    background: #ffffff;
}

.builtin-features-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 5rem;
    align-items: center;
}

.builtin-features-content h2 {
    font-family: 'Poppins', 'Inter', sans-serif;
    font-size: clamp(2rem, 3.5vw, 2.8rem);
    font-weight: 800;
    color: var(--text-dark);
    margin-bottom: 2.5rem;
}

.builtin-features-list {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem 2rem;
}

.builtin-feature-item {
    display: flex;
    gap: 1rem;
    align-items: flex-start;
}

.builtin-check {
    width: 32px;
    height: 32px;
    min-width: 32px;
    background: var(--secondary-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-dark);
    font-weight: 900;
    font-size: 1.2rem;
}

.builtin-feature-item h4 {
    font-family: 'Poppins', 'Inter', sans-serif;
    font-size: 1rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 0.3rem;
}

.builtin-feature-item p {
    font-size: 0.85rem;
    color: #666;
    line-height: 1.4;
    margin: 0;
}

.builtin-features-image {
    position: relative;
}

.builtin-features-image img {
    width: 70%;
    max-width: 400px;
    height: auto;
    display: block;
    margin: 0 auto;
}

/* ========================================
   Video Section
   ======================================== */
.video-section {
    padding: 4rem 0;
    margin: 0;
}

.video-wrapper {
    position: relative;
    width: 100%;
    max-width: 1400px;
    margin: 0 auto;
    height: 70vh;
    overflow: hidden;
    border-radius: 20px;
    cursor: pointer;
}

.video-thumbnail {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.video-play-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.3);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 2rem;
    transition: background var(--transition);
}

.video-title {
    font-family: 'Poppins', 'Inter', sans-serif;
    font-size: clamp(1.5rem, 3vw, 2.5rem);
    font-weight: 700;
    color: #ffffff;
    text-align: center;
    text-shadow: 2px 4px 12px rgba(0, 0, 0, 0.6);
    margin: 0;
    padding: 0 2rem;
}

.video-wrapper:hover .video-play-overlay {
    background: rgba(0, 0, 0, 0.5);
}

.play-btn-large {
    background: transparent;
    border: none;
    cursor: pointer;
    transition: transform var(--transition);
    animation: pulse 2s infinite;
}

.play-btn-large:hover {
    transform: scale(1.1);
}

@keyframes pulse {
    0%, 100% {
        transform: scale(1);
        opacity: 1;
    }
    50% {
        transform: scale(1.05);
        opacity: 0.9;
    }
}

.video-wrapper iframe {
    width: 100%;
    height: 100%;
    border: none;
    position: absolute;
    top: 0;
    left: 0;
}

/* ========================================
   Autonomous Delivery Section
   ======================================== */
.autonomous-delivery-section {
    position: relative;
    min-height: 60vh;
    display: flex;
    align-items: center;
    overflow: hidden;
    padding: 6rem 0;
}

.autonomous-bg-image {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 0;
}

.autonomous-bg-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

.autonomous-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(90deg, rgba(0, 0, 0, 0.7) 0%, rgba(0, 0, 0, 0.5) 100%);
    z-index: 1;
}

.autonomous-content {
    position: relative;
    z-index: 2;
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 3rem;
}

.autonomous-content h2 {
    font-family: 'Poppins', 'Inter', sans-serif;
    font-size: clamp(2rem, 4vw, 2.5rem);
    font-weight: 800;
    color: #ffffff;
    margin-bottom: 1rem;
    line-height: 1.2;
    letter-spacing: 0.05em;
    text-shadow: 2px 4px 12px rgba(0, 0, 0, 0.5);
    animation: fadeInUp 0.8s ease-out;
}

.autonomous-content p {
    font-size: clamp(1rem, 2vw, 1.2rem);
    color: #ffffff;
    max-width: 600px;
    line-height: 1.6;
    text-shadow: 1px 2px 8px rgba(0, 0, 0, 0.5);
    opacity: 0.95;
    animation: fadeInUp 1s ease-out 0.2s backwards;
}

/* ========================================
   Alternating Image-Text Sections
   ======================================== */
.alternating-sections {
    padding: 4rem 0;
    background: #f8f9fa;
}

.alt-section {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    margin-bottom: 4rem;
    padding: 2rem 0;
}

.alt-section:last-child {
    margin-bottom: 0;
}

.alt-text h3 {
    font-family: 'Poppins', 'Inter', sans-serif;
    font-size: clamp(1.3rem, 2.5vw, 1.6rem);
    font-weight: 800;
    color: var(--text-dark);
    margin-bottom: 1.5rem;
    line-height: 1.3;
    letter-spacing: 0.03em;
}

.alt-text h4 {
    font-family: 'Poppins', 'Inter', sans-serif;
    font-size: clamp(1.05rem, 1.8vw, 1.2rem);
    font-weight: 700;
    color: var(--text-dark);
    margin-top: 1.5rem;
    margin-bottom: 0.5rem;
    line-height: 1.3;
}

.alt-text p {
    font-size: clamp(0.95rem, 1.5vw, 1.05rem);
    color: #555;
    line-height: 1.7;
    max-width: 500px;
    margin-bottom: 0.5rem;
}

.alt-image {
    position: relative;
}

.alt-image img {
    width: 70%;
    max-width: 400px;
    height: auto;
    margin: 0 auto;
    display: block;
}

/* ========================================
   Logistics Section
   ======================================== */
.logistics-section {
    padding: 6rem 0;
    background: #f8f9fa;
}

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

.logistics-text h2 {
    font-family: 'Poppins', 'Inter', sans-serif;
    font-size: clamp(1.8rem, 3vw, 2.3rem);
    font-weight: 800;
    color: var(--text-dark);
    margin-bottom: 1.5rem;
    line-height: 1.2;
}

.logistics-text p {
    font-size: clamp(1rem, 1.5vw, 1.15rem);
    color: #555;
    line-height: 1.7;
    max-width: 500px;
}

.logistics-image {
    position: relative;
}

.logistics-image img {
    width: 100%;
    height: auto;
    display: block;
}

/* ========================================
   Launch & Availability Section
   ======================================== */
.launch-section {
    padding: 6rem 0;
    background: #ffffff;
}

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

.launch-text h2 {
    font-family: 'Poppins', 'Inter', sans-serif;
    font-size: clamp(2rem, 3.5vw, 2.8rem);
    font-weight: 800;
    color: var(--text-dark);
    margin-bottom: 1.5rem;
    line-height: 1.2;
}

.launch-text p {
    font-size: clamp(1rem, 1.5vw, 1.15rem);
    color: #555;
    line-height: 1.7;
    margin-bottom: 1rem;
    max-width: 500px;
}

.waitlist-btn {
    background: var(--primary-color);
    color: #ffffff;
    padding: 1rem 2.5rem;
    border: none;
    border-radius: 50px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: transform var(--transition), box-shadow var(--transition);
    margin-top: 1.5rem;
    white-space: nowrap;
}

.waitlist-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(46, 63, 158, 0.4);
}

.launch-image {
    position: relative;
}

.launch-image img {
    width: 70%;
    max-width: 400px;
    height: auto;
    margin: 0 auto;
    display: block;
}

/* ========================================
   Specifications Section
   ======================================== */
.specs-section {
    background: var(--text-light);
}

.specs-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.specs-text h3 {
    font-size: 1.8rem;
    margin-bottom: 1rem;
    color: var(--text-dark);
}

.brands-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
    margin-top: 2rem;
}

.brand-placeholder {
    aspect-ratio: 16/9;
    background: #f0f0f0;
    border-radius: 8px;
}

/* ========================================
   Footer
   ======================================== */
.footer {
    background: linear-gradient(135deg, #1a1a2e 0%, #16213e 100%);
    color: var(--text-light);
    padding: 3rem 0 1.5rem;
}

.footer-top {
    display: grid;
    grid-template-columns: 1.5fr 2fr;
    gap: 3rem;
    margin-bottom: 2rem;
    padding-bottom: 2rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

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

.footer-logo {
    height: 50px;
    width: auto;
    max-width: 150px;
    object-fit: contain;
}

.footer-tagline {
    font-size: 0.95rem;
    line-height: 1.6;
    opacity: 0.8;
    max-width: 300px;
    margin: 0;
}

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

.footer-col h4 {
    margin-bottom: 1.5rem;
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--secondary-color);
    letter-spacing: 0.05em;
}

.footer-col ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-col ul li {
    margin-bottom: 0.75rem;
}

.footer-col ul li a {
    color: rgba(255, 255, 255, 0.75);
    transition: color var(--transition), transform var(--transition);
    display: inline-block;
}

.footer-col ul li a:hover {
    color: var(--secondary-color);
    transform: translateX(5px);
}

.footer-col ul li:not(:has(a)) {
    color: rgba(255, 255, 255, 0.75);
}

.social-links {
    display: flex;
    gap: 1rem;
    margin-top: 0.5rem;
}

.social-icon {
    width: 45px;
    height: 45px;
    border-radius: 10px;
    background: rgba(255, 255, 255, 0.08);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all var(--transition);
    color: rgba(255, 255, 255, 0.8);
}

.social-icon:hover {
    background: var(--secondary-color);
    color: var(--text-dark);
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(109, 213, 212, 0.3);
}

.social-icon svg {
    width: 20px;
    height: 20px;
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 2rem;
}

.footer-bottom p {
    opacity: 0.7;
    font-size: 0.9rem;
}

.footer-legal {
    display: flex;
    gap: 1rem;
    align-items: center;
    font-size: 0.9rem;
}

.footer-legal span {
    opacity: 0.5;
}

.footer-legal a {
    opacity: 0.7;
    transition: opacity var(--transition), color var(--transition);
}

.footer-legal a:hover {
    opacity: 1;
    color: var(--secondary-color);
}

/* ========================================
   Parallax Effects (CSS-only, lightweight)
   ======================================== */
.parallax-slow {
    transition: transform 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.parallax-medium {
    transition: transform 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.parallax-text {
    transition: transform 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

/* ========================================
   Reveal Animations
   ======================================== */
.reveal-left,
.reveal-right,
.reveal-up,
.reveal-scale {
    opacity: 0;
    transition: opacity 0.8s ease, transform 0.8s ease;
}

.reveal-left {
    transform: translateX(-50px);
}

.reveal-right {
    transform: translateX(50px);
}

.reveal-up {
    transform: translateY(50px);
}

.reveal-scale {
    transform: scale(0.9);
}

.reveal-left.active,
.reveal-right.active,
.reveal-up.active,
.reveal-scale.active {
    opacity: 1;
    transform: translate(0) scale(1);
}

/* ========================================
   Responsive Design
   ======================================== */
@media (max-width: 1024px) {
    .hero-content,
    .content-grid,
    .specs-content {
        grid-template-columns: 1fr;
        gap: 3rem;
    }

    .content-grid.reverse {
        direction: ltr;
    }

    .stats-grid {
        grid-template-columns: 1fr;
    }

    .gallery-grid {
        grid-template-columns: repeat(3, 1fr);
    }

    .brands-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .alt-section {
        gap: 3rem;
        margin-bottom: 3rem;
    }
}

@media (max-width: 768px) {
    .nav-menu {
        position: fixed;
        top: 70px;
        left: -100%;
        flex-direction: column;
        background: var(--text-light);
        width: 100%;
        padding: 2rem;
        box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
        transition: left var(--transition);
    }

    .nav-menu.active {
        left: 0;
    }

    .hamburger {
        display: flex;
    }

    .cta-btn {
        display: none;
    }

    .hero-text h1 {
        font-size: 2.5rem;
    }

    .gallery-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .footer-top {
        grid-template-columns: 1fr;
        gap: 3rem;
    }

    .footer-links-section {
        grid-template-columns: 1fr;
        gap: 2.5rem;
    }

    .footer-bottom {
        flex-direction: column;
        gap: 1.5rem;
        text-align: center;
    }

    .footer-legal {
        flex-wrap: wrap;
        justify-content: center;
    }

    section {
        padding: 4rem 0;
    }

    .waitlist-form {
        flex-direction: column;
    }

    .waitlist-btn {
        width: 100%;
    }

    .alt-section {
        grid-template-columns: 1fr;
        gap: 2rem;
        margin-bottom: 2.5rem;
    }

    .alt-text {
        text-align: center;
    }

    .alt-text p {
        margin: 0 auto;
    }

    .launch-grid {
        grid-template-columns: 1fr;
        gap: 3rem;
    }

    .launch-text {
        text-align: center;
    }

    .launch-text p {
        margin: 0 auto 1rem;
    }

    .waitlist-btn {
        width: 100%;
    }

    .logistics-grid {
        grid-template-columns: 1fr;
        gap: 3rem;
    }

    .logistics-text {
        text-align: center;
    }

    .logistics-text p {
        margin: 0 auto;
    }

    .features-showcase-grid {
        grid-template-columns: 1fr;
        gap: 3rem;
    }

    .features-showcase-image img {
        max-width: 400px;
        margin: 0 auto;
    }

    .builtin-features-grid {
        grid-template-columns: 1fr;
        gap: 3rem;
    }

    .builtin-features-list {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 1rem;
    }

    .hero-text h1 {
        font-size: 2rem;
    }

    .gallery-grid {
        grid-template-columns: 1fr;
    }
}

/* ========================================
   Performance Optimizations
   ======================================== */
@media (prefers-reduced-motion: reduce) {
    * {
        animation: none !important;
        transition: none !important;
    }
}
