@font-face {
    font-family: 'Conthrax';
    src: url('Conthrax-SemiBold.otf') format('opentype');
    font-weight: 600;
    font-style: normal;
    font-display: swap;
}

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

:root {
    --bg-primary: #0a0c10;
    --bg-secondary: #151820;
    --bg-tertiary: #1f2330;
    --text-primary: #ffffff;
    --text-secondary: #a0a8b8;
    --accent: #00d4ff;
    --accent-hover: #00e5ff;
    --accent-gradient: linear-gradient(135deg, #00d4ff 0%, #0099ff 100%);
    --shadow-color: rgba(0, 0, 0, 0.5);
    --card-bg: rgba(31, 35, 48, 0.6);
}

body {
    font-family: 'Conthrax', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    background: linear-gradient(180deg, #0a0c10 0%, #151820 50%, #0a0c10 100%);
    color: var(--text-primary);
    overflow-x: hidden;
    min-height: 100vh;
    position: relative;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

html {
    overflow-x: hidden;
}

body::before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 20% 50%, rgba(0, 212, 255, 0.05) 0%, transparent 50%),
        radial-gradient(circle at 80% 50%, rgba(0, 153, 255, 0.05) 0%, transparent 50%);
    pointer-events: none;
    z-index: 0;
}

.container {
    position: relative;
    width: 100%;
    min-height: 100vh;
    padding: 0;
    z-index: 1;
    overflow-x: hidden;
}

/* Header Styles */
.header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.5rem 4rem;
    z-index: 100;
    position: sticky;
    top: 0;
    background: rgba(10, 12, 16, 0.8);
    backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.logo {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--text-primary);
}

.logo-icon {
    font-size: 2rem;
    filter: drop-shadow(0 0 10px var(--accent));
}

.logo-icon-img {
    height: 50px;
    width: auto;
    filter: drop-shadow(0 0 10px rgba(0, 212, 255, 0.3));
}

.logo-icon-img.small {
    height: 35px;
}

