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

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', sans-serif;
    line-height: 1.6;
    color: #e5e5e5;
    background-color: #0f0f0f;
    overflow-x: hidden;
}

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

/* Navigation */
.navbar {
    position: fixed;
    top: 0;
    width: 100%;
    background: rgba(26, 26, 26, 0.98);
    backdrop-filter: blur(15px);
    box-shadow: 0 2px 25px rgba(0, 0, 0, 0.3);
    z-index: 1000;
    transition: all 0.3s ease;
    border-bottom: 1px solid rgba(239, 68, 68, 0.2);
}

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

.nav-logo {
    display: flex;
    align-items: center;
    font-size: 1.5rem;
    font-weight: 700;
    color: #ef4444;
}

.nav-logo img {
    margin-right: 10px;
    height: 32px;
    width: auto;
}

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

.nav-menu a {
    text-decoration: none;
    color: #e5e5e5;
    font-weight: 500;
    transition: color 0.3s ease;
    position: relative;
}

.nav-menu a:hover {
    color: #f87171;
}

.nav-menu a::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: linear-gradient(90deg, #ef4444, #f87171);
    transition: width 0.3s ease;
}

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

/* Navigation Signup Button */
.nav-signup {
    margin-left: 1rem;
    list-style: none;
}

.nav-signup-btn {
    padding: 8px 16px;
    font-size: 0.9rem;
    border-radius: 4px;
    border: 1px solid #ef4444;
    background: transparent;
    color: #ef4444;
    cursor: pointer;
    transition: all 0.2s ease;
    display: flex;
    align-items: center;
    gap: 6px;
    font-weight: 500;
}

.nav-signup-btn:hover {
    background: #ef4444;
    color: white;
}

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

.nav-signup-btn:focus {
    outline: 1px solid rgba(239, 68, 68, 0.5);
    outline-offset: 1px;
}

.nav-signup-btn i {
    font-size: 0.9rem;
}

.nav-toggle {
    display: none;
    flex-direction: column;
    cursor: pointer;
}

.nav-toggle span {
    width: 25px;
    height: 3px;
    background: #e5e5e5;
    margin: 3px 0;
    transition: 0.3s;
}

/* Hero Section */
.hero {
    min-height: 100vh;
    background: linear-gradient(135deg, #1a1a1a 0%, #0f0f0f 50%, #1a1a2e 100%);
    display: flex;
    align-items: center;
    padding-top: 70px;
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1000 1000"><circle cx="200" cy="200" r="2" fill="rgba(255,255,255,0.12)"/><circle cx="800" cy="300" r="3" fill="rgba(255,255,255,0.12)"/><circle cx="400" cy="800" r="2" fill="rgba(255,255,255,0.12)"/></svg>');
    animation: float 20s infinite ease-in-out;
}

@keyframes float {
    0%, 100% { transform: translateY(0px); }
    50% { transform: translateY(-20px); }
}

.hero-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.hero-content {
    color: white;
    z-index: 2;
}

.hero-title {
    font-size: 3.5rem;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 1.5rem;
}

.gradient-text {
    background: linear-gradient(45deg, #ef4444, #f87171);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-description {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    opacity: 0.9;
    line-height: 1.8;
}

.hero-buttons {
    display: flex;
    gap: 1rem;
    margin-bottom: 3rem;
    flex-wrap: wrap;
    position: relative;
    z-index: 10;
}

.btn {
    padding: 15px 30px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    border: none;
    cursor: pointer;
    font-size: 1rem;
}

.btn-primary {
    background: linear-gradient(45deg, #ef4444, #f87171);
    color: white;
    box-shadow: 0 8px 25px rgba(239, 68, 68, 0.3);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 35px rgba(239, 68, 68, 0.4);
}

.btn-secondary {
    background: rgba(239, 68, 68, 0.1);
    color: white;
    border: 2px solid rgba(239, 68, 68, 0.5);
    backdrop-filter: blur(10px);
}

.btn-secondary:hover {
    background: rgba(239, 68, 68, 0.2);
    transform: translateY(-2px);
}

.hero-stats {
    display: flex;
    gap: 3rem;
}

.stat {
    text-align: center;
}

.stat-number {
    display: block;
    font-size: 2rem;
    font-weight: 700;
    color: #f87171;
}

.stat-label {
    font-size: 0.9rem;
    opacity: 0.8;
}

.hero-image {
    position: relative;
    z-index: 2;
}

.phone-mockup {
    position: relative;
    max-width: 300px;
    margin: 0 auto;
}

.phone-screen {
    background: linear-gradient(135deg, #2a2a2a 0%, #1a1a1a 100%);
    padding: 20px;
    border-radius: 30px;
    box-shadow: 
        0 30px 60px rgba(0, 0, 0, 0.5),
        0 0 40px rgba(239, 68, 68, 0.2);
    border: 2px solid rgba(239, 68, 68, 0.3);
    transform: rotate(5deg);
    animation: phoneFloat 6s ease-in-out infinite;
    position: relative;
}

@keyframes phoneFloat {
    0%, 100% { transform: rotate(5deg) translateY(0px); }
    50% { transform: rotate(5deg) translateY(-20px); }
}

.phone-screen img {
    width: 100%;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.3);
}

.floating-elements {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
}

.floating-card {
    position: absolute;
    background: rgba(42, 42, 42, 0.95);
    backdrop-filter: blur(15px);
    padding: 10px 15px;
    border-radius: 8px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
    display: flex;
    align-items: center;
    gap: 8px;
    font-weight: 600;
    font-size: 0.9rem;
    color: #e5e5e5;
    animation: cardFloat 4s ease-in-out infinite;
    border: 1px solid rgba(239, 68, 68, 0.3);
    z-index: 1;
    cursor: pointer;
}

.card-1 {
    top: 15%;
    right: -15%;
    animation-delay: 0s;
    transition: all 0.5s cubic-bezier(0.68, -0.55, 0.265, 1.55);
}

.card-2 {
    bottom: 45%;
    left: -25%;
    animation-delay: 1s;
    transition: all 0.5s cubic-bezier(0.68, -0.55, 0.265, 1.55);
}

.card-3 {
    top: 65%;
    right: -5%;
    animation-delay: 2s;
    transition: all 0.5s cubic-bezier(0.68, -0.55, 0.265, 1.55);
}

@keyframes cardFloat {
    0%, 100% { transform: translateY(0px); }
    50% { transform: translateY(-15px); }
}

@keyframes cardBounce {
    0% { transform: scale(1); }
    25% { transform: scale(1.2) rotate(-5deg); }
    50% { transform: scale(1.1) rotate(5deg); }
    75% { transform: scale(1.15) rotate(-2deg); }
    100% { transform: scale(1); }
}

.floating-card.bounce {
    animation: cardBounce 0.6s ease-in-out;
}

/* Playful wiggle animation for avoidance */
@keyframes cardWiggle {
    0% { transform: translateX(0px) rotate(0deg); }
    25% { transform: translateX(-5px) rotate(-2deg); }
    50% { transform: translateX(5px) rotate(2deg); }
    75% { transform: translateX(-3px) rotate(-1deg); }
    100% { transform: translateX(0px) rotate(0deg); }
}

.floating-card.wiggle {
    animation: cardWiggle 0.4s ease-in-out;
}

.floating-card i {
    color: #f87171;
    font-size: 1rem;
}

/* Features Section */
.features {
    padding: 100px 0;
    background: #1a1a1a;
}

.section-header {
    text-align: center;
    margin-bottom: 4rem;
}

.section-header h2 {
    font-size: 2.5rem;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 1rem;
}

.section-header p {
    font-size: 1.2rem;
    color: #a0a0a0;
    max-width: 600px;
    margin: 0 auto;
}

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

.feature-card {
    background: #2a2a2a;
    padding: 2.5rem;
    border-radius: 12px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.3);
    transition: all 0.3s ease;
    text-align: center;
    position: relative;
    overflow: hidden;
    border: 1px solid rgba(239, 68, 68, 0.2);
}

.feature-card::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: linear-gradient(45deg, transparent, rgba(239, 68, 68, 0.15), transparent);
    transform: rotate(45deg);
    transition: all 0.5s ease;
    opacity: 0;
}

.feature-card:hover::before {
    opacity: 1;
    animation: shimmer 1.5s ease-in-out;
}

@keyframes shimmer {
    0% { transform: translateX(-100%) translateY(-100%) rotate(45deg); }
    100% { transform: translateX(100%) translateY(100%) rotate(45deg); }
}

.feature-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 40px rgba(239, 68, 68, 0.2);
}

