* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary: #F9C51A;
    --primary-dark: #D4A017;
    --secondary: #1A1A1A;
    --black: #000000;
    --dark: #0D0D0D;
    --gray: #333333;
    --gray-light: #666666;
    --white: #FFFFFF;
    --yellow: #F9C51A;
    --yellow-light: #FFD700;
    --overlay: rgba(0, 0, 0, 0.7);
}

body {
    font-family: 'Poppins', sans-serif;
    background: var(--yellow);
    color: var(--black);
    min-height: 100vh;
    overflow-x: hidden;
    position: relative;
}

/* Video Background */
.video-background {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
    overflow: hidden;
}

.video-background video {
    position: absolute;
    top: 50%;
    left: 50%;
    min-width: 100%;
    min-height: 100%;
    width: auto;
    height: auto;
    transform: translate(-50%, -50%);
    object-fit: cover;
}

.video-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(
        180deg,
        rgba(249, 197, 26, 0.7) 0%,
        rgba(249, 197, 26, 0.65) 50%,
        rgba(249, 197, 26, 0.7) 100%
    );
    z-index: 1;
}

/* Watch Video Button (Floating) */
.watch-video-btn {
    position: fixed;
    bottom: 2rem;
    right: 2rem;
    z-index: 1000;
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 1rem 1.75rem;
    background: var(--black);
    color: var(--yellow);
    border: 2px solid var(--yellow);
    border-radius: 50px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
    animation: pulse-button 2s ease-in-out infinite;
}

.watch-video-btn:hover {
    background: var(--yellow);
    color: var(--black);
    transform: translateY(-3px) scale(1.05);
    box-shadow: 0 6px 30px rgba(249, 197, 26, 0.5);
}

.watch-video-btn svg {
    width: 24px;
    height: 24px;
    transition: transform 0.3s ease;
}

.watch-video-btn:hover svg {
    transform: scale(1.2);
}

@keyframes pulse-button {
    0%, 100% {
        box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
    }
    50% {
        box-shadow: 0 4px 30px rgba(249, 197, 26, 0.6);
    }
}

/* Video Modal */
.video-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 9999;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s ease;
}

.video-modal.active {
    opacity: 1;
    pointer-events: all;
}

.video-modal-backdrop {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.95);
    backdrop-filter: blur(10px);
}

.video-modal-content {
    position: relative;
    z-index: 10;
    width: 90%;
    max-width: 1200px;
    animation: modalSlideIn 0.4s ease;
}

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

.video-modal-close {
    position: absolute;
    top: -50px;
    right: 0;
    background: transparent;
    border: none;
    color: var(--yellow);
    cursor: pointer;
    padding: 0.5rem;
    transition: all 0.3s ease;
    z-index: 20;
}

.video-modal-close:hover {
    color: var(--white);
    transform: rotate(90deg) scale(1.1);
}

.video-modal-wrapper {
    position: relative;
    width: 100%;
    padding-bottom: 56.25%; /* 16:9 aspect ratio */
    background: var(--black);
    border: 3px solid var(--yellow);
    overflow: hidden;
}

.video-modal-wrapper video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: contain;
}

/* Mobile adjustments for video button and modal */
@media (max-width: 768px) {
    .watch-video-btn {
        bottom: 1rem;
        right: 1rem;
        padding: 0.75rem 1.25rem;
        font-size: 0.9rem;
    }
    
    .watch-video-btn span {
        display: none;
    }
    
    .watch-video-btn {
        border-radius: 50%;
        padding: 1rem;
        width: 56px;
        height: 56px;
        justify-content: center;
    }
    
    .video-modal-content {
        width: 95%;
    }
    
    .video-modal-close {
        top: -45px;
        right: 0;
    }
}

/* Hero Header */
.hero-header {
    position: relative;
    z-index: 10;
    text-align: center;
    padding: 2.5rem 2rem 1.5rem;
    animation: fadeInDown 1s ease;
}

