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

:root {
    --primary: #F59E0B;
    --primary-dark: #D97706;
    --secondary: #FCD34D;
    --accent: #FBBF24;
    --dark: #1C1917;
    --darker: #0C0A09;
    --light: #FAFAF9;
    --gray: #78716C;
    --gray-light: #E7E5E4;
    --success: #F59E0B;
    --gradient-1: linear-gradient(135deg, #F59E0B 0%, #D97706 100%);
    --gradient-2: linear-gradient(135deg, #FBBF24 0%, #F59E0B 100%);
    --shadow-sm: 0 2px 8px rgba(245, 158, 11, 0.1);
    --shadow-md: 0 4px 16px rgba(245, 158, 11, 0.15);
    --shadow-lg: 0 10px 30px rgba(245, 158, 11, 0.2);
}

body {
    font-family: 'Inter', 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    color: var(--dark);
    overflow-x: hidden;
    background: var(--light);
}

/* Scroll Progress Bar */
.scroll-progress {
    position: fixed;
    top: 0;
    left: 0;
    width: 0%;
    height: 4px;
    background: var(--gradient-1);
    z-index: 99999;
    transition: width 0.1s ease;
    box-shadow: 0 2px 10px rgba(30, 64, 175, 0.5);
}

/* Sticky Navigation */
.sticky-nav {
    position: fixed;
    top: -100px;
    left: 0;
    width: 100%;
    background: rgba(2, 6, 23, 0.95);
    backdrop-filter: blur(15px);
    padding: 15px 0;
    z-index: 9999;
    transition: top 0.3s ease;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.2);
    border-bottom: 2px solid var(--primary);
}

.sticky-nav.visible {
    top: 0;
}

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

.sticky-nav-logo {
    font-size: 20px;
    font-weight: 700;
    color: white;
    background: var(--gradient-1);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.sticky-nav-links {
    display: flex;
    list-style: none;
    gap: 30px;
}

.sticky-nav-links a {
    color: white;
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s ease;
    position: relative;
}

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

.sticky-nav-links a::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--primary);
    transition: width 0.3s ease;
}

.sticky-nav-links a:hover::after {
    width: 100%;
}

.sticky-nav-cta {
    background: var(--gradient-1);
    color: white;
    border: none;
    padding: 10px 25px;
    border-radius: 25px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: var(--shadow-md);
}

.sticky-nav-cta:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
}

/* Hero Section */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    background: var(--darker);
}

.hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    filter: brightness(0.4);
    transition: transform 0.1s ease-out;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(30, 64, 175, 0.3) 0%, rgba(2, 6, 23, 0.8) 100%);
}

.hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    color: white;
    max-width: 900px;
    padding: 0 20px;
    animation: fadeInUp 1s ease;
}

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

