/* =============================================
   VINSPOT! PRODUCT PAGE STYLES
   ============================================= */

/* Variables */
:root {
    --vs-primary: #f97316;
    --vs-primary-dark: #ea580c;
    --vs-secondary: #6366f1;
    --vs-accent: #22c55e;
}

/* Hero Section */
.vs-hero {
    padding: 120px 5% 80px;
    position: relative;
    z-index: 1;
    text-align: center;
}

.vs-hero-content {
    max-width: 900px;
    margin: 0 auto;
}

.vs-hero-branding {
    display: inline-flex;
    align-items: center;
    gap: 16px;
    background: rgba(249, 115, 22, 0.1);
    border: 1px solid rgba(249, 115, 22, 0.3);
    padding: 12px 24px;
    border-radius: 60px;
    margin-bottom: 2rem;
}

.vs-logo-box {
    background: linear-gradient(135deg, #f97316 0%, #f59e0b 100%);
    color: #0a0e17;
    padding: 8px 12px;
    border-radius: 8px;
    font-family: 'Orbitron', sans-serif;
    font-size: 1rem;
    font-weight: 700;
    letter-spacing: 1px;
}

.vs-logo-text {
    display: flex;
    flex-direction: column;
    text-align: left;
}

.vs-logo-title {
    font-family: 'Orbitron', sans-serif;
    font-size: 1.1rem;
    font-weight: 600;
    color: #f97316;
    letter-spacing: 2px;
    text-transform: uppercase;
}

.vs-logo-subtitle {
    font-family: 'Rajdhani', sans-serif;
    font-size: 0.85rem;
    color: #94a3b8;
}

.vs-hero-headline {
    font-family: 'Orbitron', sans-serif;
    font-size: clamp(2.5rem, 6vw, 4rem);
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 1.5rem;
    color: #ffffff;
}

.vs-highlight {
    background: linear-gradient(135deg, #f97316 0%, #f59e0b 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.vs-hero-description {
    font-size: 1.25rem;
    color: #94a3b8;
    max-width: 700px;
    margin: 0 auto 2.5rem;
    line-height: 1.7;
}

.vs-hero-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
    margin-bottom: 2rem;
}

.vs-hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    padding: 8px 16px;
    border-radius: 20px;
    font-family: 'Rajdhani', sans-serif;
    font-size: 0.9rem;
    color: #94a3b8;
}

.vs-badge-icon {
    font-size: 1.1rem;
}

/* Buttons */
.vs-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 1rem 2rem;
    border-radius: 8px;
    font-family: 'Rajdhani', sans-serif;
    font-weight: 600;
    font-size: 1rem;
    letter-spacing: 1px;
    text-transform: uppercase;
    text-decoration: none;
    transition: all 0.3s ease;
    cursor: pointer;
    border: none;
}

.vs-btn-primary {
    background: linear-gradient(135deg, #f97316 0%, #f59e0b 100%);
    color: #0a0e17;
}

.vs-btn-primary:hover {
    box-shadow: 0 0 30px rgba(249, 115, 22, 0.4);
    transform: translateY(-2px);
}

.vs-btn-secondary {
    background: transparent;
    color: #ffffff;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.vs-btn-secondary:hover {
    border-color: #f97316;
    color: #f97316;
}

.vs-btn-large {
    padding: 1.25rem 2.5rem;
    font-size: 1.1rem;
}

/* Section Styles */
.vs-section-header {
    text-align: center;
    margin-bottom: 4rem;
}

.vs-section-tag {
    font-family: 'Rajdhani', sans-serif;
    font-size: 0.9rem;
    font-weight: 600;
    color: #f97316;
    letter-spacing: 3px;
    text-transform: uppercase;
    margin-bottom: 1rem;
    display: block;
}

.vs-section-title {
    font-family: 'Orbitron', sans-serif;
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 700;
    margin-bottom: 1rem;
    color: #ffffff;
}

.vs-section-subtitle {
    color: #94a3b8;
    font-size: 1.1rem;
    max-width: 600px;
    margin: 0 auto;
}

/* Demo Video Section */
.vs-demo-section {
    padding: 80px 5%;
    background: linear-gradient(180deg, transparent, rgba(249, 115, 22, 0.02), transparent);
}

.vs-demo-container {
    max-width: 1000px;
    margin: 0 auto;
}

.vs-video-wrapper {
    position: relative;
    padding-bottom: 56.25%;
    border-radius: 16px;
    overflow: hidden;
    border: 1px solid rgba(249, 115, 22, 0.2);
    background: rgba(15, 23, 42, 0.8);
}

.vs-video-placeholder {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, rgba(249, 115, 22, 0.1) 0%, rgba(15, 23, 42, 0.9) 100%);
    cursor: pointer;
    transition: all 0.3s ease;
}

