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

/* Main Header & Navigation */
.main-header {
    position: sticky;
    top: 0;
    z-index: 1000;
    background: rgba(0, 0, 0, 0.95);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(199, 255, 102, 0.2);
    transition: all 0.3s ease;
}

.navbar {
    padding: 16px 0;
}

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

.navbar-logo {
    display: flex;
    align-items: center;
    text-decoration: none;
    z-index: 1001;
}

.navbar-logo img {
    width: 120px;
    height: auto;
    transition: transform 0.3s ease;
}

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

.navbar-menu {
    display: flex;
    list-style: none;
    align-items: center;
    gap: 32px;
    margin: 0;
    padding: 0;
}

.navbar-link {
    color: var(--brand-white);
    text-decoration: none;
    font-size: 16px;
    font-weight: 600;
    transition: color 0.3s ease;
    display: flex;
    align-items: center;
    gap: 6px;
}

.navbar-link:hover {
    color: var(--brand-primary);
}

.navbar-link svg {
    transition: transform 0.3s ease;
}

.navbar-dropdown {
    position: relative;
}

.navbar-dropdown.active .dropdown-toggle svg {
    transform: rotate(180deg);
}

.dropdown-menu {
    position: absolute;
    top: 100%;
    left: 0;
    margin-top: 8px;
    background: rgba(0, 0, 0, 0.98);
    border: 1px solid rgba(199, 255, 102, 0.3);
    border-radius: var(--radius-sm);
    padding: 8px 0;
    min-width: 220px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: all 0.3s ease;
    box-shadow: var(--shadow-lg);
    list-style: none;
}

.navbar-dropdown.active .dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.dropdown-menu li {
    margin: 0;
}

.dropdown-menu a {
    display: block;
    padding: 12px 20px;
    color: var(--brand-white);
    text-decoration: none;
    font-size: 15px;
    transition: all 0.3s ease;
}

.dropdown-menu a:hover {
    background: rgba(199, 255, 102, 0.1);
    color: var(--brand-primary);
    padding-left: 24px;
}

/* Mobile Menu Toggle */
.navbar-toggle {
    display: none;
    flex-direction: column;
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 8px;
    z-index: 1001;
    gap: 5px;
}

.navbar-toggle span {
    width: 28px;
    height: 3px;
    background: var(--brand-white);
    border-radius: 2px;
    transition: all 0.3s ease;
}

.navbar-toggle.active span:nth-child(1) {
    transform: rotate(45deg) translate(8px, 8px);
}

.navbar-toggle.active span:nth-child(2) {
    opacity: 0;
}

.navbar-toggle.active span:nth-child(3) {
    transform: rotate(-45deg) translate(7px, -7px);
}

/* Mobile Menu Styles */
@media (max-width: 768px) {
    .navbar-toggle {
        display: flex;
    }

    .navbar-menu {
        position: fixed;
        top: 0;
        right: -100%;
        width: 280px;
        height: 100vh;
        background: rgba(0, 0, 0, 0.98);
        flex-direction: column;
        align-items: flex-start;
        padding: 80px 24px 24px;
        gap: 0;
        transition: right 0.3s ease;
        border-left: 1px solid rgba(199, 255, 102, 0.2);
        box-shadow: -4px 0 20px rgba(0, 0, 0, 0.5);
        overflow-y: auto;
    }

    .navbar-menu.active {
        right: 0;
    }

    .navbar-menu li {
        width: 100%;
        border-bottom: 1px solid rgba(199, 255, 102, 0.1);
    }

    .navbar-link {
        padding: 16px 0;
        width: 100%;
        display: flex;
        justify-content: space-between;
        align-items: center;
    }

    .navbar-dropdown {
        width: 100%;
    }

    .dropdown-menu {
        position: static;
        opacity: 1;
        visibility: visible;
        transform: none;
        margin: 0;
        border: none;
        border-top: 1px solid rgba(199, 255, 102, 0.1);
        border-radius: 0;
        background: rgba(199, 255, 102, 0.05);
        box-shadow: none;
        max-height: 0;
        overflow: hidden;
        transition: max-height 0.3s ease;
    }

    .navbar-dropdown.active .dropdown-menu {
        max-height: 300px;
    }

    .dropdown-menu a {
        padding: 12px 0 12px 20px;
    }
}