.hero-title {
    font-size: clamp(32px, 5vw, 56px);
    font-weight: 800;
    margin-bottom: 20px;
    line-height: 1.2;
    text-shadow: 2px 4px 10px rgba(0, 0, 0, 0.5);
    background: linear-gradient(135deg, #ffffff 0%, var(--accent) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-subtitle {
    font-size: clamp(18px, 2.5vw, 24px);
    margin-bottom: 40px;
    color: rgba(255, 255, 255, 0.95);
    text-shadow: 1px 2px 8px rgba(0, 0, 0, 0.4);
    font-weight: 400;
}

.pts-badge {
    display: inline-block;
    background: var(--gradient-1);
    color: white;
    padding: 8px 20px;
    border-radius: 25px;
    font-size: 14px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-top: 15px;
    box-shadow: var(--shadow-lg);
    animation: pulse 2s ease-in-out infinite;
}

@keyframes pulse {
    0%, 100% {
        transform: scale(1);
        box-shadow: var(--shadow-lg);
    }
    50% {
        transform: scale(1.05);
        box-shadow: 0 12px 40px rgba(245, 158, 11, 0.4);
    }
}

/* Countdown Timer */
.countdown-wrapper {
    margin: 40px auto;
    max-width: 500px;
}

.countdown-label {
    color: var(--accent);
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 15px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.countdown-timer {
    display: flex;
    justify-content: center;
    gap: 15px;
    margin-bottom: 40px;
}

.countdown-item {
    background: rgba(30, 64, 175, 0.15);
    backdrop-filter: blur(10px);
    padding: 20px;
    border-radius: 15px;
    min-width: 90px;
    border: 2px solid rgba(30, 64, 175, 0.3);
    box-shadow: var(--shadow-md);
}

.countdown-value {
    font-size: 36px;
    font-weight: 800;
    color: white;
    text-shadow: 0 2px 10px rgba(30, 64, 175, 0.5);
}

.countdown-label-small {
    font-size: 12px;
    color: var(--accent);
    text-transform: uppercase;
    font-weight: 600;
    margin-top: 5px;
}

.countdown-separator {
    font-size: 36px;
    font-weight: 800;
    color: var(--primary);
    display: flex;
    align-items: center;
}

/* CTA Button */
.cta-button {
    background: var(--gradient-1);
    color: white;
    border: none;
    padding: 18px 45px;
    font-size: 18px;
    font-weight: 700;
    border-radius: 50px;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 8px 25px rgba(30, 64, 175, 0.4);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.cta-button:hover {
    transform: translateY(-3px) scale(1.05);
    box-shadow: 0 12px 35px rgba(30, 64, 175, 0.5);
}

.cta-button:active {
    transform: translateY(-1px);
}

/* White CTA Button for dark backgrounds */
.cta-button-white {
    background: white;
    color: var(--primary);
    box-shadow: 0 8px 25px rgba(255, 255, 255, 0.3);
}

.cta-button-white:hover {
    background: var(--light);
    box-shadow: 0 12px 35px rgba(255, 255, 255, 0.4);
}

/* Section Styles */
.section-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.section-header {
    text-align: center;
    margin-bottom: 60px;
}

.section-header h2 {
    font-size: clamp(32px, 4vw, 42px);
    font-weight: 800;
    color: var(--dark);
    margin-bottom: 15px;
    position: relative;
    display: inline-block;
}

.section-header h2::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background: var(--gradient-1);
    border-radius: 2px;
}

.section-header p {
    font-size: 18px;
    color: var(--gray);
    max-width: 600px;
    margin: 20px auto 0;
}

/* Gallery Section */
.gallery-section {
    padding: 80px 20px;
    background: white;
}

/* Desktop Gallery - Two Images Per Row */
.desktop-gallery-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
}

.desktop-gallery-item {
    width: 100%;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: var(--shadow-md);
    transition: all 0.3s ease;
}

.desktop-gallery-item:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}

.desktop-gallery-item img {
    width: 100%;
    height: 800px;
    object-fit: cover;
    display: block;
}

/* Mobile Gallery */
.gallery-container {
    display: none;
}

.mobile-gallery-slider {
    display: none;
}

.mobile-gallery-overlay {
    display: none;
}

.mobile-gallery-counter {
    display: none;
}

.mobile-gallery-dots {
    display: none;
}