@keyframes fadeInDown {
    from {
        opacity: 0;
        transform: translateY(-50px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.logo-container {
    display: inline-block;
}

/* Logo Image */
.logo-img {
    max-width: 400px;
    width: 100%;
    height: auto;
    margin-bottom: 1rem;
    transition: all 0.3s ease;
    filter: drop-shadow(0 2px 10px rgba(0, 0, 0, 0.1));
}

.logo-img:hover {
    transform: scale(1.02);
    filter: drop-shadow(0 4px 15px rgba(0, 0, 0, 0.15));
}

.main-logo {
    display: inline-block;
    font-size: 3rem;
    font-weight: 800;
    margin-bottom: 1.5rem;
    margin-top: -1rem;
}

.logo-text {
    color: var(--black);
    position: relative;
}

.tagline {
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--black);
    margin-bottom: 0.5rem;
    letter-spacing: 0.5px;
}

.tagline-sub {
    font-size: 1.1rem;
    font-weight: 400;
    color: var(--gray);
    letter-spacing: 0.5px;
}

/* Countdown Section */
.countdown-section {
    position: relative;
    z-index: 10;
    text-align: center;
    padding: 0 2rem 1.5rem;
    animation: fadeInUp 1s ease 0.3s both;
}

.countdown-wrapper {
    display: inline-block;
    background: rgba(255, 255, 255, 0.9);
    border-radius: 8px;
    padding: 1.5rem 2.5rem;
    border: 2px solid var(--black);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
}

.countdown-badge {
    display: inline-block;
    padding: 0.4rem 1.2rem;
    background: var(--black);
    color: var(--yellow);
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 2px;
    border-radius: 4px;
    margin-bottom: 0.8rem;
}

.countdown-text {
    font-size: 1rem;
    font-weight: 600;
    color: var(--black);
    margin-bottom: 1rem;
    letter-spacing: 0.5px;
}

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

/* Split Screen Container */
.split-container {
    position: relative;
    z-index: 10;
    display: flex;
    width: 100%;
    min-height: 500px;
    margin: 1rem 0 2rem;
    overflow: hidden; /* Hide sections that slide out */
}

/* Desktop: limit height on large screens only */
@media (min-width: 1441px) {
    .split-container {
        max-height: calc(100vh - 180px);
    }
}

.split-section {
    position: relative;
    flex: 0 0 50%; /* Default 50% width */
    display: flex;
    align-items: flex-start; /* Align content to top */
    justify-content: center;
    padding: 3rem 2.5rem;
    overflow-y: auto;
    overflow-x: hidden;
    transition: transform 0.8s cubic-bezier(0.4, 0, 0.2, 1),
                flex 0.8s cubic-bezier(0.4, 0, 0.2, 1),
                margin 0.8s cubic-bezier(0.4, 0, 0.2, 1),
                opacity 0.8s ease,
                box-shadow 0.8s ease;
}

/* Custom scrollbar for split sections */
.split-section::-webkit-scrollbar {
    width: 8px;
}

.split-section::-webkit-scrollbar-track {
    background: rgba(0, 0, 0, 0.05);
}

.split-section::-webkit-scrollbar-thumb {
    background: rgba(0, 0, 0, 0.3);
    border-radius: 4px;
}

.split-section::-webkit-scrollbar-thumb:hover {
    background: rgba(0, 0, 0, 0.5);
}

/* Remove old section styles if any */

/* Split Section Backgrounds */
.split-left {
    background: rgba(255, 255, 255, 0.85);
    border-right: 2px solid rgba(0, 0, 0, 0.3);
}

.split-right {
    background: rgba(255, 255, 255, 0.85);
    border-left: 2px solid rgba(0, 0, 0, 0.3);
}

/* Split Overlay for Inactive State */
.split-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(255, 255, 255, 0.7);
    opacity: 1;
    transition: opacity 0.8s ease;
    pointer-events: none;
    z-index: 1;
}

/* Active State - No Overlay */
.split-section.expanded .split-overlay,
.split-section.active .split-overlay {
    opacity: 0;
}

/* Inactive State - Overlay */
.split-section.shrunk .split-overlay {
    opacity: 0.85;
}

.split-section:not(.expanded):not(.shrunk) .split-overlay {
    opacity: 0.4;
}

/* Expand on Hover - Slide effect with synchronous width expansion */

/* Left section expanded - expand to 100% and push right section off screen */
.split-left.expanded {
    flex: 0 0 100%; /* Expand to full width */
    transform: translateX(0);
}

.split-left.expanded ~ .split-right {
    flex: 0 0 50%; /* Keep original width */
    transform: translateX(100%); /* Push right section off to the right */
}

/* Right section expanded - expand to 100% and push left section off screen */
.split-right.expanded {
    flex: 0 0 100%; /* Expand to full width */
    transform: translateX(0);
    margin-left: -50%; /* Pull to start from left edge */
}

.split-left.shrunk {
    flex: 0 0 50%; /* Keep original width */
    transform: translateX(-100%); /* Push left section off to the left */
}

.split-right.shrunk {
    flex: 0 0 50%;
    transform: translateX(100%);
}

/* When neither is hovered (default state) */
.split-section:not(.expanded):not(.shrunk) {
    flex: 0 0 50%;
    transform: translateX(0);
}

/* Border Effect on Expanded */
.split-left.expanded {
    border-right: 3px solid var(--black);
    z-index: 5;
}

.split-right.expanded {
    border-left: 3px solid var(--black);
    z-index: 5;
}

/* Remove animated border effects */
.split-section::before {
    display: none;
}

/* Divider Line */
.split-divider {
    position: fixed;
    left: 50%;
    top: 200px;
    bottom: 200px;
    width: 2px;
    background: var(--black);
    transform: translateX(-50%);
    z-index: 20;
    opacity: 0.3;
    transition: all 0.8s ease;
    pointer-events: none;
}

.split-container:hover .split-divider {
    opacity: 0.5;
}

.section-content {
    position: relative;
    z-index: 2;
    max-width: 550px;
    width: 100%;
    transition: all 0.8s ease;
}

/* Content scaling */
.split-section.expanded .section-content {
    transform: scale(1);
    opacity: 1;
}

.split-section:not(.expanded):not(.shrunk) .section-content {
    transform: scale(0.98);
    opacity: 0.85;
}

/* Mobile Hint */
.mobile-hint {
    display: none;
    position: absolute;
    bottom: 2rem;
    left: 50%;
    transform: translateX(-50%);
    color: var(--yellow);
    font-size: 0.95rem;
    font-weight: 600;
    z-index: 10;
    animation: bounce-hint 2s infinite;
    pointer-events: none;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.5);
    transition: opacity 0.3s ease;
    background: rgba(0, 0, 0, 0.8);
    padding: 0.5rem 1.5rem;
    border-radius: 4px;
    backdrop-filter: blur(10px);
    text-align: center;
    border: 1px solid var(--yellow);
}