.feature-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 1.5rem;
    background: linear-gradient(135deg, #ef4444, #f87171);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    z-index: 2;
}

.feature-icon i {
    font-size: 2rem;
    color: white;
}

.feature-card h3 {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: #ffffff;
    position: relative;
    z-index: 2;
}

.feature-card p {
    color: #a0a0a0;
    line-height: 1.8;
    position: relative;
    z-index: 2;
}

/* Screenshots Section */
.screenshots {
    padding: 100px 0;
    background: #0f0f0f;
}

.screenshots-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 1rem;
    margin-bottom: 3rem;
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
}

.screenshot-item {
    position: relative;
    text-align: center;
    transition: all 0.3s ease;
    cursor: pointer;
    border-radius: 16px;
    overflow: hidden;
    background: linear-gradient(135deg, #2a2a2a 0%, #1f1f1f 100%);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
    aspect-ratio: 9/16; /* Phone ratio */
    width: 100%;
    margin: 0 auto;
}

.screenshot-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 30px rgba(239, 68, 68, 0.3);
}

.screenshot-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    transition: all 0.3s ease;
    border-radius: 16px;
}

.screenshot-item:hover img {
    transform: scale(1.05);
    filter: blur(0px);
}

.screenshot-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(transparent, rgba(0, 0, 0, 0.8));
    padding: 2rem 1rem 1rem;
    transform: translateY(100%);
    transition: all 0.3s ease;
    color: white;
}

.screenshot-item:hover .screenshot-overlay {
    transform: translateY(0);
}

.screenshot-overlay h4 {
    margin-bottom: 0.5rem;
    font-weight: 600;
    font-size: 1.1rem;
}

.screenshot-overlay i {
    font-size: 1.5rem;
    opacity: 0.8;
}

.nav-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(239, 68, 68, 0.35);
}

/* Video Section */
.video-section {
    padding: 80px 0;
    background: linear-gradient(135deg, #0a0a0a 0%, #1a1a1a 100%);
    position: relative;
}

.video-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at center, rgba(239, 68, 68, 0.1) 0%, transparent 70%);
    pointer-events: none;
}

.video-container {
    max-width: 900px;
    margin: 0 auto;
    position: relative;
}

.video-wrapper {
    position: relative;
    width: 100%;
    height: 0;
    padding-bottom: 56.25%; /* 16:9 aspect ratio */
    background: #000;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 
        0 0 0 2px rgba(239, 68, 68, 0.3),
        0 20px 60px rgba(0, 0, 0, 0.6),
        0 0 80px rgba(239, 68, 68, 0.15);
    transition: all 0.3s ease;
}

.video-wrapper:hover {
    transform: translateY(-5px);
    box-shadow: 
        0 0 0 2px rgba(239, 68, 68, 0.5),
        0 30px 80px rgba(0, 0, 0, 0.8),
        0 0 100px rgba(239, 68, 68, 0.25);
}

.video-wrapper video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 15px;
}



/* Video kontrolleri stili - tüm tarayıcılar için */
.video-wrapper video::-webkit-media-controls-enclosure {
    background: rgba(0, 0, 0, 0.3);
}