:root {
    /* primary & White Color Palette */
    --brand-primary: #C7FF66;   
    --brand-secondary: #7ec700;
    --brand-black: #000000;
    --brand-white: #ffffff;
    --brand-gray: #808080;
    --brand-gray-light: #e5e5e5;
    --brand-gray-dark: #333333;
    
    /* Gradients */
    --gradient-hero: linear-gradient(180deg, #000000 0%, #1a1a1a 50%, #000000 100%);
    
    /* Light Backgrounds */
    --bg-dark: #ffffff;
    --bg-section: #f5f5f5;
    --bg-card: #ffffff;
    --bg-card-hover: #F6FFE7;
    
    /* Text - primary & White Theme */
    --text-white: #000000;
    --text-primary: #000000;
    --text-light: #1a1a1a;
    --text-gray: #4a4a4a;
    --text-dark-gray: #666666;
    --text-muted: #999999;
    
    /* Borders & Shadows - primary & White */
    --border-color: rgba(0, 0, 0, 0.1);
    --border-light: rgba(0, 0, 0, 0.15);
    --border-dark: rgba(0, 0, 0, 0.3);
    --border-primary: rgba(0, 0, 0, 0.5);
    --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.08);
    --shadow-md: 0 4px 16px rgba(0, 0, 0, 0.12);
    --shadow-lg: 0 8px 32px rgba(0, 0, 0, 0.15);
    --shadow-primary: 0 4px 20px rgba(0, 0, 0, 0.2);
    --shadow-card: 0 4px 20px rgba(0, 0, 0, 0.08);
    
    /* Radius */
    --radius: 16px;
    --radius-sm: 12px;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    line-height: 1.6;
    color: var(--text-white);
    background-color: var(--bg-dark);
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    overflow-x: hidden;
    width: 100%;
    max-width: 100%;
}

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

/* Hero Section */
.hero {
    padding: 80px 0 100px;
    background: var(--gradient-hero);
    background-image: 
        linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.7)),
        url('./assets/smoke-overlay.jpg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    position: relative;
    overflow: hidden;
    color: var(--brand-white);
}

/* Hide hero logo when header is present */
body:has(.main-header) .hero-content .logo {
    display: none;
}


.hero .container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    position: relative;
    z-index: 2;
}

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

.hero-content .logo {
    margin-bottom: 24px;
}

.hero-content .logo img {
    display: block;
    width: auto;
    height: auto;
}

.hero-title {
    font-size: 48px;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 24px;
    color: var(--brand-white);
    letter-spacing: -0.02em;
    position: relative;
    z-index: 1;
}

.highlight {
    color: var(--brand-primary);
}

.hero-subtitle {
    font-size: 20px;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 40px;
    line-height: 1.6;
    position: relative;
    z-index: 1;
}

.hero-cta {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
}

.hero-image {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    max-width: 100%;
    overflow: hidden;
    box-sizing: border-box;
}

.carousel-container {
    position: relative;
    width: 100%;
    max-width: 500px;
    margin: 0 auto;
    padding: 0;
    box-sizing: border-box;
}

/* Swiper Styles */
.productSwiper {
    width: 100%;
    height: 500px;
    border-radius: var(--radius);
    overflow: hidden;
    box-sizing: border-box;
}

.productSwiper .swiper-wrapper {
    height: 100%;
}

.productSwiper .swiper-slide {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.product-placeholder {
    width: 100%;
    height: 100%;
    border-radius: var(--radius);
    overflow: hidden;
    box-shadow: var(--shadow-md);
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    position: relative;
    z-index: 1;
}

.hero .product-placeholder {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.3);
}

.product-placeholder img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

/* Swiper Pagination Styles */
.productSwiper .swiper-pagination {
    position: relative;
    margin-top: 20px;
    bottom: auto;
    display: flex;
    justify-content: center;
    align-items: center;
    top: -40px !important;
}