@keyframes bounce-hint {
    0%, 100% {
        transform: translateX(-50%) translateY(0);
    }
    50% {
        transform: translateX(-50%) translateY(-10px);
    }
}

@media (max-width: 1100px) {
    .mobile-hint {
        display: block;
    }
    
    .split-section.active .mobile-hint {
        display: none;
    }
}

/* Section Numbers - removed as user deleted them */

.section-title {
    font-size: 2.2rem;
    font-weight: 800;
    margin-bottom: 0.8rem;
    color: var(--black);
    letter-spacing: -0.5px;
}

.section-subtitle {
    font-size: 1.15rem;
    font-weight: 500;
    color: var(--black);
    margin-bottom: 1.2rem;
    line-height: 1.5;
}

.section-description {
    font-size: 0.95rem;
    line-height: 1.7;
    color: var(--gray);
    margin-bottom: 1.5rem;
}

/* Features List - Compact */
.features-list {
    display: flex;
    flex-direction: column;
    gap: 0.7rem;
    margin-bottom: 1.5rem;
}

.feature-item {
    font-size: 0.95rem;
    color: var(--black);
    padding: 0.6rem 1rem;
    background: rgba(255, 255, 255, 0.6);
    border-left: 3px solid var(--black);
    border-radius: 0;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 0.7rem;
}