.logo-text {
    background: var(--accent-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.header-actions {
    display: flex;
    align-items: center;
    gap: 2rem;
}

.nav-link {
    color: var(--text-secondary);
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
}

.nav-link:hover {
    color: var(--accent);
}

.download-btn-small {
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.download-btn-small:hover {
    transform: translateY(-2px);
    filter: brightness(1.1);
}

.download-icon-small {
    height: 40px;
    width: auto;
    transition: all 0.3s ease;
}

/* Hero Carousel Section */
.hero-carousel-section {
    position: relative;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.hero-text-overlay {
    position: absolute;
    top: 0px;
    left: 50%;
    transform: translateX(-50%);
    text-align: center;
    z-index: 50;
    animation: fadeInUp 1s ease;
    pointer-events: none;
    width: 95%;
    max-width: 1200px;
    padding: 1rem;
}

.hero-text-overlay > * {
    pointer-events: auto;
}

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

.hero-title {
    font-size: clamp(2rem, 5vw, 4.5rem);
    font-weight: 600;
    margin-bottom: 1rem;
    background: linear-gradient(135deg, #ffffff 0%, #00d4ff 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    line-height: 1.2;
    letter-spacing: clamp(1px, 0.3vw, 2px);
    text-transform: uppercase;
    text-shadow: 0 0 60px rgba(0, 212, 255, 0.5);
    word-wrap: break-word;
}

.hero-subtitle {
    font-size: clamp(0.9rem, 2vw, 1.2rem);
    color: var(--text-secondary);
    line-height: 1.6;
    letter-spacing: clamp(0.5px, 0.2vw, 1px);
    max-width: 800px;
    margin: 0 auto;
}

.hero-actions {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
    gap: 1.5rem;
    flex-wrap: wrap;
    margin-top: 1rem;
}

.rating-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: var(--card-bg);
    padding: 0.5rem 1.5rem;
    border-radius: 25px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
}

.stars {
    color: #ffd700;
    font-size: 1.2rem;
}

.rating-text {
    color: var(--text-secondary);
    font-size: 0.9rem;
    font-weight: 500;
}

.hero-download {
    animation: pulseGlow 2s ease-in-out infinite;
}

@keyframes pulseGlow {
    0%, 100% {
        filter: drop-shadow(0 0 10px rgba(0, 212, 255, 0.4));
    }
    50% {
        filter: drop-shadow(0 0 20px rgba(0, 212, 255, 0.8));
    }
}

.cta-buttons {
    display: flex;
    justify-content: center;
    gap: 1rem;
}

.app-store-btn {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    padding: 0.8rem 2rem;
    background: #000;
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 12px;
    color: white;
    text-decoration: none;
    transition: all 0.3s ease;
    cursor: pointer;
}

.app-store-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(0, 212, 255, 0.3);
    border-color: var(--accent);
}

.app-store-btn.large {
    padding: 1rem 2.5rem;
    font-size: 1.1rem;
}

.app-store-icon {
    width: 32px;
    height: 32px;
}

.btn-text {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.btn-subtitle {
    font-size: 0.7rem;
    opacity: 0.8;
}

.btn-title {
    font-size: 1.2rem;
    font-weight: 600;
}

/* Download Button Image Styles */
.app-store-btn-img {
    display: inline-block;
    text-decoration: none;
    transition: all 0.3s ease;
}

.app-store-btn-img:hover {
    transform: translateY(-3px);
    filter: brightness(1.1) drop-shadow(0 8px 25px rgba(0, 212, 255, 0.4));
}

.download-btn-image {
    height: 50px;
    width: auto;
    display: block;
    transition: all 0.3s ease;
}

.download-btn-image.large {
    height: 65px;
}

/* Carousel Container */
.carousel-container {
    position: relative;
    width: 100%;
    flex: 1;
    display: flex;
    align-items: center;
    padding: 2rem;
    perspective: 2500px;
    cursor: grab;
    user-select: none;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
}

.carousel-container:active {
    cursor: grabbing;
}

.transformation-badge {
    position: absolute;
    top: 2rem;
    right: 2rem;
    background: var(--accent-gradient);
    padding: 0.5rem 1.2rem;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 600;
    color: white;
    z-index: 10;
    box-shadow: 0 4px 15px rgba(0, 212, 255, 0.4);
    animation: badgePulse 2s ease-in-out infinite;
    letter-spacing: 1px;
}

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

.carousel-scene {
    position: relative;
    width: 100%;
    height: 65vh;
    transform-style: preserve-3d;
    user-select: none;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
}

.carousel-track {
    position: relative;
    width: 100%;
    height: 100%;
    transform-style: preserve-3d;
    transition: transform 0.8s cubic-bezier(0.4, 0, 0.2, 1);
    margin-top: 85px;
}

.carousel-item {
    position: absolute;
    width: 70%;
    max-width: 1100px;
    height: 80%;
    left: 50%;
    top: 50%;
    transform-style: preserve-3d;
    background: linear-gradient(135deg, rgba(31, 35, 48, 0.9) 0%, rgba(21, 24, 32, 0.8) 100%);
    border-radius: 30px;
    border: 1px solid rgba(0, 212, 255, 0.2);
    box-shadow: 
        0 20px 60px rgba(0, 0, 0, 0.8),
        inset 0 1px 0 rgba(255, 255, 255, 0.05),
        0 0 40px rgba(0, 212, 255, 0.1);
    opacity: 0;
    transition: all 0.8s cubic-bezier(0.4, 0, 0.2, 1);
    overflow: hidden;
    backdrop-filter: blur(20px);
}

.carousel-item.active {
    opacity: 1;
    transform: translate(-50%, -50%) translateZ(0) rotateY(0deg) scale(1);
    z-index: 10;
}

.carousel-item.next {
    opacity: 0.5;
    transform: translate(-20%, -50%) translateZ(-400px) rotateY(-25deg) scale(0.85);
    z-index: 5;
}

.carousel-item.prev {
    opacity: 0.5;
    transform: translate(-80%, -50%) translateZ(-400px) rotateY(25deg) scale(0.85);
    z-index: 5;
}

.carousel-item.hidden {
    opacity: 0;
    transform: translate(-50%, -50%) translateZ(-800px) scale(0.5);
    z-index: 1;
}

/* Car Spotlight Effect */
.car-spotlight {
    position: absolute;
    top: -20%;
    left: 50%;
    transform: translateX(-50%);
    width: 150%;
    height: 150%;
    background: radial-gradient(
        ellipse at center,
        rgba(255, 255, 255, 0.15) 0%,
        rgba(255, 255, 255, 0.05) 30%,
        transparent 70%
    );
    pointer-events: none;
    opacity: 0;
    transition: opacity 0.8s ease;
}

.carousel-item.active .car-spotlight {
    opacity: 1;
}

/* Car Container */
.car-container {
    position: relative;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.car-image {
    width: 100%;
    height: 100%;
    object-fit: contain;
    object-position: center;
    filter: drop-shadow(0 30px 50px rgba(0, 0, 0, 0.8));
    transition: transform 0.8s cubic-bezier(0.4, 0, 0.2, 1);
    pointer-events: none;
    user-select: none;
    -webkit-user-drag: none;
    -khtml-user-drag: none;
    -moz-user-drag: none;
    -o-user-drag: none;
}

.carousel-item.active .car-image {
    animation: carFloat 4s ease-in-out infinite;
}

@keyframes carFloat {
    0%, 100% {
        transform: translateY(0) scale(1);
    }
    50% {
        transform: translateY(-15px) scale(1.02);
    }
}

/* Car Info */
.car-info {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 2rem;
    background: linear-gradient(to top, rgba(26, 29, 36, 0.95), transparent);
    transform: translateY(100%);
    transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
    user-select: none;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    pointer-events: none;
}

.carousel-item.active .car-info {
    transform: translateY(0);
}

.car-info h2 {
    font-size: 2rem;
    font-weight: 300;
    letter-spacing: 1px;
    margin-bottom: 0.5rem;
    color: var(--text-primary);
}

.car-info p {
    font-size: 1.1rem;
    color: var(--text-secondary);
    font-weight: 300;
}

/* Navigation Controls */
.carousel-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: rgba(31, 35, 48, 0.9);
    border: 1px solid rgba(0, 212, 255, 0.3);
    color: var(--text-primary);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    z-index: 100;
    backdrop-filter: blur(10px);
}

.carousel-nav:hover {
    background: var(--accent-gradient);
    border-color: var(--accent);
    transform: translateY(-50%) scale(1.1);
    box-shadow: 0 5px 25px rgba(0, 212, 255, 0.5);
}

.carousel-nav:active {
    transform: translateY(-50%) scale(0.95);
}

.carousel-nav.prev {
    left: 2rem;
}

.carousel-nav.next {
    right: 2rem;
}

/* Indicators */
.carousel-indicators {
    position: absolute;
    bottom: 2rem;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 1rem;
    z-index: 100;
    background: rgba(10, 12, 16, 0.6);
    padding: 0.8rem 1.5rem;
    border-radius: 30px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.indicator {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.2);
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
}

.indicator::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 24px;
    height: 24px;
    border-radius: 50%;
    border: 2px solid transparent;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.indicator:hover {
    background: rgba(0, 212, 255, 0.5);
}

.indicator.active {
    background: var(--accent);
    box-shadow: 0 0 20px rgba(0, 212, 255, 0.6);
}

.indicator.active::before {
    border-color: var(--accent);
}

/* Floor Reflection */
.floor-reflection {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 200px;
    background: linear-gradient(to top, rgba(10, 12, 16, 0.8), transparent);
    pointer-events: none;
}

/* Before After Slider Section */
.before-after-section {
    padding: 8rem 4rem;
    background: linear-gradient(135deg, rgba(0, 212, 255, 0.02) 0%, rgba(0, 153, 255, 0.02) 100%);
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.before-after-container {
    max-width: 1200px;
    margin: 4rem auto 0;
}

.before-after-slider {
    position: relative;
    width: 100%;
    aspect-ratio: 16 / 9;
    overflow: hidden;
    border-radius: 20px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
    border: 1px solid rgba(0, 212, 255, 0.2);
    cursor: ew-resize;
    user-select: none;
    --position: 50%;
}

.before-image-container,
.after-image-container {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.after-image-container {
    clip-path: inset(0 calc(100% - var(--position)) 0 0);
}

.comparison-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    pointer-events: none;
    user-select: none;
    -webkit-user-drag: none;
}

.image-label {
    position: absolute;
    top: 2rem;
    padding: 0.5rem 1.5rem;
    background: rgba(0, 0, 0, 0.8);
    color: white;
    font-size: 0.85rem;
    font-weight: 600;
    letter-spacing: 2px;
    border-radius: 20px;
    backdrop-filter: blur(10px);
    z-index: 100;
}

.before-label {
    left: 2rem;
    border: 1px solid rgba(255, 255, 255, 0.3);
}

.after-label {
    right: 2rem;
    background: var(--accent-gradient);
    border: 1px solid var(--accent);
    box-shadow: 0 0 20px rgba(0, 212, 255, 0.4);
}

.slider-handle {
    position: absolute;
    top: 0;
    left: var(--position);
    width: 4px;
    height: 100%;
    background: white;
    transform: translateX(-50%);
    z-index: 10;
    pointer-events: none;
    box-shadow: 0 0 20px rgba(255, 255, 255, 0.5);
}

.handle-line {
    position: absolute;
    width: 100%;
    height: 40%;
    background: white;
    box-shadow: 0 0 10px rgba(255, 255, 255, 0.8);
}

.handle-line:first-child {
    top: 0;
}

.handle-line:last-child {
    bottom: 0;
}

.handle-circle {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 60px;
    height: 60px;
    background: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0;
    box-shadow: 
        0 0 0 4px rgba(0, 212, 255, 0.5),
        0 0 20px rgba(0, 212, 255, 0.8),
        0 4px 15px rgba(0, 0, 0, 0.3);
    cursor: ew-resize;
    pointer-events: auto;
}

.handle-circle svg {
    width: 20px;
    height: 20px;
    color: #0a0c10;
}

.handle-circle svg:first-child {
    transform: translateX(2px);
}

.handle-circle svg:last-child {
    transform: translateX(-2px);
}

/* Features Section */
.features-section {
    padding: 6rem 4rem;
    max-width: 1400px;
    margin: 0 auto;
}

.section-title {
    font-size: 3rem;
    font-weight: 700;
    text-align: center;
    margin-bottom: 1rem;
    background: linear-gradient(135deg, #ffffff 0%, var(--accent) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.section-subtitle {
    text-align: center;
    font-size: 1.2rem;
    color: var(--text-secondary);
    margin-bottom: 4rem;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.feature-card {
    background: var(--card-bg);
    padding: 2.5rem;
    border-radius: 20px;
    border: 1px solid rgba(255, 255, 255, 0.05);
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
}

.feature-card:hover {
    transform: translateY(-5px);
    border-color: var(--accent);
    box-shadow: 0 10px 40px rgba(0, 212, 255, 0.2);
}

.feature-icon {
    font-size: 3rem;
    margin-bottom: 1.5rem;
    filter: drop-shadow(0 0 10px var(--accent));
}

.feature-card h3 {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: var(--text-primary);
}

.feature-card p {
    color: var(--text-secondary);
    line-height: 1.6;
    font-size: 1rem;
}

/* How It Works Section */
.how-it-works-section {
    padding: 6rem 4rem;
    background: linear-gradient(135deg, rgba(0, 212, 255, 0.03) 0%, rgba(0, 153, 255, 0.03) 100%);
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.steps-container {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 2rem;
    max-width: 1400px;
    margin: 0 auto;
    flex-wrap: wrap;
}

.step {
    flex: 1;
    min-width: 200px;
    max-width: 250px;
    text-align: center;
    padding: 2rem;
    background: var(--card-bg);
    border-radius: 20px;
    border: 1px solid rgba(255, 255, 255, 0.05);
    transition: all 0.3s ease;
}

.step:hover {
    transform: translateY(-5px);
    border-color: var(--accent);
}

.step-number {
    width: 60px;
    height: 60px;
    margin: 0 auto 1.5rem;
    background: var(--accent-gradient);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    font-weight: 700;
    color: white;
    box-shadow: 0 5px 20px rgba(0, 212, 255, 0.4);
}

.step h3 {
    font-size: 1.3rem;
    font-weight: 600;
    margin-bottom: 0.8rem;
    color: var(--text-primary);
}

.step p {
    color: var(--text-secondary);
    font-size: 0.95rem;
}

.step-arrow {
    font-size: 2rem;
    color: var(--accent);
    opacity: 0.5;
}

/* Final CTA Section */
.final-cta-section {
    padding: 8rem 4rem;
    text-align: center;
    max-width: 900px;
    margin: 0 auto;
}

.cta-title {
    font-size: 3.5rem;
    font-weight: 800;
    margin-bottom: 1.5rem;
    background: linear-gradient(135deg, #ffffff 0%, var(--accent) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.cta-subtitle {
    font-size: 1.3rem;
    color: var(--text-secondary);
    margin-bottom: 3rem;
    line-height: 1.6;
}

.cta-buttons-center {
    display: flex;
    justify-content: center;
    margin-bottom: 3rem;
}

.trust-badges {
    display: flex;
    justify-content: center;
    gap: 3rem;
    flex-wrap: wrap;
}

.trust-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--text-secondary);
    font-size: 1rem;
}

.trust-icon {
    color: var(--accent);
    font-size: 1.3rem;
    font-weight: 700;
}

/* Footer */
.footer {
    padding: 4rem 2rem 2rem;
    background: rgba(10, 12, 16, 0.9);
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.footer-content {
    max-width: 600px;
    margin: 0 auto;
    text-align: center;
}

.footer-logo {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.footer-text {
    color: var(--text-secondary);
    margin-bottom: 1.5rem;
}

.footer-links {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin-bottom: 2rem;
    flex-wrap: wrap;
}

.footer-links a {
    color: var(--text-secondary);
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-links a:hover {
    color: var(--accent);
}

.separator {
    color: var(--text-secondary);
    opacity: 0.5;
}

.footer-copyright {
    color: var(--text-secondary);
    font-size: 0.9rem;
    opacity: 0.7;
}

/* Responsive Design */
/* Large Tablets and Small Desktops */
@media (max-width: 1200px) {
    .section-title {
        font-size: 2.5rem;
    }

    .section-subtitle {
        font-size: 1.1rem;
    }

    .features-section,
    .how-it-works-section,
    .final-cta-section {
        padding: 5rem 3rem;
    }
}

/* Tablets */
@media (max-width: 1024px) {
    .hero-text-overlay {
        top: 0;
        padding: 1rem;
    }

    .hero-actions {
        gap: 1rem;
    }

    .carousel-track {
        margin-top: 75px;
    }

    .carousel-container {
        padding: 1.5rem;
    }

    .carousel-item {
        width: 85%;
        height: 70%;
    }

    .car-info {
        padding: 1.5rem;
    }

    .car-info h2 {
        font-size: 1.5rem;
    }

    .car-info p {
        font-size: 1rem;
    }

    .carousel-nav {
        width: 50px;
        height: 50px;
    }

    .features-grid {
        grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
        gap: 1.5rem;
    }

    .feature-card {
        padding: 2rem;
    }

    .steps-container {
        flex-direction: column;
        gap: 1.5rem;
    }

    .step-arrow {
        transform: rotate(90deg);
    }

    .before-after-section {
        padding: 6rem 3rem;
    }

    .handle-circle {
        width: 50px;
        height: 50px;
    }

    .section-title {
        font-size: 2.2rem;
    }

    .cta-title {
        font-size: 2.8rem;
    }
}

/* Small Tablets */
@media (max-width: 900px) {
    .hero-carousel-section {
        min-height: auto;
        padding-bottom: 2rem;
        flex-direction: column-reverse;
    }

    .hero-text-overlay {
        position: relative;
        top: auto;
        left: auto;
        transform: none;
        margin-top: 2rem;
        padding: 1rem 2rem;
    }

    .carousel-track {
        margin-top: 0;
    }

    .carousel-scene {
        height: 50vh;
        min-height: 400px;
    }

    .transformation-badge {
        top: 1rem;
        right: 1rem;
        font-size: 0.75rem;
        padding: 0.4rem 1rem;
    }
}

/* Mobile Devices */
@media (max-width: 768px) {
    .header {
        padding: 1rem 1.5rem;
    }

    .logo {
        font-size: 1.3rem;
    }

    .logo-icon-img {
        height: 38px;
    }

    .logo-icon-img.small {
        height: 28px;
    }

    .download-icon-small {
        height: 32px;
    }

    .download-btn-image {
        height: 40px;
    }

    .download-btn-image.large {
        height: 50px;
    }

    .nav-link {
        display: none;
    }

    .hero-carousel-section {
        min-height: auto;
        padding-bottom: 1rem;
    }

    .hero-text-overlay {
        width: 95%;
        padding: 1rem 1.5rem;
        margin-top: 1.5rem;
    }

    .hero-title {
        font-size: clamp(1.8rem, 4.5vw, 2.5rem);
        margin-bottom: 0.8rem;
    }

    .hero-subtitle {
        font-size: clamp(0.85rem, 1.8vw, 1rem);
    }

    .hero-actions {
        gap: 0.8rem;
        flex-direction: column;
        margin-top: 0.8rem;
    }

    .rating-badge {
        padding: 0.4rem 1.2rem;
    }

    .stars {
        font-size: 0.95rem;
    }

    .rating-text {
        font-size: 0.75rem;
    }

    .carousel-container {
        padding: 1rem;
    }

    .carousel-scene {
        height: 50vh;
        min-height: 350px;
    }

    .carousel-item {
        width: 92%;
        height: 70%;
    }

    .carousel-item.next,
    .carousel-item.prev {
        opacity: 0.2;
        transform: translate(-50%, -50%) translateZ(-250px) scale(0.65);
    }

    .transformation-badge {
        top: 0.8rem;
        right: 0.8rem;
        font-size: 0.7rem;
        padding: 0.35rem 0.9rem;
        letter-spacing: 0.5px;
    }

    .car-info {
        padding: 1.2rem;
    }

    .car-info h2 {
        font-size: 1.2rem;
        line-height: 1.3;
    }

    .car-info p {
        font-size: 0.85rem;
        line-height: 1.4;
    }

    .carousel-nav {
        width: 42px;
        height: 42px;
    }

    .carousel-nav svg {
        width: 20px;
        height: 20px;
    }

    .carousel-nav.prev {
        left: 0.5rem;
    }

    .carousel-nav.next {
        right: 0.5rem;
    }

    .carousel-indicators {
        bottom: 0.8rem;
        padding: 0.5rem 1rem;
        gap: 0.7rem;
    }

    .indicator {
        width: 8px;
        height: 8px;
    }

    .features-section {
        padding: 3rem 1.5rem;
    }

    .section-title {
        font-size: 1.8rem;
        line-height: 1.3;
        margin-bottom: 0.8rem;
    }

    .section-subtitle {
        font-size: 0.95rem;
        line-height: 1.5;
        margin-bottom: 2.5rem;
    }

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

    .feature-card {
        padding: 1.8rem;
    }

    .feature-icon {
        font-size: 2.5rem;
        margin-bottom: 1.2rem;
    }

    .feature-card h3 {
        font-size: 1.3rem;
        margin-bottom: 0.8rem;
    }

    .feature-card p {
        font-size: 0.95rem;
        line-height: 1.5;
    }

    .how-it-works-section {
        padding: 3rem 1.5rem;
    }

    .step {
        padding: 1.5rem;
        min-width: 180px;
    }

    .step-number {
        width: 50px;
        height: 50px;
        font-size: 1.5rem;
        margin-bottom: 1.2rem;
    }

    .step h3 {
        font-size: 1.15rem;
        margin-bottom: 0.6rem;
    }

    .step p {
        font-size: 0.9rem;
    }

    .final-cta-section {
        padding: 3rem 1.5rem;
    }

    .cta-title {
        font-size: 2rem;
        line-height: 1.3;
        margin-bottom: 1rem;
    }

    .cta-subtitle {
        font-size: 1rem;
        line-height: 1.5;
        margin-bottom: 2rem;
    }

    .trust-badges {
        gap: 1.2rem;
        font-size: 0.9rem;
    }

    .trust-icon {
        font-size: 1.1rem;
    }

    .app-store-btn {
        padding: 0.7rem 1.5rem;
    }

    .app-store-icon {
        width: 28px;
        height: 28px;
    }

    .btn-title {
        font-size: 1rem;
    }

    .before-after-section {
        padding: 3rem 1.5rem;
    }

    .before-after-container {
        margin: 2.5rem auto 0;
    }

    .before-after-slider {
        border-radius: 12px;
    }

    .image-label {
        top: 0.8rem;
        padding: 0.35rem 0.9rem;
        font-size: 0.65rem;
        letter-spacing: 1px;
    }

    .before-label {
        left: 0.8rem;
    }

    .after-label {
        right: 0.8rem;
    }

    .handle-circle {
        width: 42px;
        height: 42px;
    }

    .handle-circle svg {
        width: 15px;
        height: 15px;
    }

    .footer {
        padding: 3rem 1.5rem 1.5rem;
    }

    .footer-text {
        font-size: 0.9rem;
    }

    .footer-links {
        font-size: 0.9rem;
    }
}

/* Small Mobile Devices */
@media (max-width: 480px) {
    .header {
        padding: 0.8rem 1rem;
    }

    .logo {
        font-size: 1.1rem;
    }

    .logo-icon-img {
        height: 32px;
    }

    .download-icon-small {
        height: 28px;
    }

    .hero-text-overlay {
        padding: 1rem;
        margin-top: 1rem;
    }

    .hero-title {
        font-size: clamp(1.5rem, 4vw, 2rem);
        margin-bottom: 0.6rem;
    }

    .hero-subtitle {
        font-size: clamp(0.75rem, 1.5vw, 0.9rem);
    }

    .hero-actions {
        margin-top: 0.6rem;
    }

    .download-btn-image {
        height: 36px;
    }

    .download-btn-image.large {
        height: 45px;
    }

    .carousel-scene {
        height: 45vh;
        min-height: 300px;
    }

    .carousel-item {
        width: 95%;
    }

    .carousel-nav {
        width: 38px;
        height: 38px;
    }

    .carousel-nav svg {
        width: 18px;
        height: 18px;
    }

    .section-title {
        font-size: 1.5rem;
    }

    .section-subtitle {
        font-size: 0.88rem;
    }

    .feature-card {
        padding: 1.5rem;
    }

    .cta-title {
        font-size: 1.7rem;
    }

    .trust-badges {
        flex-direction: column;
        gap: 0.8rem;
    }

    .handle-circle {
        width: 38px;
        height: 38px;
    }
}

/* Extra Small Devices */
@media (max-width: 360px) {
    .hero-text-overlay {
        padding: 0.8rem;
        margin-top: 0.8rem;
    }

    .hero-title {
        font-size: 1.4rem;
        margin-bottom: 0.5rem;
    }

    .hero-subtitle {
        font-size: 0.7rem;
        margin-bottom: 0;
    }

    .hero-actions {
        margin-top: 0.5rem;
        gap: 0.6rem;
    }

    .rating-badge {
        padding: 0.3rem 1rem;
        font-size: 0.75rem;
    }

    .carousel-scene {
        height: 40vh;
        min-height: 280px;
    }

    .carousel-indicators {
        padding: 0.4rem 0.8rem;
        gap: 0.5rem;
    }

    .indicator {
        width: 7px;
        height: 7px;
    }

    .section-title {
        font-size: 1.4rem;
    }
}

/* Landscape Mode for Mobile */
@media (max-height: 500px) and (orientation: landscape) {
    .hero-carousel-section {
        min-height: auto;
    }

    .hero-text-overlay {
        position: relative;
        transform: none;
        left: auto;
        margin: 0 auto 0.5rem;
        padding: 0.3rem;
    }

    .hero-title {
        font-size: clamp(1.3rem, 3.5vw, 2rem);
        margin-bottom: 0.3rem;
    }

    .hero-subtitle {
        font-size: clamp(0.7rem, 1.3vw, 0.9rem);
        margin-bottom: 0;
    }

    .hero-actions {
        margin-top: 0.3rem;
        gap: 0.6rem;
        flex-direction: row;
    }

    .rating-badge {
        padding: 0.3rem 0.8rem;
        font-size: 0.7rem;
    }

    .download-btn-image {
        height: 30px;
    }

    .carousel-track {
        margin-top: 0;
    }

    .carousel-scene {
        height: 65vh;
        min-height: 250px;
    }

    .carousel-container {
        padding: 0.5rem;
    }

    .features-section,
    .before-after-section,
    .how-it-works-section,
    .final-cta-section {
        padding: 2rem 1.5rem;
    }
}

/* High Resolution Displays */
@media (min-width: 1920px) {
    .carousel-track {
        margin-top: 100px;
    }

    .carousel-item {
        max-width: 1400px;
    }

    .section-title {
        font-size: 3.5rem;
    }

    .hero-title {
        font-size: 5.5rem;
    }

    .features-section,
    .how-it-works-section,
    .final-cta-section {
        padding: 8rem 4rem;
    }

    .before-after-container {
        max-width: 1600px;
    }
}

/* Very Small Devices */
@media (max-width: 320px) {
    .hero-text-overlay {
        padding: 0.6rem;
        margin-top: 0.6rem;
    }

    .hero-title {
        font-size: 1.2rem;
    }

    .hero-subtitle {
        font-size: 0.65rem;
    }

    .carousel-scene {
        height: 45vh;
        min-height: 280px;
    }

    .carousel-container {
        padding: 0.5rem;
    }
}