.productSwiper .swiper-pagination-bullet {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.3);
    opacity: 1;
    transition: all 0.3s ease;
    cursor: pointer;
    margin: 0 4px !important;
}

.productSwiper .swiper-pagination-bullet-active {
    background: var(--brand-white);
    width: 24px;
    border-radius: 5px;
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 16px 32px;
    font-size: 16px;
    font-weight: 600;
    text-decoration: none;
    border-radius: var(--radius-sm);
    transition: all 0.3s ease;
    cursor: pointer;
    border: none;
    text-align: center;
    position: relative;
    z-index: 1;
}

.btn-primary {
    background: var(--brand-primary);
    color: var(--brand-black);
    position: relative;
    overflow: hidden;
    font-weight: 600;
    border: 1px solid var(--brand-primary);
    transition: all 0.3s ease;
}

.btn-primary::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: var(--brand-black);
    color: var(--brand-primary);
    transition: left 0.4s ease;
    z-index: -1;
}

.btn-primary::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    border-radius: 50%;
    background: rgba(0, 0, 0, 0.1);
    transform: translate(-50%, -50%);
    transition: width 0.6s ease, height 0.6s ease;
}

.btn-primary:hover {
    color: var(--brand-white);
    transform: translateY(-3px);
    box-shadow: var(--shadow-lg);
    background: var(--brand-gray-dark);
}

.btn-primary:hover::before {
    left: 0;
}

.btn-primary:hover::after {
    width: 300px;
    height: 300px;
}

.btn-secondary {
    background-color: transparent;
    color: var(--text-white);
    border: 1px solid var(--border-color);
    font-weight: 600;
}

.hero .btn-secondary {
    color: var(--brand-white);
    border: 1px solid rgba(255, 255, 255, 0.3);
}

.hero .btn-secondary:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: var(--brand-white);
    color: var(--brand-white);
}

.btn-secondary:hover {
    background: rgba(0, 0, 0, 0.05);
    border-color: var(--brand-primary);
    color: var(--brand-primary);
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

.btn-submit {
    width: 100%;
    max-width: 400px;
    margin: 32px auto 0;
    display: block;
    font-size: 18px;
    padding: 18px 32px;
    background: #C7FF66;
    color: #000000;
    border: 1px solid #C7FF66;
    box-sizing: border-box;
}

.btn-early-bird {
    width: 100%;
    max-width: 100%;
    margin: 0;
    display: block;
    font-size: 18px;
    font-weight: 700;
    padding: 18px 32px;
    background: #000000;
    color: #ffffff;
    border: 2px solid #000000;
    box-sizing: border-box;
    text-align: center;
    text-decoration: none;
    transition: all 0.3s ease;
    border-radius: var(--radius-sm);
}

.btn-early-bird:hover {
    background: #333333;
    border-color: #333333;
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.3);
}

.btn-prepaid {
    background: var(--brand-primary);
    color: #000000;
    border-color: var(--brand-primary);
}

.btn-prepaid:hover {
    background: var(--brand-secondary);
    border-color: var(--brand-secondary);
    color: #ffffff;
}

/* Early Bird Preorder Section */
.early-bird-section {
    padding: 80px 0;
    background: linear-gradient(180deg, var(--bg-dark) 0%, var(--bg-section) 100%);
    position: relative;
}

.early-bird-card {
    max-width: 600px;
    margin: 0 auto;
    background: var(--bg-card);
    padding: 48px 40px;
    border-radius: var(--radius);
    border: 2px solid var(--brand-primary);
    box-shadow: var(--shadow-lg);
    text-align: center;
    position: relative;
    overflow: hidden;
}

.early-bird-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: var(--brand-primary);
}

.early-bird-header {
    margin-bottom: 32px;
}

.early-bird-title {
    font-size: 28px;
    font-weight: 700;
    color: var(--text-white);
    margin: 0;
    line-height: 1.3;
}

.early-bird-pricing {
    margin-bottom: 32px;
    padding: 24px;
    background: rgba(199, 255, 102, 0.1);
    border-radius: var(--radius-sm);
}