.feature-check {
    color: var(--black);
    font-weight: 800;
    font-size: 1rem;
    transition: all 0.3s ease;
    flex-shrink: 0;
}

.feature-item:hover {
    background: rgba(0, 0, 0, 0.1);
    transform: translateX(5px);
    border-left-width: 4px;
}

.feature-item:hover .feature-check {
    transform: scale(1.1);
}

/* CTA Box - Minimalist */
.cta-box {
    background: rgba(255, 255, 255, 0.8);
    border-radius: 0;
    padding: 1.8rem;
    border: 2px solid var(--black);
    margin-top: 1.5rem;
    position: relative;
    text-align: center;
}

.cta-box::before {
    display: none;
}

.cta-text {
    font-size: 1rem;
    font-weight: 600;
    margin-bottom: 1.2rem;
    color: var(--black);
}

/* Email Form */
.email-form {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.email-input {
    padding: 1rem 1.5rem;
    font-size: 1rem;
    border: 2px solid var(--black);
    border-radius: 0;
    background: var(--white);
    color: var(--black);
    font-family: 'Poppins', sans-serif;
    transition: all 0.3s ease;
}

.email-input:focus {
    outline: none;
    border-color: var(--black);
    background: var(--white);
    box-shadow: 0 0 0 1px var(--black);
}

.email-input::placeholder {
    color: var(--gray);
}

.submit-btn {
    padding: 1rem 2rem;
    font-size: 0.95rem;
    font-weight: 600;
    border: 2px solid var(--black);
    border-radius: 0;
    background: var(--black);
    color: var(--yellow);
    cursor: pointer;
    font-family: 'Poppins', sans-serif;
    transition: all 0.3s ease;
    letter-spacing: 0.5px;
}

.submit-btn:hover {
    background: transparent;
    color: var(--black);
}

.submit-btn:active {
    transform: scale(0.98);
}

/* Contact Button */
.contact-btn {
    display: inline-block;
    padding: 1rem 2rem;
    font-size: 0.95rem;
    font-weight: 600;
    text-decoration: none;
    border-radius: 0;
    background: transparent;
    border: 2px solid var(--black);
    color: var(--black);
    transition: all 0.3s ease;
    text-align: center;
    letter-spacing: 0.5px;
}

.contact-btn:hover {
    background: var(--black);
    color: var(--yellow);
}

/* Success Message */
.success-message {
    display: none;
    padding: 1.5rem;
    background: rgba(0, 0, 0, 0.05);
    border: 2px solid var(--black);
    border-radius: 0;
    color: var(--black);
    font-weight: 600;
    font-size: 1rem;
    text-align: center;
    animation: slideIn 0.5s ease;
}

.success-message.show {
    display: block;
}

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

/* Footer Section */
.footer-section {
    position: relative;
    z-index: 10;
    max-width: 1400px;
    margin: 4rem auto 2rem;
    padding: 3rem 2rem;
}

/* Mobile footer spacing */
@media (max-width: 1100px) {
    .footer-section {
        margin: 2rem auto 2rem;
        padding: 2rem 1rem;
    }
}

/* Footer Badge - removed as redundant */

.footer-content {
    text-align: center;
    background: rgba(255, 255, 255, 0.9);
    border-radius: 0;
    padding: 3rem 2.5rem;
    border: 2px solid var(--black);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
}

.footer-title {
    font-size: 2rem;
    font-weight: 800;
    margin-bottom: 1rem;
    color: var(--black);
}

.footer-description {
    font-size: 1.1rem;
    line-height: 1.7;
    color: var(--black);
    max-width: 700px;
    margin: 0 auto;
}

/* Countdown */
.countdown-container {
    margin-top: 3rem;
}

.countdown-label {
    font-size: 1.3rem;
    font-weight: 600;
    color: var(--lime);
    margin-bottom: 1rem;
}

.countdown {
    display: flex;
    justify-content: center;
    gap: 1rem;
    flex-wrap: wrap;
}

.countdown-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    background: var(--white);
    padding: 1rem 1.5rem;
    border-radius: 4px;
    border: 2px solid var(--black);
    min-width: 85px;
    transition: all 0.3s ease;
    position: relative;
}