.video-wrapper video::-webkit-media-controls-panel {
    background-image: none;
    background-color: rgba(0, 0, 0, 0.5);
}

.video-wrapper video::-webkit-media-controls-play-button,
.video-wrapper video::-webkit-media-controls-mute-button,
.video-wrapper video::-webkit-media-controls-fullscreen-button,
.video-wrapper video::-webkit-media-controls-timeline,
.video-wrapper video::-webkit-media-controls-current-time-display,
.video-wrapper video::-webkit-media-controls-time-remaining-display,
.video-wrapper video::-webkit-media-controls-volume-slider {
    filter: brightness(1.2);
}

/* Firefox için video kontrolleri */
.video-wrapper video::-moz-range-thumb {
    background: #f87171;
}

.video-wrapper video::-moz-range-track {
    background: rgba(255, 255, 255, 0.3);
}

/* Video hover efekti */
.video-wrapper:hover video {
    box-shadow: 0 0 30px rgba(239, 68, 68, 0.2);
}

/* Video loading animasyonu */
.video-wrapper::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 50px;
    height: 50px;
    border: 3px solid rgba(255, 255, 255, 0.1);
    border-top-color: #f87171;
    border-radius: 50%;
    animation: videoLoading 1s linear infinite;
    z-index: -1;
    opacity: 1;
    transition: opacity 0.3s ease;
}

.video-wrapper.video-loaded::before {
    opacity: 0;
}

@keyframes videoLoading {
    to { transform: translate(-50%, -50%) rotate(360deg); }
}

.video-wrapper video[poster] {
    background: transparent;
}

/* Video focus durumu */
.video-wrapper video:focus {
    outline: 2px solid rgba(239, 68, 68, 0.5);
    outline-offset: 2px;
}

/* Video placeholder - eğer video yüklenemezse kullanılır */
.video-error {
    background: #1a1a1a;
    height: 450px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    color: #a0a0a0;
    border-radius: 16px;
    border: 2px solid rgba(239, 68, 68, 0.2);
}

.video-error i {
    font-size: 3rem;
    margin-bottom: 1rem;
    color: #f87171;
}

.video-error p {
    font-size: 1.1rem;
    margin-bottom: 1rem;
}

.video-error a {
    color: #f87171;
    text-decoration: none;
    font-weight: 600;
}

.video-error a:hover {
    text-decoration: underline;
}

/* Download Section */
.download {
    padding: 100px 0;
    background: #1a1a1a;
}

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

.download-text h2 {
    font-size: 2.5rem;
    color: #ffffff;
    margin-bottom: 1rem;
    font-weight: 700;
}

.download-text p {
    font-size: 1.2rem;
    color: #a0a0a0;
    margin-bottom: 2rem;
    line-height: 1.8;
}

.download-buttons {
    display: flex;
    gap: 1rem;
    margin-bottom: 3rem;
    flex-wrap: wrap;
}

.download-btn {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 15px 25px;
    background: #333333;
    color: white;
    text-decoration: none;
    border-radius: 12px;
    transition: all 0.3s ease;
    min-width: 200px;
}

.download-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(51, 51, 51, 0.25);
}