.price-main {
    font-size: 56px;
    font-weight: 700;
    color: var(--brand-secondary);
    line-height: 1;
    margin-bottom: 8px;
}

.price-mrp {
    margin-bottom: 8px;
}

.mrp-strikethrough {
    font-size: 20px;
    color: var(--text-gray);
    text-decoration: line-through;
}

.price-discount {
    font-size: 18px;
    font-weight: 600;
    color: var(--brand-secondary);
}

.early-bird-preorder-options {
    margin-bottom: 24px;
}

.preorder-options-title {
    font-size: 24px;
    font-weight: 700;
    color: var(--text-white);
    margin: 0 0 24px 0;
    text-align: center;
}

.preorder-option {
    margin-bottom: 32px;
    padding: 24px;
    background: rgba(199, 255, 102, 0.05);
    border-radius: var(--radius-sm);
    border: 1px solid var(--border-color);
}

.preorder-option:last-of-type {
    margin-bottom: 0;
}

.preorder-option-title {
    font-size: 20px;
    font-weight: 700;
    color: var(--text-white);
    margin: 0 0 8px 0;
}

.preorder-option-desc {
    font-size: 16px;
    color: var(--text-gray);
    margin: 0 0 16px 0;
    line-height: 1.5;
}

.early-bird-note {
    font-size: 14px;
    color: var(--text-gray);
    font-style: italic;
    margin: 16px 0 32px 0;
}

.early-bird-features {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
    margin-top: 32px;
    padding-top: 32px;
    border-top: 1px solid var(--border-color);
}

.early-bird-feature-item {
    display: flex;
    align-items: center;
    gap: 12px;
    text-align: left;
    font-size: 16px;
    color: var(--text-white);
}

.early-bird-feature-item svg {
    color: var(--brand-secondary);
    flex-shrink: 0;
}



/* Bento Grid Section */
.bento-section {
    padding: 100px 0;
    background: linear-gradient(180deg, var(--bg-section) 0%, var(--bg-dark) 100%);
    position: relative;
}

.bento-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    grid-template-rows: repeat(2, auto);
    gap: 24px;
    max-width: 1400px;
    margin: 0 auto;
}

.bento-card {
    padding: 32px;
    background: var(--bg-card);
    border-radius: var(--radius);
    border: 1px solid var(--border-color);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    display: flex;
    flex-direction: column;
}

.bento-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: #C7FF66;
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

.bento-card:hover::before {
    transform: scaleX(1);
}

.bento-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-md);
    border-color: #C7FF66;
    background: var(--bg-card-hover);
}

/* Feature Cards in Bento Grid */
.bento-card.feature-card {
    text-align: center;
}

.bento-card.feature-card:nth-child(1) {
    grid-column: 1;
    grid-row: 1;
}

.bento-card.feature-card:nth-child(2) {
    grid-column: 2;
    grid-row: 1;
}

/* Why Card - Spans 2 columns and 2 rows */
.bento-card.why-card {
    grid-column: 3 / 5;
    grid-row: 1 / 3;
    text-align: left;
    justify-content: flex-start;
    display: flex;
    flex-direction: column;
}

.why-image-container {
    width: 100%;
    height: 300px;
    margin-bottom: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    border-radius: var(--radius-sm);
    background: var(--bg-section);
}

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

.bento-card.feature-card:nth-child(4) {
    grid-column: 1;
    grid-row: 2;
}

.bento-card.feature-card:nth-child(5) {
    grid-column: 2;
    grid-row: 2;
}

.feature-icon {
    width: 64px;
    height: 64px;
    margin: 0 auto 24px;
    background: #C7FF66;
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--brand-black);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 2px 8px rgba(199, 255, 102, 0.2);
    position: relative;
    padding: 15px;
}

.bento-card:hover .feature-icon {
    transform: scale(1.1) rotate(5deg);
    box-shadow: var(--shadow-md);
}

.bento-card h3 {
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 12px;
    color: var(--text-white);
    position: relative;
}

.bento-card p {
    font-size: 18px;
    color: var(--text-gray);
    line-height: 1.2;
}