.vs-video-placeholder:hover {
    background: linear-gradient(135deg, rgba(249, 115, 22, 0.2) 0%, rgba(15, 23, 42, 0.8) 100%);
}

.vs-play-button {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #f97316 0%, #f59e0b 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1rem;
    transition: all 0.3s ease;
}

.vs-video-placeholder:hover .vs-play-button {
    transform: scale(1.1);
    box-shadow: 0 0 40px rgba(249, 115, 22, 0.5);
}

.vs-play-button svg {
    fill: #0a0e17;
    margin-left: 4px;
}

.vs-video-placeholder span {
    font-family: 'Rajdhani', sans-serif;
    font-size: 1.1rem;
    color: #ffffff;
    letter-spacing: 1px;
}

/* Problem Section */
.vs-problem-section {
    padding: 80px 5%;
}

.vs-problem-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    max-width: 1000px;
    margin: 0 auto;
}

@media (max-width: 768px) {
    .vs-problem-grid {
        grid-template-columns: 1fr;
    }
}

.vs-problem-card {
    background: rgba(239, 68, 68, 0.05);
    border: 1px solid rgba(239, 68, 68, 0.2);
    border-radius: 12px;
    padding: 2rem;
    text-align: center;
}

.vs-problem-icon {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.vs-problem-card h3 {
    font-family: 'Orbitron', sans-serif;
    font-size: 1.25rem;
    font-weight: 600;
    color: #ef4444;
    margin-bottom: 0.75rem;
}

.vs-problem-card p {
    color: #94a3b8;
    font-size: 0.95rem;
    line-height: 1.6;
}

/* Solution Section */
.vs-solution-section {
    padding: 80px 5%;
    background: rgba(15, 23, 42, 0.4);
}

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

@media (max-width: 900px) {
    .vs-solution-container {
        grid-template-columns: 1fr;
    }
}

.vs-solution-content {
    text-align: left;
}

.vs-solution-content .vs-section-tag {
    text-align: left;
}

.vs-solution-content .vs-section-title {
    text-align: left;
}

.vs-solution-description {
    color: #94a3b8;
    font-size: 1.1rem;
    line-height: 1.7;
    margin-bottom: 2rem;
}

.vs-solution-benefits {
    list-style: none;
    padding: 0;
    margin: 0 0 2rem 0;
}

.vs-solution-benefits li {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 1rem;
    color: #ffffff;
    font-size: 1rem;
}

.vs-check {
    color: #22c55e;
    font-weight: bold;
    font-size: 1.2rem;
}

/* Browser Mockup */
.vs-browser-mockup {
    background: #1e293b;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.4);
}

.vs-browser-header {
    background: #0f172a;
    padding: 12px 16px;
    display: flex;
    align-items: center;
    gap: 12px;
}

.vs-browser-dots {
    display: flex;
    gap: 6px;
}

.vs-browser-dots span {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: #334155;
}

.vs-browser-dots span:first-child { background: #ef4444; }
.vs-browser-dots span:nth-child(2) { background: #f59e0b; }
.vs-browser-dots span:last-child { background: #22c55e; }

.vs-browser-url {
    flex: 1;
    background: #334155;
    padding: 6px 12px;
    border-radius: 6px;
    font-family: monospace;
    font-size: 0.8rem;
    color: #94a3b8;
}

.vs-browser-content {
    padding: 20px;
}

.vs-auction-preview {
    background: #0f172a;
    border-radius: 8px;
    padding: 20px;
    position: relative;
}

.vs-vehicle-info {
    margin-bottom: 12px;
}

.vs-vehicle-year {
    color: #94a3b8;
    font-size: 0.9rem;
}

.vs-vehicle-name {
    display: block;
    font-family: 'Orbitron', sans-serif;
    font-size: 1.25rem;
    color: #ffffff;
    font-weight: 600;
}

.vs-vin-row {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 16px;
}

.vs-vin-label {
    color: #64748b;
    font-size: 0.85rem;
}

.vs-vin-number {
    font-family: monospace;
    color: #94a3b8;
    font-size: 0.85rem;
}

.vs-spot-button {
    background: linear-gradient(135deg, #f97316 0%, #f59e0b 100%);
    color: #0a0e17;
    border: none;
    padding: 4px 10px;
    border-radius: 4px;
    font-family: 'Orbitron', sans-serif;
    font-size: 0.75rem;
    font-weight: 700;
    cursor: pointer;
    animation: vs-pulse 2s infinite;
}

@keyframes vs-pulse {
    0%, 100% { box-shadow: 0 0 0 0 rgba(249, 115, 22, 0.4); }
    50% { box-shadow: 0 0 0 8px rgba(249, 115, 22, 0); }
}

.vs-popup-preview {
    background: #1e293b;
    border: 1px solid rgba(34, 197, 94, 0.3);
    border-radius: 8px;
    overflow: hidden;
}

.vs-popup-header {
    background: #22c55e;
    padding: 8px 12px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.vs-popup-logo {
    background: #0a0e17;
    color: #22c55e;
    padding: 2px 6px;
    border-radius: 4px;
    font-family: 'Orbitron', sans-serif;
    font-size: 0.7rem;
    font-weight: 700;
}

.vs-popup-header span {
    font-family: 'Rajdhani', sans-serif;
    font-size: 0.85rem;
    color: #0a0e17;
    font-weight: 600;
}

.vs-popup-data {
    padding: 12px;
}

.vs-data-row {
    display: flex;
    justify-content: space-between;
    padding: 6px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    font-size: 0.85rem;
}

.vs-data-row:last-child {
    border-bottom: none;
}

.vs-data-row span:first-child {
    color: #94a3b8;
}

.vs-value {
    font-family: 'Orbitron', sans-serif;
    color: #ffffff;
    font-weight: 600;
}

.vs-value.vs-highlight-green {
    color: #22c55e;
}

/* Platforms Section */
.vs-platforms-section {
    padding: 80px 5%;
}

.vs-platforms-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1rem;
    max-width: 800px;
    margin: 0 auto;
}

@media (max-width: 600px) {
    .vs-platforms-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

.vs-platform-card {
    background: rgba(15, 23, 42, 0.6);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 8px;
    padding: 1.5rem 1rem;
    text-align: center;
    transition: all 0.3s ease;
}

.vs-platform-card:hover {
    border-color: rgba(249, 115, 22, 0.3);
    transform: translateY(-3px);
}

.vs-platform-name {
    font-family: 'Rajdhani', sans-serif;
    font-size: 1rem;
    font-weight: 600;
    color: #ffffff;
}

/* How To Section */
.vs-howto-section {
    padding: 80px 5%;
    background: linear-gradient(180deg, transparent, rgba(249, 115, 22, 0.02), transparent);
}

.vs-howto-steps {
    display: flex;
    align-items: flex-start;
    justify-content: center;
    gap: 0;
    max-width: 1200px;
    margin: 0 auto;
    flex-wrap: wrap;
}

.vs-howto-step {
    flex: 1;
    min-width: 180px;
    max-width: 220px;
    text-align: center;
    padding: 0 1rem;
}

.vs-step-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #f97316 0%, #f59e0b 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1rem;
}

.vs-step-icon span {
    font-family: 'Orbitron', sans-serif;
    font-size: 1.5rem;
    font-weight: 700;
    color: #0a0e17;
}

.vs-howto-step h3 {
    font-family: 'Orbitron', sans-serif;
    font-size: 1rem;
    font-weight: 600;
    color: #ffffff;
    margin-bottom: 0.5rem;
}

.vs-howto-step p {
    color: #94a3b8;
    font-size: 0.9rem;
    line-height: 1.5;
}

.vs-howto-connector {
    width: 40px;
    height: 2px;
    background: linear-gradient(90deg, transparent, #f97316, transparent);
    margin-top: 30px;
}

@media (max-width: 900px) {
    .vs-howto-connector {
        display: none;
    }
    .vs-howto-steps {
        gap: 2rem;
    }
}

/* IME Integration Section */
.vs-ime-section {
    padding: 80px 5%;
    background: rgba(34, 197, 94, 0.03);
    text-align: center;
}

.vs-ime-container {
    max-width: 700px;
    margin: 0 auto;
}

.vs-ime-badge {
    display: inline-flex;
    align-items: center;
    gap: 16px;
    margin-bottom: 2rem;
}

.vs-ime-logo {
    background: #22c55e;
    color: #0a0e17;
    padding: 12px 18px;
    border-radius: 10px;
    font-family: 'Orbitron', sans-serif;
    font-size: 1.25rem;
    font-weight: 700;
}

.vs-plus {
    font-size: 2rem;
    color: #64748b;
}

.vs-vinspot-logo {
    background: linear-gradient(135deg, #f97316 0%, #f59e0b 100%);
    color: #0a0e17;
    padding: 12px 16px;
    border-radius: 10px;
    font-family: 'Orbitron', sans-serif;
    font-size: 1.25rem;
    font-weight: 700;
}

.vs-ime-headline {
    font-family: 'Orbitron', sans-serif;
    font-size: 2rem;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 1rem;
}

.vs-ime-description {
    color: #94a3b8;
    font-size: 1.1rem;
    line-height: 1.7;
    margin-bottom: 2rem;
}

.vs-ime-features {
    display: flex;
    justify-content: center;
    gap: 2rem;
    flex-wrap: wrap;
    margin-bottom: 2rem;
}

.vs-ime-feature {
    display: flex;
    align-items: center;
    gap: 8px;
    color: #ffffff;
}

/* Testimonial Section */
.vs-testimonial-section {
    padding: 80px 5%;
}

.vs-testimonial-container {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

.vs-quote-icon {
    font-family: Georgia, serif;
    font-size: 6rem;
    color: #f97316;
    opacity: 0.3;
    line-height: 0.5;
    margin-bottom: 1rem;
}

.vs-quote {
    font-size: 1.5rem;
    font-style: italic;
    color: #ffffff;
    line-height: 1.6;
    margin-bottom: 2rem;
}

.vs-testimonial-author {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
}

.vs-author-avatar {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, #f97316 0%, #f59e0b 100%);
    color: #0a0e17;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: 'Orbitron', sans-serif;
    font-weight: 700;
}

.vs-author-info {
    text-align: left;
}

.vs-author-name {
    display: block;
    font-family: 'Orbitron', sans-serif;
    font-size: 1rem;
    font-weight: 600;
    color: #ffffff;
}

.vs-author-title {
    display: block;
    color: #94a3b8;
    font-size: 0.9rem;
}

/* CTA Section */
.vs-cta-section {
    padding: 100px 5%;
    background: linear-gradient(180deg, rgba(249, 115, 22, 0.05) 0%, transparent 100%);
    text-align: center;
}

.vs-cta-content {
    max-width: 700px;
    margin: 0 auto;
}

.vs-cta-headline {
    font-family: 'Orbitron', sans-serif;
    font-size: clamp(2rem, 4vw, 2.75rem);
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 1rem;
}

.vs-cta-description {
    color: #94a3b8;
    font-size: 1.1rem;
    margin-bottom: 2rem;
}

.vs-cta-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
    margin-bottom: 1.5rem;
}

.vs-cta-note {
    color: #64748b;
    font-size: 0.9rem;
}

/* Mobile Responsive */
@media (max-width: 600px) {
    .vs-hero-branding {
        flex-direction: column;
        text-align: center;
    }
    
    .vs-logo-text {
        text-align: center;
    }
    
    .vs-ime-badge {
        flex-direction: column;
        gap: 8px;
    }
    
    .vs-plus {
        transform: rotate(90deg);
    }
}