/* Responsive - Mobile Version */
@media (max-width: 768px) {
    .desktop-gallery-grid {
        display: none;
    }

    .gallery-container {
        display: block;
        position: relative;
        width: 100%;
        height: 500px;
        overflow: hidden;
        border-radius: 15px;
    }

    .mobile-gallery-slider {
        display: flex;
        width: 100%;
        height: 500px;
        transition: transform 0.3s ease;
    }

    .mobile-gallery-slide {
        min-width: 100%;
        width: 100%;
        height: 500px;
        flex-shrink: 0;
    }

    .mobile-gallery-slide img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        display: block;
    }

    .mobile-gallery-overlay {
        display: block;
        position: absolute;
        bottom: 0;
        left: 0;
        right: 0;
        height: 80px;
        background: linear-gradient(to top, rgba(0,0,0,0.5), transparent);
        pointer-events: none;
        z-index: 5;
    }

    .mobile-gallery-dots {
        display: flex;
        position: absolute;
        bottom: 15px;
        left: 50%;
        transform: translateX(-50%);
        gap: 8px;
        z-index: 10;
    }

    .mobile-gallery-dot {
        width: 8px;
        height: 8px;
        border-radius: 50%;
        background: rgba(255, 255, 255, 0.5);
        border: none;
        padding: 0;
        cursor: pointer;
        transition: all 0.3s;
    }

    .mobile-gallery-dot.active {
        background: white;
        width: 24px;
        border-radius: 4px;
    }

    .mobile-gallery-counter {
        display: block;
        position: absolute;
        top: 15px;
        right: 15px;
        background: rgba(0, 0, 0, 0.6);
        color: white;
        padding: 6px 14px;
        border-radius: 20px;
        font-size: 0.85rem;
        font-weight: 600;
        z-index: 10;
    }
}

/* Features Section */
.features-section {
    padding: 80px 20px;
    background: var(--light);
}

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

.feature-card {
    background: white;
    padding: 40px 30px;
    border-radius: 20px;
    text-align: center;
    transition: all 0.5s ease;
    border: 2px solid transparent;
    box-shadow: var(--shadow-sm);
    opacity: 0;
    transform: translateY(30px);
}

.feature-card.animate-in {
    opacity: 1;
    transform: translateY(0);
}

.feature-card:hover {
    transform: translateY(-10px);
    border-color: var(--primary);
    box-shadow: var(--shadow-lg);
}

.feature-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 25px;
    background: var(--gradient-2);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    box-shadow: var(--shadow-md);
}

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

.feature-card h3 {
    font-size: 20px;
    font-weight: 700;
    color: var(--dark);
    margin-bottom: 15px;
}

.feature-card p {
    color: var(--gray);
    font-size: 15px;
    line-height: 1.7;
}

/* Specs Section */
.specs-section {
    padding: 80px 20px;
    background: white;
}

.specs-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
}

.spec-item {
    background: var(--light);
    padding: 25px;
    border-radius: 15px;
    border-left: 4px solid var(--primary);
    transition: all 0.3s ease;
}

.spec-item:hover {
    transform: translateX(5px);
    box-shadow: var(--shadow-md);
}

.spec-label {
    font-size: 14px;
    color: var(--gray);
    margin-bottom: 8px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    font-weight: 600;
}

.spec-value {
    font-size: 24px;
    font-weight: 800;
    color: var(--dark);
}

/* Reviews Section */
.reviews-section {
    padding: 80px 0;
    background: var(--light);
    overflow: hidden;
}

.reviews-carousel-wrapper {
    overflow-x: hidden;
    overflow-y: hidden;
    cursor: grab;
    user-select: none;
}

.reviews-carousel-wrapper::-webkit-scrollbar {
    display: none;
}

.reviews-carousel-wrapper {
    scrollbar-width: none;
}

.reviews-carousel-track {
    display: flex;
    gap: 20px;
    padding: 20px;
    animation: scroll-reviews 60s linear infinite;
}

@keyframes scroll-reviews {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(-50%);
    }
}

.reviews-carousel-wrapper:hover .reviews-carousel-track {
    animation-play-state: paused;
}

.review-card {
    flex: 0 0 380px;
    background: white;
    padding: 30px;
    border-radius: 20px;
    box-shadow: var(--shadow-sm);
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.review-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
    border-color: var(--primary);
}

.review-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 15px;
}

.review-author {
    display: flex;
    gap: 12px;
    align-items: center;
}

.author-avatar {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: var(--gradient-1);
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 20px;
    flex-shrink: 0;
}

.author-name {
    font-weight: 700;
    color: var(--dark);
    font-size: 16px;
}

.review-date {
    font-size: 13px;
    color: var(--gray);
    margin-top: 3px;
}

.review-rating {
    font-size: 16px;
    color: #FCD34D;
}

.review-text {
    color: var(--gray);
    line-height: 1.7;
    font-size: 15px;
}