/* Why Card Styles */
.bento-title {
    font-size: 26px;
    font-weight: 700;
    margin-bottom: 20px;
    color: var(--text-white);
    letter-spacing: -0.02em;
    position: relative;
    padding-bottom: 16px;
}

.bento-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 60px;
    height: 3px;
    background: #C7FF66;
    border-radius: 2px;
}

.why-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.why-list li {
    font-size: 18px;
    padding-left: 40px;
    position: relative;
    color: var(--text-light);
    line-height: 1.8;
}

.why-list li::before {
    content: "✓";
    position: absolute;
    left: 0;
    color: var(--brand-secondary);
    font-weight: bold;
    font-size: 24px;
}

.section-title {
    font-size: 40px;
    font-weight: 700;
    text-align: center;
    margin-bottom: 48px;
    color: var(--text-white);
    letter-spacing: -0.02em;
    position: relative;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: -12px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 3px;
    background: #C7FF66;
    border-radius: 2px;
}

/* Preorder Modal */
.preorder-modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    z-index: 9999;
    overflow-y: auto;
    overflow-x: hidden;
}

.preorder-modal.active {
    display: block;
}

.modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background: rgba(0, 0, 0, 0.9);
    backdrop-filter: blur(5px);
    z-index: 1;
}

.modal-content {
    position: relative;
    min-height: 100vh;
    width: 100%;
    max-width: 100%;
    background: var(--bg-dark);
    z-index: 2;
    padding: 40px 0;
    overflow-x: hidden;
    box-sizing: border-box;
}

.modal-close {
    position: fixed;
    top: 20px;
    right: 20px;
    width: 48px;
    height: 48px;
    background: rgba(255, 255, 255, 0.1);
    border: 2px solid #2e2e2e;
    border-radius: 50%;
    color: #2e2e2e;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10000;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
}

.modal-close:hover {
    background: rgba(255, 255, 255, 0.2);
    border-color: var(--brand-secondary);
    color: var(--brand-secondary);
    transform: rotate(90deg);
}

.modal-close-text {
    display: block;
    margin: 0 auto 24px;
    padding: 12px 32px;
    background: transparent;
    border: 2px solid rgba(255, 255, 255, 0.3);
    border-radius: var(--radius-sm);
    color: var(--brand-white);
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    text-align: center;
}

.modal-close-text:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: var(--brand-primary);
    color: var(--brand-primary);
    transform: translateY(-2px);
}

.modal-body {
    max-width: 800px;
    margin: 0 auto;
    padding: 0 24px;
}

.modal-body .section-title {
    margin-bottom: 16px;
}

.modal-body .section-subtitle {
    margin-bottom: 32px;
}

/* Preorder Section (kept for backward compatibility) */
.preorder-section {
    padding: 100px 0;
    background: linear-gradient(180deg, var(--bg-section) 0%, var(--bg-dark) 100%);
    position: relative;
}

.section-subtitle {
    text-align: center;
    font-size: 18px;
    color: var(--text-gray);
    margin-bottom: 48px;
}

.preorder-form {
    max-width: 800px;
    margin: 0 auto;
    background: var(--bg-card);
    padding: 48px;
    border-radius: var(--radius);
    border: 1px solid var(--border-color);
    box-shadow: var(--shadow-md);
    position: relative;
    overflow: hidden;
    width: 100%;
    box-sizing: border-box;
}

.preorder-form::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: var(--brand-primary);
    border-radius: var(--radius) var(--radius) 0 0;
}

.preorder-form::after {
    content: '';
    position: absolute;
    top: -50%;
    right: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(0, 0, 0, 0.02) 0%, transparent 70%);
    pointer-events: none;
    z-index: 0;
}

.preorder-form > * {
    position: relative;
    z-index: 1;
}

.form-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
}

.form-group {
    display: flex;
    flex-direction: column;
}

.form-group.full-width {
    grid-column: 1 / -1;
}

.form-group label {
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 8px;
    color: var(--text-light);
}

.required {
    color: red;
}