.download-btn.apple {
    background: linear-gradient(135deg, #333333, #666666);
}

.download-btn.google {
    background: linear-gradient(135deg, #ef4444, #f87171);
}

.btn-icon {
    font-size: 2rem;
}

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

.btn-text .small {
    font-size: 0.8rem;
    opacity: 0.8;
}

.btn-text .large {
    font-size: 1.1rem;
    font-weight: 600;
}

.qr-code {
    text-align: center;
}

.qr-code img {
    width: 120px;
    height: 120px;
    border-radius: 10px;
    margin-bottom: 0.5rem;
}

.qr-code p {
    font-size: 0.9rem;
    color: #a0a0a0;
}

/* 3D Interface Container */
.interface-3d-container {
    position: relative;
    height: 500px;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    perspective: 1000px;
    overflow: visible;
}

.main-interface {
    position: relative;
    z-index: 5;
    transform-style: preserve-3d;
}

.interface-screen {
    width: 280px;
    height: 480px;
    background: linear-gradient(135deg, #1a1a1a 0%, #2d2d2d 100%);
    border-radius: 25px;
    overflow: hidden;
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.3);
    border: 2px solid #333;
    position: relative;
    transform: rotateY(-5deg) rotateX(2deg);
    transition: all 0.4s cubic-bezier(0.68, -0.55, 0.265, 1.55);
}

.interface-screen:hover {
    transform: rotateY(-5deg) rotateX(2deg) scale(1.02);
    box-shadow: 0 35px 70px rgba(0, 0, 0, 0.4);
}

.interface-header {
    background: #ef4444;
    padding: 15px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
}

.search-bar {
    background: rgba(255, 255, 255, 0.2);
    border-radius: 20px;
    padding: 8px 15px;
    display: flex;
    align-items: center;
    gap: 10px;
    flex: 1;
    margin-right: 10px;
}

.search-bar i {
    color: white;
    font-size: 14px;
}

.search-bar span {
    color: rgba(255, 255, 255, 0.8);
    font-size: 14px;
}

.filter-btn {
    background: rgba(255, 255, 255, 0.2);
    border-radius: 8px;
    padding: 8px;
    color: white;
    cursor: pointer;
    transition: all 0.3s ease;
}

.filter-btn:hover {
    background: rgba(255, 255, 255, 0.3);
}

.interface-content {
    padding: 20px;
    height: calc(100% - 70px);
    overflow-y: auto;
}

.car-listing {
    background: #2a2a2a;
    border-radius: 12px;
    padding: 15px;
    margin-bottom: 15px;
    display: flex;
    align-items: center;
    gap: 15px;
    cursor: pointer;
    transition: all 0.3s ease;
    border: 1px solid #404040;
}

.car-listing:hover {
    background: #333;
    transform: translateX(5px);
    border-color: #ef4444;
}

.car-listing .car-image {
    width: 60px;
    height: 45px;
    border-radius: 8px;
    overflow: hidden;
    flex-shrink: 0;
}

.car-listing .car-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.car-listing .car-info {
    flex: 1;
}

.car-listing .car-info h4 {
    color: white;
    font-size: 14px;
    font-weight: 600;
    margin: 0 0 5px 0;
}

.car-listing .car-info p {
    color: #ef4444;
    font-size: 16px;
    font-weight: 700;
    margin: 0;
}



/* Contact Section */
.contact {
    padding: 100px 0;
    background: #0f0f0f;
}

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

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.contact-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #ef4444, #f87171);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.5rem;
}

.contact-text h4 {
    font-size: 1.2rem;
    color: #ffffff;
    margin-bottom: 0.5rem;
}

.contact-text p {
    color: #a0a0a0;
}

/* Corporate Contact Form */
.corporate-form {
    display: flex;
    flex-direction: column;
    gap: 25px;
    background: rgba(255, 255, 255, 0.03);
    padding: 30px;
    border-radius: 20px;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.corporate-form .form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.corporate-form .form-group {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.corporate-form label {
    color: #ffffff;
    font-weight: 600;
    font-size: 0.95rem;
    margin-bottom: 5px;
}

.input-container {
    position: relative;
    display: flex;
    align-items: center;
}

.input-container i {
    position: absolute;
    left: 15px;
    color: #a0a0a0;
    font-size: 1rem;
    z-index: 1;
}

.input-container input,
.input-container textarea,
.input-container select {
    width: 100%;
    padding: 15px 20px 15px 45px;
    border: 2px solid #333;
    border-radius: 12px;
    background: #2a2a2a;
    color: #ffffff;
    font-size: 1rem;
    transition: all 0.3s ease;
    font-family: inherit;
}

.input-container input:focus,
.input-container textarea:focus,
.input-container select:focus {
    outline: none;
    border-color: #f87171;
    box-shadow: 0 0 0 3px rgba(248, 113, 113, 0.1);
    background: #333;
}

.input-container input::placeholder,
.input-container textarea::placeholder {
    color: #666;
}

.input-container select {
    cursor: pointer;
}

.input-container select option {
    background: #2a2a2a;
    color: #ffffff;
    padding: 10px;
}

.input-container textarea {
    resize: vertical;
    min-height: 120px;
    line-height: 1.5;
}

.form-actions {
    display: flex;
    flex-direction: column;
    gap: 15px;
    margin-top: 10px;
}

.corporate-submit {
    padding: 15px 30px;
    font-size: 1.1rem;
    font-weight: 600;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    transition: all 0.3s ease;
}

.corporate-submit:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(239, 68, 68, 0.3);
}

.form-note {
    display: flex;
    align-items: center;
    gap: 8px;
    color: #a0a0a0;
    font-size: 0.9rem;
    margin: 0;
    padding: 10px 15px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 8px;
    border-left: 3px solid #f87171;
}

.form-note i {
    color: #f87171;
}

/* Footer */
.footer {
    background: #1A1A1A;
    color: white;
    padding: 60px 0 20px;
}

.footer-content {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 3rem;
    margin-bottom: 3rem;
}

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

.footer-logo img {
    margin-right: 10px;
    height: 28px;
    width: auto;
}

.footer-section p {
    color: #CCCCCC;
    margin-bottom: 2rem;
    line-height: 1.8;
}

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

.social-links a {
    width: 40px;
    height: 40px;
    background: rgba(239, 68, 68, 0.25);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #f87171;
    text-decoration: none;
    transition: all 0.3s ease;
}

.social-links a:hover {
    background: #ef4444;
    color: white;
    transform: translateY(-2px);
}

.footer-section h4 {
    color: white;
    margin-bottom: 1rem;
    font-weight: 600;
}

.footer-section ul {
    list-style: none;
}

.footer-section ul li {
    margin-bottom: 0.5rem;
}

.footer-section ul li a {
    color: #CCCCCC;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-section ul li a:hover {
    color: #f87171;
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid #333333;
    color: #CCCCCC;
}

.footer-brand {
    color: #f87171;
    font-weight: 600;
    text-shadow: 0 0 6px rgba(248, 113, 113, 0.4);
}

/* Floating Card Hover Effects */
.hero-buttons:hover ~ .hero-image .floating-card.card-2 {
    transform: translateX(-50px) translateY(-30px) scale(0.9);
    opacity: 0.6;
}

.floating-card:hover {
    transform: scale(1.1) rotate(5deg);
    z-index: 15;
    box-shadow: 
        0 15px 35px rgba(239, 68, 68, 0.4),
        0 0 30px rgba(239, 68, 68, 0.3);
}

.floating-card::after {
    content: '';
    position: absolute;
    top: -5px;
    left: -5px;
    right: -5px;
    bottom: -5px;
    background: linear-gradient(45deg, #ef4444, #f87171);
    border-radius: 12px;
    z-index: -1;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.floating-card:hover::after {
    opacity: 0.3;
}

/* Modal Styles */
.modal {
    display: none;
    position: fixed;
    z-index: 1000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.9);
    backdrop-filter: blur(10px);
    display: none;
    align-items: center;
    justify-content: center;
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
}

.modal#screenshotModal {
    display: none;
}

.modal#screenshotModal[style*="display: block"] {
    display: flex !important;
}

.modal-content {
    position: relative;
    background-color: #1a1a1a;
    margin: 2% auto;
    padding: 20px;
    border-radius: 16px;
    max-width: 95%;
    max-height: 95vh;
    overflow: auto;
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.5);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    animation: modalFadeIn 0.3s ease-out;
    transform-origin: center center;
}

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