/* FAQ Section */
.faq-section {
    padding: 80px 20px;
    background: white;
}

.faq-container {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    background: var(--light);
    border-radius: 15px;
    margin-bottom: 15px;
    overflow: hidden;
    border: 2px solid transparent;
    transition: all 0.3s ease;
}

.faq-item.active {
    border-color: var(--primary);
}

.faq-question {
    padding: 20px 25px;
    font-weight: 600;
    color: var(--dark);
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: all 0.3s ease;
    user-select: none;
}

.faq-question:hover {
    color: var(--primary);
}

.faq-icon {
    font-size: 20px;
    color: var(--primary);
    transition: transform 0.3s ease;
}

.faq-item.active .faq-icon {
    transform: rotate(180deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: all 0.3s ease;
    padding: 0 25px;
    color: var(--gray);
    line-height: 1.7;
}

.faq-item.active .faq-answer {
    max-height: 500px;
    padding: 0 25px 20px 25px;
}

/* CTA Section */
.cta-section {
    padding: 100px 20px;
    background: linear-gradient(135deg, #1E3A8A 0%, #1E40AF 100%);
    text-align: center;
}

/* Footer */
footer {
    background: var(--darker);
    color: white;
    padding: 40px 20px;
    text-align: center;
}

footer p {
    margin: 5px 0;
    font-size: 15px;
}

footer a {
    color: var(--primary);
    text-decoration: none;
    transition: all 0.3s ease;
}

footer a:hover {
    color: var(--accent);
    text-decoration: underline;
}

/* Modal */
.modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.8);
    z-index: 10000;
    backdrop-filter: blur(5px);
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.modal.active {
    display: flex;
    opacity: 1;
}

.modal-content {
    background: white;
    width: 90%;
    max-width: 500px;
    border-radius: 25px;
    position: relative;
    max-height: 90vh;
    overflow-y: auto;
    padding: 40px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
    animation: modalSlideIn 0.3s ease;
}

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

.modal-close {
    position: absolute;
    top: 20px;
    right: 20px;
    background: none;
    border: none;
    font-size: 32px;
    cursor: pointer;
    color: var(--gray);
    transition: all 0.3s ease;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
}

.modal-close:hover {
    color: var(--primary);
    background: var(--light);
    transform: rotate(90deg);
}

.modal-header {
    text-align: center;
    margin-bottom: 30px;
}

.modal-header h2 {
    font-size: 28px;
    font-weight: 800;
    color: var(--dark);
    margin-bottom: 10px;
}

.modal-header p {
    color: var(--gray);
    font-size: 15px;
}

.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    font-weight: 600;
    color: var(--dark);
    margin-bottom: 8px;
    font-size: 14px;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 14px 18px;
    border: 2px solid var(--gray-light);
    border-radius: 12px;
    font-size: 15px;
    transition: all 0.3s ease;
    font-family: inherit;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary);
    box-shadow: 0 0 0 4px rgba(30, 64, 175, 0.1);
}

.form-group.error input,
.form-group.error textarea {
    border-color: #EF4444;
}

.error-message {
    color: #EF4444;
    font-size: 13px;
    margin-top: 5px;
    display: none;
}

.form-group.error .error-message {
    display: block;
}

.form-submit {
    width: 100%;
    background: var(--gradient-1);
    color: white;
    border: none;
    padding: 16px;
    border-radius: 12px;
    font-size: 16px;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    box-shadow: var(--shadow-md);
}

.form-submit:hover:not(:disabled) {
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
}

.form-submit:disabled {
    opacity: 0.7;
    cursor: not-allowed;
}

.success-message {
    display: none;
    text-align: center;
    padding: 40px 20px;
}

.success-message.active {
    display: block;
    animation: fadeIn 0.5s ease;
}

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