.form-group input,
.form-group select,
.form-group textarea {
    padding: 14px 16px;
    font-size: 16px;
    border: 1px solid var(--border-color);
    border-radius: var(--radius-sm);
    background-color: #ffffff;
    color: var(--text-white);
    font-family: inherit;
    transition: all 0.3s ease;
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: var(--text-dark-gray);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--brand-primary);
    box-shadow: 0 0 0 3px rgba(0, 0, 0, 0.1);
    background-color: #ffffff;
    transform: translateY(-1px);
}

.form-group textarea {
    resize: vertical;
    min-height: 100px;
}

.payment-message {
    margin-top: 8px;
    font-size: 14px;
    color: var(--brand-secondary);
    font-weight: 600;
    padding: 8px 12px;
    background: rgba(199, 255, 102, 0.1);
    border-radius: var(--radius-sm);
    border-left: 3px solid var(--brand-secondary);
}

/* Success Message */
.success-message {
    max-width: 600px;
    margin: 48px auto 0;
    padding: 48px;
    text-align: center;
    background: var(--bg-card);
    border: 2px solid var(--brand-primary);
    border-radius: var(--radius);
    color: var(--brand-secondary);
    box-shadow: var(--shadow-md);
}

.success-message.hidden {
    display: none;
}

.success-message svg {
    margin-bottom: 24px;
    color: var(--brand-primary);
}

.success-message h3 {
    font-size: 24px;
    margin-bottom: 12px;
    color: var(--brand-primary);
}

.success-message p {
    font-size: 16px;
    color: var(--text-gray);
}

/* Gallery Section */
.gallery-section {
    padding: 100px 0;
    background: linear-gradient(180deg, var(--bg-section) 0%, var(--bg-dark) 100%);
    position: relative;
}

.gallery-video-container {
    display: grid;
    grid-template-columns: 70% 30%;
    gap: 40px;
    max-width: 1400px;
    margin: 0 auto;
    align-items: stretch;
}

.gallery-column,
.video-column {
    display: flex;
    flex-direction: column;
    height: 100%;
}

.gallery-subtitle {
    font-size: 24px;
    font-weight: 700;
    color: var(--text-white);
    margin-bottom: 12px;
}

.gallery-description {
    font-size: 16px;
    color: var(--text-gray);
    margin-bottom: 24px;
}

.pswp-gallery {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
    flex: 1;
    min-height: 0;
}

.pswp-gallery a {
    display: block;
    border-radius: var(--radius);
    overflow: hidden;
    box-shadow: var(--shadow-md);
    transition: all 0.3s ease;
    background: var(--bg-card);
    border: 1px solid var(--border-color);
}

.pswp-gallery a:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
    border-color: var(--brand-primary);
}

.pswp-gallery img {
    width: 100%;
    height: 298px;
    object-fit: cover;
    display: block;
    transition: transform 0.3s ease;
}

.pswp-gallery a:hover img {
    transform: scale(1.05);
}

/* Video Demo Section */
.video-container {
    width: 100%;
    position: relative;
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
}

.video-wrapper {
    position: relative;
    width: 100%;
    height: 100%;
    min-height: 0;
    background: var(--bg-card);
    border-radius: var(--radius);
    overflow: hidden;
    box-shadow: var(--shadow-md);
    border: 1px solid var(--border-color);
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Instagram Video Styling */
.instagram-video-wrapper {
    background: #000;
    border-radius: 12px;
    overflow: hidden;
    cursor: pointer;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border: 1px solid rgba(255, 255, 255, 0.1);
    aspect-ratio: 9 / 16;
    width: 100%;
    max-width: 100%;
    height: auto !important;
    min-height: 0;
}

.instagram-video-wrapper:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 24px rgba(0, 0, 0, 0.4);
}

.instagram-video-overlay {
    position: relative;
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    background: #000;
}

.instagram-header {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 12px 16px;
    background: linear-gradient(to bottom, rgba(0, 0, 0, 0.6) 0%, transparent 100%);
    z-index: 10;
}

.instagram-profile {
    display: flex;
    align-items: center;
    gap: 12px;
}

.instagram-avatar {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    border: 2px solid #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    background: #000;
}

.instagram-avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.instagram-username {
    color: #fff;
    font-weight: 600;
    font-size: 14px;
}