.countdown-item:hover {
    background: var(--black);
    border-color: var(--black);
    transform: translateY(-2px);
}

.countdown-item:hover .countdown-value {
    color: var(--yellow);
}

.countdown-item:hover .countdown-label-small {
    color: var(--yellow);
}

.countdown-value {
    font-size: 2.2rem;
    font-weight: 800;
    color: var(--black);
    transition: color 0.3s ease;
}

.countdown-label-small {
    font-size: 0.7rem;
    font-weight: 600;
    color: var(--gray);
    letter-spacing: 1.5px;
    margin-top: 0.3rem;
    transition: color 0.3s ease;
}

.countdown-label {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--black);
    margin-bottom: 1.5rem;
}

/* Responsive Design - Small Laptops (13-14") */
@media (max-width: 1440px) and (min-width: 1101px) {
    .split-container {
        max-height: none; /* Remove max-height constraint */
        min-height: auto;
    }
    
    .split-section {
        padding: 2rem 1.8rem;
        align-items: flex-start; /* Ensure top alignment */
    }
    
    .section-content {
        max-width: 480px;
    }
    
    .section-title {
        font-size: 1.9rem;
        margin-bottom: 0.7rem;
    }
    
    .section-subtitle {
        font-size: 1rem;
        margin-bottom: 1rem;
        line-height: 1.4;
    }
    
    .section-description {
        font-size: 0.88rem;
        line-height: 1.6;
        margin-bottom: 1.3rem;
    }
    
    .features-list {
        gap: 0.6rem;
        margin-bottom: 1.3rem;
    }
    
    .feature-item {
        font-size: 0.88rem;
        padding: 0.5rem 0.85rem;
    }
    
    .cta-box {
        padding: 1.4rem;
        margin-top: 1.3rem;
    }
    
    .cta-text {
        font-size: 0.95rem;
        margin-bottom: 1rem;
    }
    
    .email-input,
    .submit-btn,
    .contact-btn {
        padding: 0.9rem 1.4rem;
        font-size: 0.92rem;
    }
}