.success-icon {
    width: 80px;
    height: 80px;
    background: var(--gradient-1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 40px;
    color: white;
    margin: 0 auto 20px;
    animation: scaleIn 0.5s ease;
}

@keyframes scaleIn {
    from {
        transform: scale(0);
    }
    to {
        transform: scale(1);
    }
}

.success-message h2 {
    font-size: 24px;
    font-weight: 800;
    color: var(--dark);
    margin-bottom: 10px;
}

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

/* Lightbox */
.lightbox {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.95);
    z-index: 10001;
    align-items: center;
    justify-content: center;
}

.lightbox.active {
    display: flex;
}

.lightbox-content {
    max-width: 90%;
    max-height: 90%;
    position: relative;
}

.lightbox-content img {
    max-width: 100%;
    max-height: 90vh;
    object-fit: contain;
    cursor: zoom-in;
    transition: transform 0.3s ease;
}

.lightbox-content img.zoomed {
    transform: scale(1.5);
    cursor: zoom-out;
}

.lightbox-close {
    position: absolute;
    top: 20px;
    right: 20px;
    background: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(10px);
    border: none;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    font-size: 30px;
    color: white;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10002;
}

.lightbox-close:hover {
    background: var(--primary);
    transform: rotate(90deg);
}

.lightbox-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(10px);
    border: none;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    font-size: 30px;
    color: white;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10002;
}

.lightbox-nav:hover {
    background: var(--primary);
}

.lightbox-prev {
    left: 30px;
}

.lightbox-next {
    right: 30px;
}

.lightbox-counter {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    background: rgba(0, 0, 0, 0.7);
    color: white;
    padding: 10px 20px;
    border-radius: 25px;
    font-size: 16px;
    font-weight: 600;
    z-index: 10002;
}

/* Social Proof */
.social-proof-notification {
    position: fixed;
    bottom: -200px;
    left: 30px;
    background: white;
    padding: 20px;
    border-radius: 15px;
    box-shadow: var(--shadow-lg);
    max-width: 350px;
    z-index: 9998;
    transition: all 0.5s ease;
    border: 2px solid var(--primary);
    display: flex;
    gap: 15px;
    align-items: flex-start;
}

.social-proof-notification.show {
    bottom: 30px;
}

.social-proof-icon {
    width: 40px;
    height: 40px;
    background: var(--gradient-1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 20px;
    font-weight: 700;
    flex-shrink: 0;
}

.social-proof-content {
    flex: 1;
}

.social-proof-name {
    font-weight: 700;
    color: var(--dark);
    font-size: 15px;
    margin-bottom: 3px;
}

.social-proof-action {
    color: var(--gray);
    font-size: 13px;
    margin-bottom: 3px;
}

.social-proof-time {
    color: var(--primary);
    font-size: 12px;
    font-weight: 600;
}

.social-proof-close {
    background: none;
    border: none;
    font-size: 20px;
    color: var(--gray);
    cursor: pointer;
    transition: all 0.3s ease;
    flex-shrink: 0;
}

.social-proof-close:hover {
    color: var(--primary);
}

/* Responsive Design */
@media (max-width: 768px) {
    .sticky-nav-links {
        display: none;
    }

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

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

    .countdown-timer {
        gap: 10px;
    }

    .countdown-item {
        min-width: 70px;
        padding: 15px;
    }

    .countdown-value {
        font-size: 28px;
    }

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

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

    .review-card {
        flex: 0 0 300px;
    }

    .lightbox-nav {
        width: 50px;
        height: 50px;
        font-size: 24px;
    }

    .lightbox-prev {
        left: 10px;
    }

    .lightbox-next {
        right: 10px;
    }

    .social-proof-notification {
        left: 15px;
        right: 15px;
        max-width: calc(100% - 30px);
    }

    .modal-content {
        padding: 30px 20px;
    }
}

@media (max-width: 480px) {
    .section-header h2 {
        font-size: 28px;
    }

    .section-header p {
        font-size: 16px;
    }

    .countdown-item {
        min-width: 60px;
        padding: 12px;
    }

    .countdown-value {
        font-size: 24px;
    }

    .countdown-label-small {
        font-size: 10px;
    }
}