.instagram-more-icon {
    color: #fff;
    cursor: pointer;
}

.demo-video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: none;
    border-radius: 0;
    object-fit: cover;
    background: #000;
    z-index: 1;
}

.instagram-video-wrapper .demo-video {
    object-fit: cover;
}

.instagram-actions {
    display: flex;
    align-items: center;
    justify-content: space-between;
    z-index: 10;
    margin-bottom: 10px;
}

.instagram-action-left {
    display: flex;
    align-items: center;
    gap: 16px;
}

.instagram-icon {
    color: #fff;
    cursor: pointer;
    transition: transform 0.2s ease;
}

.instagram-icon:hover {
    transform: scale(1.1);
}

.instagram-footer {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 12px 16px 16px;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.8) 0%, transparent 100%);
    z-index: 10;
}

.instagram-likes {
    color: #fff;
    font-weight: 600;
    font-size: 14px;
    margin-bottom: 0px;
}

.instagram-caption {
    color: #fff;
    font-size: 14px;
    line-height: 1.4;
}

.instagram-caption strong {
    font-weight: 600;
    margin-right: 4px;
}

.instagram-play-button {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 64px;
    height: 64px;
    background: rgba(0, 0, 0, 0.5);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 5;
    transition: all 0.3s ease;
    pointer-events: none;
}

.instagram-video-wrapper:hover .instagram-play-button {
    background: rgba(0, 0, 0, 0.7);
    transform: translate(-50%, -50%) scale(1.1);
}

.instagram-video-wrapper:hover .demo-video {
    filter: brightness(0.9);
}

.video-placeholder {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    background: rgba(0, 0, 0, 0.3);
    color: var(--brand-white);
    text-align: center;
    padding: 40px;
}

.video-placeholder svg {
    margin-bottom: 16px;
    color: var(--brand-primary);
}

.video-placeholder p {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 8px;
}

.video-placeholder-note {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.7);
    font-weight: 400;
}

/* Demo Section */
.demo-section {
    padding-bottom: 100px;
    background: linear-gradient(180deg, var(--bg-dark) 0%, var(--bg-section) 100%);
    position: relative;
}

.demo-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    max-width: 1400px;
    margin: 0 auto;
}

.demo-reel-item {
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
}

.demo-reel-item blockquote.instagram-media {
    margin: 0 !important;
    width: 100% !important;
    max-width: 100% !important;
    min-width: 100% !important;
}

/* Footer */
.footer {
    padding: 48px 0;
    background: var(--bg-section);
    border-top: 1px solid var(--border-color);
    text-align: center;
    color: var(--text-gray);
    position: relative;
}

.footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: var(--brand-primary);
    opacity: 0.1;
}

.footer-links {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 24px;
    margin-bottom: 16px;
}

.footer a {
    color: var(--text-gray);
    text-decoration: none;
    font-size: 14px;
    transition: color 0.3s ease;
}

.footer a:hover {
    color: var(--brand-primary);
}

.footer p {
    margin: 0;
}

/* Animations */
.fade-in {
    opacity: 0;
    transform: translateY(20px);
    animation: fadeIn 0.6s ease forwards;
}