.modal-content img {
    width: auto;
    height: auto;
    max-width: 100%;
    max-height: calc(90vh - 40px);
    display: block;
    object-fit: contain;
    border-radius: 12px;
}

.close-modal {
    position: fixed;
    top: 20px;
    right: 20px;
    color: white;
    font-size: 35px;
    font-weight: bold;
    cursor: pointer;
    z-index: 1002;
    background: rgba(0, 0, 0, 0.7);
    border-radius: 50%;
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
}

.close-modal:hover {
    background: rgba(239, 68, 68, 0.8);
}

/* Signup Modal Styles */
.signup-modal {
    max-width: 480px;
    width: 95%;
    padding: 0;
    margin: 2% auto;
    background: #1a1a1a;
    border: 1px solid rgba(239, 68, 68, 0.15);
    overflow-y: auto;
    max-height: 95vh;
    border-radius: 20px;
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.8);
    animation: modalFadeIn 0.3s ease-out;
    transform-origin: center center;
}

.modal-header {
    text-align: center;
    padding: 2rem 2rem 1rem;
    background: transparent;
    border-bottom: none;
    position: relative;
}

.modal-header::before {
    display: none;
}

.modal-logo {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    margin-bottom: 1rem;
    color: #ef4444;
    font-size: 1.4rem;
    font-weight: 600;
}

.modal-logo img {
    height: 32px;
    width: auto;
}

.modal-header h2 {
    color: #ffffff;
    margin-bottom: 0.5rem;
    font-size: 1.8rem;
    font-weight: 600;
    letter-spacing: -0.3px;
}

.modal-header p {
    color: #a0a0a0;
    font-size: 0.95rem;
    line-height: 1.5;
    font-weight: 400;
    max-width: 350px;
    margin: 0 auto;
}

/* Legal Modal Styles */
.legal-modal {
    max-width: 900px;
    width: 95%;
    max-height: 90vh;
    margin: 2% auto;
    background: #1a1a1a;
    border: 1px solid rgba(239, 68, 68, 0.2);
    overflow: hidden;
    display: flex;
    flex-direction: column;
    animation: modalFadeIn 0.3s ease-out;
    transform-origin: center center;
}

.legal-modal .modal-header {
    flex-shrink: 0;
    padding: 1.5rem 2rem 1rem;
    background: transparent;
    border-bottom: none;
}

.legal-modal .modal-logo {
    display: none;
}

.legal-modal .modal-header h2 {
    color: #ffffff;
    margin-bottom: 0;
    font-size: 1.5rem;
    font-weight: 600;
    text-align: center;
}

.legal-content {
    flex: 1;
    overflow-y: auto;
    padding: 2rem;
    background: #1a1a1a;
}

.legal-content::-webkit-scrollbar {
    width: 8px;
}

.legal-content::-webkit-scrollbar-track {
    background: #2a2a2a;
    border-radius: 4px;
}

.legal-content::-webkit-scrollbar-thumb {
    background: #ef4444;
    border-radius: 4px;
}

.legal-content::-webkit-scrollbar-thumb:hover {
    background: #dc2626;
}

.legal-text {
    color: #e5e5e5;
    line-height: 1.7;
    max-width: 100%;
}

.legal-text h3 {
    color: #ffffff;
    font-size: 1.6rem;
    font-weight: 700;
    margin-bottom: 1rem;
    text-align: center;
    background: linear-gradient(135deg, #ef4444, #f87171);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.legal-text h4 {
    color: #f87171;
    font-size: 1.2rem;
    font-weight: 600;
    margin: 1.5rem 0 0.8rem 0;
    padding-bottom: 0.3rem;
    border-bottom: 2px solid rgba(239, 68, 68, 0.3);
}

.legal-text p {
    margin-bottom: 1rem;
    color: #cccccc;
    font-size: 0.95rem;
    text-align: justify;
}

.legal-text ul {
    margin: 1rem 0;
    padding-left: 1.5rem;
}

.legal-text li {
    margin-bottom: 0.6rem;
    color: #cccccc;
    font-size: 0.95rem;
    line-height: 1.6;
}

.legal-text ul ul {
    margin-left: 1rem;
    margin-top: 0.5rem;
}

.legal-text ul ul li {
    margin-bottom: 0.3rem;
    color: #b0b0b0;
    font-size: 0.9rem;
}

.legal-text hr {
    border: none;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(239, 68, 68, 0.3), transparent);
    margin: 1.5rem 0;
}

.legal-text strong {
    color: #ffffff;
    font-weight: 600;
}

.legal-text p:last-child {
    text-align: center;
    font-weight: 500;
    color: #f87171;
    background: rgba(239, 68, 68, 0.1);
    padding: 1rem;
    border-radius: 8px;
    border: 1px solid rgba(239, 68, 68, 0.2);
}

.signup-form {
    padding: 1rem 2rem 2rem;
    display: flex;
    flex-direction: column;
    gap: 1.2rem;
}

/* Form Row */
.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
}

/* Form Groups */
.signup-form .form-group {
    display: flex;
    flex-direction: column;
    gap: 0.4rem;
}

.signup-form .form-group label {
    color: #ffffff;
    font-weight: 600;
    font-size: 0.9rem;
}

/* Input Wrapper */
.input-wrapper {
    position: relative;
    display: flex;
    align-items: center;
}

.input-wrapper i {
    position: absolute;
    left: 15px;
    color: #a0a0a0;
    z-index: 1;
}

.input-wrapper input {
    width: 100%;
    padding: 12px 45px 12px 40px;
    border: 1px solid #333;
    border-radius: 8px;
    background: #2a2a2a;
    color: #ffffff;
    font-size: 0.95rem;
    transition: all 0.3s ease;
}

.input-wrapper input:focus {
    outline: none;
    border-color: #f87171;
    box-shadow: 0 0 0 3px rgba(248, 113, 113, 0.1);
    background: #333;
}

.input-wrapper input::placeholder {
    color: #666;
}