/* Responsive Design - Tablet */
@media (max-width: 1100px) {
    /* Countdown section mobile */
    .countdown-section {
        padding: 0 1rem 1.5rem;
    }
    
    .countdown-wrapper {
        padding: 1.2rem 1.8rem;
    }
    
    .countdown-badge {
        font-size: 0.7rem;
        padding: 0.35rem 1rem;
    }
    
    .countdown-text {
        font-size: 0.9rem;
    }
    
    .countdown {
        gap: 0.8rem;
    }
    
    .countdown-item {
        padding: 0.8rem 1.2rem;
        min-width: 75px;
    }
    
    .countdown-value {
        font-size: 1.8rem;
    }
    
    .countdown-label-small {
        font-size: 0.65rem;
    }
    
    /* Stack vertically on tablet/mobile */
    .split-container {
        flex-direction: column;
        height: auto;
        min-height: auto;
        max-height: none;
        margin: 1rem 0;
        overflow: visible; /* Allow content to flow on mobile */
    }

    .split-section {
        flex: 1 1 auto !important; /* Allow sections to grow on mobile */
        padding: 2.5rem 1.5rem;
        transition: all 0.6s cubic-bezier(0.4, 0, 0.2, 1);
        position: relative;
        overflow-y: visible;
    }

    /* Mobile: Click to expand with smooth transition */
    .split-section:not(.active) {
        min-height: 40vh !important;
        cursor: pointer;
    }
    
    .split-section:not(.active)::after {
        content: '';
        position: absolute;
        inset: 0;
        border: 2px solid rgba(0, 0, 0, 0.2);
        border-radius: 0;
        pointer-events: none;
        transition: all 0.3s ease;
        z-index: 5;
    }

    .split-section.active {
        min-height: auto !important;
        transition: min-height 0.6s cubic-bezier(0.4, 0, 0.2, 1);
    }
    
    .split-section.active::after {
        display: none;
    }

    .split-section:not(.active) .section-content {
        transform: scale(0.92) !important;
        opacity: 0.6 !important;
        transition: all 0.5s ease;
    }

    .split-section.active .section-content {
        transform: scale(1) !important;
        opacity: 1 !important;
        transition: all 0.5s ease;
    }
    
    /* Pop-in animation only on click */
    .split-section.active.clicked .section-content {
        animation: pop-in 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    }
    
    @keyframes pop-in {
        0% {
            transform: scale(0.9);
            opacity: 0.5;
        }
        100% {
            transform: scale(1);
            opacity: 1;
        }
    }

    /* Hide divider on mobile */
    .split-divider {
        display: none;
    }

    /* Mobile overlay with smooth transition */
    .split-section:not(.active) .split-overlay {
        opacity: 0.85 !important;
        backdrop-filter: blur(8px);
        transition: all 0.5s ease;
    }

    .split-section.active .split-overlay {
        opacity: 0 !important;
        transition: all 0.5s ease;
    }
    
    /* Add visual indicator for active section */
    .split-section.active {
        box-shadow: 0 10px 40px rgba(0, 0, 0, 0.2) !important;
    }
    
    .split-section.active.split-left {
        border-left: 3px solid var(--black) !important;
    }
    
    .split-section.active.split-right {
        border-right: 3px solid var(--black) !important;
    }

    /* Disable expansion effects on mobile - reset to vertical stack */
    .split-section {
        flex: 1 1 auto !important;
        transform: translateX(0) !important; /* Reset slide effect */
    }
    
    .split-section.expanded,
    .split-section.shrunk {
        flex: 1 1 auto !important;
        transform: translateX(0) !important;
    }

    .split-left.expanded,
    .split-right.expanded {
        box-shadow: none;
    }
    
    .split-left.shrunk {
        transform: translateX(0) !important;
    }
    
    .split-left.expanded ~ .split-right {
        transform: translateX(0) !important;
    }
}