@keyframes fadeIn {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.fade-in:nth-child(1) { animation-delay: 0.1s; }
.fade-in:nth-child(2) { animation-delay: 0.2s; }
.fade-in:nth-child(3) { animation-delay: 0.3s; }
.fade-in:nth-child(4) { animation-delay: 0.4s; }

/* Responsive Design */
@media (max-width: 1024px) {
    .bento-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .bento-card.why-card {
        grid-column: 1 / 3;
        grid-row: 3 / 5;
    }
}

@media (max-width: 768px) {
    .bento-title {
        font-size: 24px;
    }
    .why-list li {
        font-size: 16px;
    }
    .hero .container {
        grid-template-columns: 1fr;
        gap: 40px;
        overflow-x: hidden;
    }

    .hero-image {
        width: 100%;
        max-width: 100%;
        overflow: hidden;
    }

    .hero-title {
        font-size: 36px;
    }

    .hero-subtitle {
        font-size: 18px;
    }

    .hero-cta {
        flex-direction: column;
    }

    .btn {
        width: 100%;
    }

    .bento-grid {
        display: flex;
        flex-direction: column;
    }
    
    .bento-card {
        width: 100%;
    }
    
    .bento-card.feature-card:nth-child(1) {
        order: 1;
    }
    
    .bento-card.feature-card:nth-child(2) {
        order: 2;
    }
    
    .bento-card.feature-card:nth-child(4) {
        order: 3;
    }
    
    .bento-card.feature-card:nth-child(5) {
        order: 4;
    }
    
    .bento-card.why-card {
        order: 5;
    }
    
    .why-image-container {
        height: 150px;
        margin-bottom: 24px;
    }

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

    .preorder-form {
        padding: 32px 24px;
    }

    .section-title {
        font-size: 32px;
    }

    .container {
        padding: 0 16px;
    }

    /* Carousel/Swiper mobile adjustments */
    .carousel-container {
        max-width: 100%;
        padding: 0;
    }

    .productSwiper {
        height: 350px;
        border-radius: var(--radius-sm);
    }

    .product-placeholder {
        border-radius: var(--radius-sm);
    }

    /* Pre-order button mobile adjustments */
    .btn-submit {
        max-width: 100%;
        width: 100%;
        padding: 16px 24px;
        font-size: 16px;
        margin: 24px 0 0;
    }

    /* Early Bird Section mobile adjustments */
    .early-bird-section {
        padding: 60px 0;
    }

    .early-bird-card {
        padding: 32px 24px;
    }

    .early-bird-title {
        font-size: 24px;
    }

    .price-main {
        font-size: 48px;
    }

    .preorder-options-title {
        font-size: 20px;
    }

    .preorder-option {
        padding: 20px;
    }

    .preorder-option-title {
        font-size: 18px;
    }

    .preorder-option-desc {
        font-size: 15px;
    }

    .early-bird-features {
        grid-template-columns: 1fr;
        gap: 12px;
    }

    .btn-early-bird {
        font-size: 16px;
        padding: 16px 24px;
    }

    /* Modal mobile adjustments */
    .modal-content {
        padding: 20px 0;
    }

    .modal-close {
        top: 15px;
        right: 15px;
        width: 40px;
        height: 40px;
    }

    .modal-body {
        padding: 0 16px;
    }
}

@media (max-width: 480px) {
    .hero {
        padding: 60px 0 80px;
    }

    .hero-title {
        font-size: 28px;
    }

    .bento-section,
    .preorder-section,
    .demo-section {
        padding: 60px 0;
    }

    .section-title {
        font-size: 28px;
    }
    
    .demo-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 16px;
    }

    /* Carousel/Swiper small mobile adjustments */
    .productSwiper {
        height: 300px;
    }

    .btn-submit {
        padding: 14px 20px;
        font-size: 15px;
    }

    /* Early Bird Section small mobile adjustments */
    .early-bird-section {
        padding: 40px 0;
    }

    .early-bird-card {
        padding: 24px 20px;
    }

    .early-bird-title {
        font-size: 20px;
    }

    .price-main {
        font-size: 40px;
    }

    .preorder-options-title {
        font-size: 18px;
    }

    .preorder-option {
        padding: 16px;
    }

    .preorder-option-title {
        font-size: 16px;
    }

    .preorder-option-desc {
        font-size: 14px;
    }

    .early-bird-feature-item {
        font-size: 14px;
    }

    .btn-early-bird {
        font-size: 15px;
        padding: 14px 20px;
    }

    /* Gallery mobile adjustments */
    .gallery-section {
        padding: 60px 0;
    }

    .gallery-video-container {
        grid-template-columns: 1fr;
        gap: 40px;
    }

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

    .pswp-gallery img {
        height: 200px;
    }

    .gallery-subtitle {
        font-size: 20px;
    }
    
    @media (max-width: 768px) {
        .demo-grid {
            grid-template-columns: 1fr;
            gap: 16px;
        }

        .gallery-video-container {
            gap: 32px;
        }

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

      
    }
}