/* Password Toggle */
.password-toggle {
    position: absolute;
    right: 12px;
    top: 50%;
    transform: translateY(-50%);
    background: none;
    border: none;
    color: #a0a0a0;
    cursor: pointer;
    padding: 8px;
    border-radius: 4px;
    transition: color 0.3s ease;
    z-index: 10;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 32px;
    height: 32px;
}

.password-toggle:hover {
    color: #f87171;
}

/* Password Strength */
.password-strength {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-top: 5px;
}

.strength-bar {
    flex: 1;
    height: 4px;
    background: #333;
    border-radius: 2px;
    overflow: hidden;
}

.strength-fill {
    height: 100%;
    width: 0%;
    background: linear-gradient(90deg, #ef4444, #f59e0b, #10b981);
    transition: width 0.3s ease;
}

.strength-text {
    font-size: 0.8rem;
    color: #a0a0a0;
    min-width: 80px;
}

/* Password Match */
.password-match {
    font-size: 0.8rem;
    margin-top: 5px;
    height: 16px;
}

.password-match.match {
    color: #10b981;
}

.password-match.no-match {
    color: #ef4444;
}

/* Checkbox Groups */
.checkbox-group {
    margin: 0.5rem 0;
}

.checkbox-container {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    cursor: pointer;
    line-height: 1.5;
}

.checkbox-container input[type="checkbox"] {
    display: none;
}

.checkmark {
    width: 20px;
    height: 20px;
    background: #2a2a2a;
    border: 2px solid #333;
    border-radius: 4px;
    position: relative;
    transition: all 0.3s ease;
    flex-shrink: 0;
    margin-top: 2px;
}

.checkbox-container input[type="checkbox"]:checked + .checkmark {
    background: #f87171;
    border-color: #f87171;
}

.checkbox-container input[type="checkbox"]:checked + .checkmark::after {
    content: '✓';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    color: white;
    font-size: 12px;
    font-weight: bold;
}

.checkbox-text {
    color: #a0a0a0;
    font-size: 0.9rem;
    line-height: 1.4;
}

.terms-link {
    color: #f87171;
    text-decoration: none;
    font-weight: 600;
}

.terms-link:hover {
    text-decoration: underline;
}

/* Submit Button */
.signup-submit-btn {
    margin-top: 0.5rem;
    padding: 12px 24px;
    font-size: 1rem;
    font-weight: 600;
    position: relative;
    overflow: hidden;
}

.signup-submit-btn span {
    transition: opacity 0.3s ease;
}

.signup-submit-btn.loading span {
    opacity: 0;
}

.signup-submit-btn.loading .loading-spinner {
    display: flex !important;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

/* Contact Form Loading State */
.corporate-submit.loading {
    position: relative;
    color: transparent;
    pointer-events: none;
}

.corporate-submit.loading::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 20px;
    height: 20px;
    border: 2px solid #ffffff;
    border-top: 2px solid transparent;
    border-radius: 50%;
    animation: spin 1s linear infinite;
}

@keyframes spin {
    0% { transform: translate(-50%, -50%) rotate(0deg); }
    100% { transform: translate(-50%, -50%) rotate(360deg); }
}



/* Download Section Fixes */
.download-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    min-height: 600px;
}

.download-image {
    position: relative;
    height: 600px;
    overflow: visible;
}