@media (max-width: 768px) {
    .hero-header {
        padding: 1.5rem 1rem 1rem;
    }
    
    .logo-img {
        max-width: 280px;
    }

    .main-logo {
        font-size: 2.5rem;
        gap: 1rem;
    }

    .tagline {
        font-size: 1.1rem;
        margin-bottom: 0.3rem;
    }
    
    .tagline-sub {
        font-size: 0.9rem;
    }
    
    /* Countdown smaller on mobile */
    .countdown-wrapper {
        padding: 1rem 1.5rem;
    }
    
    .countdown-item {
        padding: 0.7rem 1rem;
        min-width: 70px;
    }
    
    .countdown-value {
        font-size: 1.6rem;
    }

    .split-section {
        padding: 2rem 1.5rem;
    }
    
    .split-section:not(.active) {
        min-height: 35vh !important;
    }

    .section-number {
        font-size: 3rem;
    }

    .section-title {
        font-size: 1.8rem;
        margin-bottom: 0.6rem;
    }

    .section-subtitle {
        font-size: 1.05rem;
        margin-bottom: 1rem;
        line-height: 1.4;
    }

    .section-description {
        font-size: 0.9rem;
        line-height: 1.6;
        margin-bottom: 1.2rem;
    }
    
    .features-list {
        gap: 0.6rem;
        margin-bottom: 1.2rem;
    }
    
    .feature-item {
        font-size: 0.85rem;
        padding: 0.5rem 0.8rem;
    }

    .cta-box {
        padding: 1.5rem 1.2rem;
        margin-top: 1.2rem;
    }
    
    .cta-text {
        font-size: 0.9rem;
        margin-bottom: 1rem;
    }
    
    .email-input {
        padding: 0.9rem 1.2rem;
        font-size: 0.95rem;
    }
    
    .submit-btn {
        padding: 0.9rem 1.5rem;
        font-size: 0.9rem;
    }
    
    .contact-btn {
        padding: 0.9rem 1.5rem;
        font-size: 0.9rem;
    }

    .footer-section {
        margin: 2rem auto 1.5rem;
        padding: 1.5rem 1rem;
    }

    .footer-content {
        padding: 2rem 1.2rem;
    }
    
    .footer-badge {
        font-size: 0.75rem;
        padding: 0.4rem 1rem;
        margin-bottom: 1rem;
    }

    .footer-title {
        font-size: 1.5rem;
        margin-bottom: 0.8rem;
    }

    .footer-description {
        font-size: 0.9rem;
        line-height: 1.5;
    }

    .countdown-container {
        margin-top: 1.5rem;
    }
    
    .countdown-label {
        font-size: 1rem;
        margin-bottom: 0.8rem;
    }

    .countdown {
        gap: 0.6rem;
    }

    .countdown-item {
        min-width: 70px;
        padding: 0.8rem 1rem;
    }

    .countdown-value {
        font-size: 1.8rem;
    }

    .countdown-label-small {
        font-size: 0.6rem;
    }

    /* Reduce background effects on tablet */
    .bg-dots {
        opacity: 0.2;
    }
    
    .bg-glow {
        display: none;
    }

    /* Logo adjustments */
    .logo-big {
        font-size: 4.5rem;
        letter-spacing: 0.08em;
    }

    .main-logo {
        font-size: 2.5rem;
        margin-top: -0.8rem;
    }

    .tagline {
        font-size: 1.3rem;
    }

    .tagline-sub {
        font-size: 1rem;
    }
}

/* Extra small screens (mobile portrait) */
@media (max-width: 480px) {
    .hero-header {
        padding: 1rem 0.8rem 0.5rem;
    }
    
    .logo-img {
        max-width: 220px;
    }
    
    .tagline {
        font-size: 0.95rem;
    }
    
    .tagline-sub {
        font-size: 0.8rem;
    }
    
    /* Ultra compact countdown */
    .countdown-section {
        padding: 0 0.8rem 1rem;
    }
    
    .countdown-wrapper {
        padding: 0.8rem 1.2rem;
    }
    
    .countdown-text {
        font-size: 0.8rem;
    }
    
    .countdown {
        gap: 0.5rem;
    }
    
    .countdown-item {
        padding: 0.6rem 0.8rem;
        min-width: 60px;
    }
    
    .countdown-value {
        font-size: 1.4rem;
    }
    
    .countdown-label-small {
        font-size: 0.55rem;
    }
    
    .split-section {
        padding: 1.5rem 1rem;
    }
    
    .section-title {
        font-size: 1.5rem;
    }
    
    .section-subtitle {
        font-size: 0.95rem;
    }
    
    .section-description {
        font-size: 0.85rem;
    }
    
    .feature-item {
        font-size: 0.8rem;
        padding: 0.45rem 0.7rem;
    }
    
    .cta-box {
        padding: 1.2rem 1rem;
    }
    
    .footer-content {
        padding: 1.5rem 1rem;
        border-radius: 20px;
    }
    
    .footer-title {
        font-size: 1.3rem;
    }
    
    .footer-description {
        font-size: 0.85rem;
    }
    
    .countdown-item {
        min-width: 65px;
        padding: 0.7rem 0.8rem;
    }
    
    .countdown-value {
        font-size: 1.5rem;
    }
    
    .countdown-label-small {
        font-size: 0.55rem;
    }
}

/* This section removed - replaced by @media (max-width: 480px) above */