.phones-mockup {
    position: relative;
    height: 100%;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.signup-actions {
    margin-top: 2rem;
}

.signup-actions .btn {
    padding: 18px 35px;
    font-size: 1.1rem;
}

/* Signup Modal Responsive */
@media (max-width: 768px) {
    .signup-modal {
        margin: 1% auto;
        max-width: 95%;
        max-height: 98vh;
        width: 90%;
        border-radius: 16px;
    }
    
    .modal-header {
        padding: 1.5rem 1rem 0.8rem;
    }
    
    .modal-logo {
        font-size: 1.2rem;
        margin-bottom: 0.8rem;
    }
    
    .modal-logo img {
        height: 28px;
        width: auto;
    }
    
    .modal-header h2 {
        font-size: 1.5rem;
    }
    
    .modal-header p {
        font-size: 0.9rem;
    }
    
    .signup-form {
        padding: 1rem 1.5rem 1.5rem;
        gap: 1rem;
    }
    
    .form-row {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    .input-wrapper input {
        padding: 14px 45px 14px 40px;
        font-size: 16px; /* Prevents zoom on iOS */
    }
    
    .checkbox-container {
        font-size: 0.9rem;
    }
    
    .signup-submit-btn {
        padding: 15px 24px;
        font-size: 1rem;
    }
}

@media (max-width: 480px) {
    .signup-modal {
        margin: 0.5% auto;
        max-width: 98%;
        max-height: 99vh;
        width: 95%;
        border-radius: 12px;
    }
    
    .modal-header {
        padding: 1rem 0.8rem 0.5rem;
    }
    
    .modal-logo {
        font-size: 1.1rem;
        margin-bottom: 0.5rem;
        gap: 8px;
    }
    
    .modal-logo img {
        height: 24px;
    }
    
    .modal-header h2 {
        font-size: 1.3rem;
        margin-bottom: 0.3rem;
    }
    
    .modal-header p {
        font-size: 0.85rem;
        max-width: 280px;
    }
    
    .signup-form {
        padding: 0.8rem 1rem 1.2rem;
        gap: 0.8rem;
    }
    
    .form-row {
        gap: 0.8rem;
    }
    
    .signup-form .form-group {
        gap: 0.3rem;
    }
    
    .signup-form .form-group label {
        font-size: 0.85rem;
    }
    
    .input-wrapper input {
        padding: 12px 40px 12px 35px;
        font-size: 16px;
    }
    
    .input-wrapper i {
        left: 12px;
    }
    
    .password-toggle {
        right: 10px;
        width: 28px;
        height: 28px;
    }
    
    .checkbox-container {
        font-size: 0.85rem;
        gap: 10px;
    }
    
    .checkmark {
        width: 18px;
        height: 18px;
    }
    
    .signup-submit-btn {
        padding: 14px 20px;
        font-size: 0.95rem;
        margin-top: 0.3rem;
    }
    
    .password-strength {
        gap: 8px;
    }
    
    .strength-text {
        font-size: 0.75rem;
        min-width: 70px;
    }
    
    .password-match {
        font-size: 0.75rem;
    }
}

/* Tablet Responsive */
@media (max-width: 1024px) and (min-width: 769px) {
    .signup-modal {
        max-width: 600px;
        width: 80%;
        margin: 3% auto;
        border-radius: 20px;
    }
    
    .legal-modal {
        max-width: 800px;
        width: 85%;
        margin: 2% auto;
        border-radius: 20px;
    }
    
    .modal-content {
        max-width: 90%;
        padding: 15px;
        border-radius: 16px;
    }
    
    .close-modal {
        top: 20px;
        right: 20px;
        width: 48px;
        height: 48px;
        font-size: 32px;
    }
}

/* Responsive Design */
@media (max-width: 768px) {
    .screenshots {
        padding: 60px 0;
        position: relative;
    }
    
    .screenshots::after {
        content: '';
        position: absolute;
        top: 0;
        right: 0;
        bottom: 0;
        width: 30px;
        background: linear-gradient(90deg, transparent, #0f0f0f);
        pointer-events: none;
        z-index: 1;
    }
    
    .screenshots::before {
        content: '← Kaydırın';
        position: absolute;
        top: 50%;
        right: 40px;
        transform: translateY(-50%);
        color: #f87171;
        font-size: 0.8rem;
        font-weight: 600;
        pointer-events: none;
        z-index: 2;
        opacity: var(--indicator-opacity, 0.8);
        animation: slideIndicate 2s ease-in-out infinite;
        transition: opacity 0.3s ease;
    }
    
    @keyframes slideIndicate {
        0%, 100% { opacity: 0.8; transform: translateY(-50%) translateX(0); }
        50% { opacity: 1; transform: translateY(-50%) translateX(-5px); }
    }
    .nav-menu {
        position: fixed;
        left: -100%;
        top: 70px;
        width: 100%;
        height: calc(100vh - 70px);
        background: rgba(26, 26, 26, 0.98);
        backdrop-filter: blur(15px);
        flex-direction: column;
        justify-content: flex-start;
        align-items: center;
        padding-top: 2rem;
        transition: left 0.3s ease;
        gap: 1.5rem;
    }

    .nav-menu.active {
        left: 0;
    }
    
    /* Mobile navigation signup button */
    .nav-signup {
        margin-left: 0;
        margin-top: 1rem;
    }
    
    .nav-signup-btn {
        padding: 12px 30px;
        font-size: 1rem;
    }

    .nav-toggle {
        display: flex;
    }

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

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

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

    .hero-container {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 2rem;
    }

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

    .hero-buttons {
        justify-content: center;
    }

    .hero-stats {
        justify-content: center;
        gap: 2rem;
    }
    
    .hero-image {
        display: none;
    }
    
    /* Mobile-specific floating card positions */
    .card-1 {
        top: 5%;
        right: -10%;
    }
    
    .card-2 {
        bottom: 60%;
        left: -25%;
    }
    
    .card-3 {
        top: 75%;
        right: -5%;
    }

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

    .screenshots-grid {
        display: flex;
        overflow-x: auto;
        gap: 1rem;
        padding: 0 1rem;
        scroll-snap-type: x mandatory;
        -webkit-overflow-scrolling: touch;
    }
    
    .screenshots-grid::-webkit-scrollbar {
        height: 8px;
    }
    
    .screenshots-grid::-webkit-scrollbar-track {
        background: #2a2a2a;
        border-radius: 4px;
    }
    
    .screenshots-grid::-webkit-scrollbar-thumb {
        background: #ef4444;
        border-radius: 4px;
    }
    
    .screenshots-grid::-webkit-scrollbar-thumb:hover {
        background: #dc2626;
    }

    .screenshot-item {
        flex: 0 0 200px;
        max-width: 200px;
        height: 356px;
        scroll-snap-align: start;
    }
    
    .screenshot-overlay {
        transform: translateY(0);
        opacity: 0.9;
        background: linear-gradient(transparent, rgba(0, 0, 0, 0.9));
    }

    .download-content {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 2rem;
    }
    
    .download-image {
        height: 300px;
    }
    
    .interface-3d-container {
        height: 350px;
        margin-top: 2rem;
        perspective: 800px;
    }

    .interface-screen {
        width: 220px;
        height: 380px;
        transform: rotateY(-3deg) rotateX(1deg);
    }

    .interface-screen:hover {
        transform: rotateY(-3deg) rotateX(1deg) scale(1.02);
    }

    .interface-header {
        padding: 12px;
    }

    .search-bar {
        padding: 6px 12px;
    }

    .search-bar span {
        font-size: 12px;
    }

    .interface-content {
        padding: 15px;
    }

    .car-listing {
        padding: 12px;
        margin-bottom: 12px;
        gap: 12px;
    }

    .car-listing .car-image {
        width: 50px;
        height: 38px;
    }

    .car-listing .car-info h4 {
        font-size: 12px;
    }

    .car-listing .car-info p {
        font-size: 14px;
    }


    
    .modal-content {
        margin: 10px;
        max-width: 95%;
        max-height: 95vh;
        padding: 10px;
        border-radius: 12px;
    }
    
    .modal-content img {
        max-height: calc(90vh - 20px);
    }
    
    .close-modal {
        top: 10px;
        right: 10px;
        width: 42px;
        height: 42px;
        font-size: 28px;
    }
    
    .legal-modal {
        max-width: 95%;
        margin: 2% auto;
        width: 92%;
        max-height: 95vh;
        border-radius: 16px;
    }
    
    .legal-modal .modal-header {
        padding: 1.2rem 1rem 0.8rem;
    }
    
    .legal-modal .modal-header h2 {
        font-size: 1.3rem;
    }
    
    .legal-content {
        padding: 1.5rem;
    }
    
    .legal-text h3 {
        font-size: 1.3rem;
    }
    
    .legal-text h4 {
        font-size: 1.1rem;
    }
    
    .legal-text p,
    .legal-text li {
        font-size: 0.9rem;
    }

    .contact-content {
        grid-template-columns: 1fr;
    }
    
    .corporate-form .form-row {
        grid-template-columns: 1fr;
        gap: 15px;
    }
    
    .corporate-form {
        padding: 20px;
        gap: 20px;
    }
    
    .video-container {
        max-width: 95%;
    }
    
    .video-wrapper {
        border-radius: 12px;
    }
    
    .video-wrapper video {
        border-radius: 12px;
    }

    .footer-content {
        grid-template-columns: 1fr;
        text-align: center;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 15px;
    }
    
    .screenshots {
        padding: 40px 0;
        position: relative;
    }
    
    .screenshots::after {
        content: '';
        position: absolute;
        top: 0;
        right: 0;
        bottom: 0;
        width: 25px;
        background: linear-gradient(90deg, transparent, #0f0f0f);
        pointer-events: none;
        z-index: 1;
    }
    
    .screenshots::before {
        content: '←';
        position: absolute;
        top: 50%;
        right: 30px;
        transform: translateY(-50%);
        color: #f87171;
        font-size: 1rem;
        font-weight: 600;
        pointer-events: none;
        z-index: 2;
        opacity: var(--indicator-opacity, 0.8);
        animation: slideIndicate 2s ease-in-out infinite;
        transition: opacity 0.3s ease;
    }

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

    .hero-description {
        font-size: 1rem;
    }

    .hero-image {
        display: none;
    }

    .section-header h2 {
        font-size: 2rem;
    }

    .feature-card {
        padding: 2rem;
    }

    .download-buttons {
        flex-direction: column;
        align-items: center;
    }

    .download-btn {
        min-width: 250px;
    }
    
    .interface-3d-container {
        height: 280px;
        perspective: 600px;
    }

    .interface-screen {
        width: 180px;
        height: 300px;
        transform: rotateY(-2deg) rotateX(1deg);
    }

    .interface-screen:hover {
        transform: rotateY(-2deg) rotateX(1deg) scale(1.02);
    }

    .interface-header {
        padding: 10px;
    }

    .search-bar {
        padding: 5px 10px;
    }

    .search-bar span {
        font-size: 11px;
    }

    .interface-content {
        padding: 12px;
    }

    .car-listing {
        padding: 10px;
        margin-bottom: 10px;
        gap: 10px;
    }

    .car-listing .car-image {
        width: 40px;
        height: 30px;
    }

    .car-listing .car-info h4 {
        font-size: 11px;
    }

    .car-listing .car-info p {
        font-size: 12px;
    }

    .screenshots-grid {
        display: flex;
        overflow-x: auto;
        gap: 0.8rem;
        padding: 0 0.5rem;
        scroll-snap-type: x mandatory;
        -webkit-overflow-scrolling: touch;
    }
    
    .screenshots-grid::-webkit-scrollbar {
        height: 6px;
    }
    
    .screenshots-grid::-webkit-scrollbar-track {
        background: #2a2a2a;
        border-radius: 3px;
    }
    
    .screenshots-grid::-webkit-scrollbar-thumb {
        background: #ef4444;
        border-radius: 3px;
    }
    
    .screenshots-grid::-webkit-scrollbar-thumb:hover {
        background: #dc2626;
    }

    .screenshot-item {
        flex: 0 0 180px;
        max-width: 180px;
        height: 320px;
        scroll-snap-align: start;
    }
    
    .screenshot-overlay {
        transform: translateY(0);
        opacity: 0.9;
        background: linear-gradient(transparent, rgba(0, 0, 0, 0.9));
    }
    
    /* Legal Modal for small screens */
    .legal-modal {
        max-width: 98%;
        margin: 1% auto;
        width: 95%;
        max-height: 98vh;
        border-radius: 12px;
    }
    
    .legal-modal .modal-header {
        padding: 1rem 0.8rem 0.5rem;
    }
    
    .legal-modal .modal-header h2 {
        font-size: 1.2rem;
        margin-bottom: 0;
    }
    
    .legal-content {
        padding: 1rem;
    }
    
    .legal-text h3 {
        font-size: 1.2rem;
        margin-bottom: 0.8rem;
    }
    
    .legal-text h4 {
        font-size: 1rem;
        margin: 1.2rem 0 0.6rem 0;
    }
    
    .legal-text p,
    .legal-text li {
        font-size: 0.85rem;
        margin-bottom: 0.8rem;
    }
    
    .legal-text ul {
        margin: 0.8rem 0;
        padding-left: 1.2rem;
    }
    
    .legal-text li {
        margin-bottom: 0.5rem;
    }
    
    .legal-text ul ul {
        margin-left: 0.8rem;
        margin-top: 0.4rem;
    }
    
    .legal-text ul ul li {
        margin-bottom: 0.25rem;
        font-size: 0.8rem;
    }
    
    .legal-text p:last-child {
        padding: 0.8rem;
        font-size: 0.85rem;
        margin-bottom: 0;
    }
    
    .close-modal {
        top: 8px;
        right: 8px;
        width: 40px;
        height: 40px;
        font-size: 26px;
    }
}

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

.fade-in-up {
    animation: fadeInUp 0.6s ease-out;
}

/* Scroll Animations */
.scroll-animate {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.6s ease;
}

.scroll-animate.active {
    opacity: 1;
    transform: translateY(0);
} 