/* =============================================
   IME PRODUCT PAGE STYLES
   ============================================= */

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

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

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

.ime-logo-box {
    background: #22c55e;
    color: #0a0e17;
    padding: 8px 14px;
    border-radius: 8px;
    font-family: 'Orbitron', sans-serif;
    font-size: 1rem;
    font-weight: 700;
    letter-spacing: 1px;
}

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

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

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

.ime-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;
}

.ime-highlight {
    color: #22c55e;
}

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

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

.ime-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;
}

.ime-btn-primary {
    background: #22c55e;
    color: #0a0e17;
}

.ime-btn-primary:hover {
    background: #16a34a;
    box-shadow: 0 0 30px rgba(34, 197, 94, 0.4);
    transform: translateY(-2px);
}

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

.ime-btn-secondary:hover {
    border-color: #22c55e;
    color: #22c55e;
}

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

.ime-hero-stats {
    display: flex;
    justify-content: center;
    gap: 4rem;
    flex-wrap: wrap;
}

.ime-stat {
    display: flex;
    flex-direction: column;
}

.ime-stat-number {
    font-family: 'Orbitron', sans-serif;
    font-size: 2.5rem;
    font-weight: 700;
    color: #22c55e;
}

.ime-stat-label {
    font-family: 'Rajdhani', sans-serif;
    font-size: 0.9rem;
    color: #94a3b8;
    text-transform: uppercase;
    letter-spacing: 1px;
}

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

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

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

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

/* Video Section */
.ime-video-section {
    padding: 80px 5%;
    background: linear-gradient(180deg, transparent, rgba(34, 197, 94, 0.02), transparent);
}

.ime-video-container {
    max-width: 1000px;
    margin: 0 auto;
}

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

.ime-video-wrapper iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.ime-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(34, 197, 94, 0.1) 0%, rgba(15, 23, 42, 0.9) 100%);
    cursor: pointer;
    transition: all 0.3s ease;
}

.ime-video-placeholder:hover {
    background: linear-gradient(135deg, rgba(34, 197, 94, 0.2) 0%, rgba(15, 23, 42, 0.8) 100%);
}

.ime-video-placeholder:hover .ime-play-button {
    transform: scale(1.1);
    box-shadow: 0 0 40px rgba(34, 197, 94, 0.5);
}

.ime-play-button {
    width: 80px;
    height: 80px;
    background: #22c55e;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1rem;
    transition: all 0.3s ease;
}

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

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

/* Features Section */
.ime-features-section {
    padding: 80px 5%;
}

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

@media (max-width: 900px) {
    .ime-features-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 600px) {
    .ime-features-grid {
        grid-template-columns: 1fr;
    }
}

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

.ime-feature-card:hover {
    border-color: rgba(34, 197, 94, 0.3);
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

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

.ime-feature-card h3 {
    font-family: 'Orbitron', sans-serif;
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 0.75rem;
    color: #ffffff;
}

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

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

.ime-screenshots-container {
    max-width: 1100px;
    margin: 0 auto;
}

.ime-screenshot-tabs {
    display: flex;
    justify-content: center;
    gap: 0.5rem;
    margin-bottom: 2rem;
    flex-wrap: wrap;
}

.ime-tab {
    background: transparent;
    border: 1px solid rgba(255, 255, 255, 0.1);
    color: #94a3b8;
    padding: 0.75rem 1.5rem;
    border-radius: 8px;
    font-family: 'Rajdhani', sans-serif;
    font-size: 1rem;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
}

.ime-tab:hover {
    border-color: rgba(34, 197, 94, 0.3);
    color: #ffffff;
}

.ime-tab.active {
    background: #22c55e;
    border-color: #22c55e;
    color: #0a0e17;
}

.ime-screenshot-display {
    text-align: center;
}

.ime-screenshot-frame {
    background: rgba(15, 23, 42, 0.8);
    border: 1px solid rgba(34, 197, 94, 0.2);
    border-radius: 12px;
    overflow: hidden;
    margin-bottom: 1.5rem;
}

.ime-screenshot-placeholder {
    padding: 100px 20px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    min-height: 400px;
}

.ime-screenshot-placeholder span {
    font-family: 'Orbitron', sans-serif;
    font-size: 1.5rem;
    color: #22c55e;
    margin-bottom: 0.5rem;
}

.ime-screenshot-placeholder p {
    color: #94a3b8;
}

.ime-screenshot-frame img {
    width: 100%;
    height: auto;
    display: block;
}

.ime-screenshot-caption h4 {
    font-family: 'Orbitron', sans-serif;
    font-size: 1.25rem;
    color: #ffffff;
    margin-bottom: 0.5rem;
}

.ime-screenshot-caption p {
    color: #94a3b8;
    max-width: 600px;
    margin: 0 auto;
}

/* VINSpot! Section on IME Page */
.ime-vinspot-section {
    padding: 80px 5%;
    background: linear-gradient(135deg, rgba(249, 115, 22, 0.03) 0%, rgba(15, 23, 42, 0.5) 100%);
    border-top: 1px solid rgba(249, 115, 22, 0.1);
    border-bottom: 1px solid rgba(249, 115, 22, 0.1);
}

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

@media (max-width: 900px) {
    .ime-vinspot-container {
        grid-template-columns: 1fr;
        text-align: center;
    }
}

.ime-vinspot-badge {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    background: rgba(249, 115, 22, 0.1);
    border: 1px solid rgba(249, 115, 22, 0.3);
    padding: 8px 16px;
    border-radius: 30px;
    margin-bottom: 1.5rem;
}

.ime-vinspot-logo {
    background: linear-gradient(135deg, #f97316 0%, #f59e0b 100%);
    color: #0a0e17;
    padding: 4px 8px;
    border-radius: 6px;
    font-family: 'Orbitron', sans-serif;
    font-size: 0.8rem;
    font-weight: 700;
}

.ime-vinspot-label {
    font-family: 'Rajdhani', sans-serif;
    font-size: 0.85rem;
    color: #f97316;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.ime-vinspot-headline {
    font-family: 'Orbitron', sans-serif;
    font-size: clamp(2rem, 4vw, 2.5rem);
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 0.5rem;
}

.ime-vinspot-tagline {
    font-family: 'Rajdhani', sans-serif;
    font-size: 1.1rem;
    color: #f97316;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 1rem;
}

.ime-vinspot-description {
    color: #94a3b8;
    font-size: 1.05rem;
    line-height: 1.7;
    margin-bottom: 1.5rem;
}

.ime-vinspot-features {
    display: flex;
    flex-wrap: wrap;
    gap: 1.5rem;
    margin-bottom: 2rem;
}

@media (max-width: 900px) {
    .ime-vinspot-features {
        justify-content: center;
    }
}

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

.ime-vs-icon {
    font-size: 1.25rem;
}

.ime-btn-vinspot {
    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;
    background: linear-gradient(135deg, #f97316 0%, #f59e0b 100%);
    color: #0a0e17;
}

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

/* Visual Mockup */
.ime-vinspot-visual {
    display: flex;
    justify-content: center;
}

.ime-vs-mockup {
    background: #1e293b;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.4);
    width: 100%;
    max-width: 400px;
}

.ime-vs-browser-bar {
    background: #0f172a;
    padding: 10px 14px;
    display: flex;
    gap: 6px;
}

.ime-vs-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: #334155;
}

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

.ime-vs-screen {
    padding: 20px;
    background: #0f172a;
}

.ime-vs-vin-demo {
    display: flex;
    align-items: center;
    justify-content: space-between;
    background: #1e293b;
    padding: 12px 16px;
    border-radius: 8px;
    margin-bottom: 16px;
}

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

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

@keyframes ime-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); }
}

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

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

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

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

.ime-vs-popup-content {
    padding: 12px;
}

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

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

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

.ime-vs-row span:last-child {
    font-family: 'Orbitron', sans-serif;
    color: #ffffff;
    font-weight: 600;
}

.ime-vs-row.ime-vs-highlight span:last-child {
    color: #22c55e;
}

/* Demo Videos Section */
.ime-demos-section {
    padding: 80px 5%;
}

.ime-demos-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
    max-width: 1200px;
    margin: 0 auto;
}

@media (max-width: 1000px) {
    .ime-demos-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 600px) {
    .ime-demos-grid {
        grid-template-columns: 1fr;
    }
}

.ime-demo-card {
    background: rgba(15, 23, 42, 0.6);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 12px;
    overflow: hidden;
    transition: all 0.3s ease;
    cursor: pointer;
}

.ime-demo-card:hover {
    border-color: rgba(34, 197, 94, 0.3);
    transform: translateY(-5px);
}

.ime-demo-thumbnail {
    position: relative;
    padding: 50px 20px;
    background: linear-gradient(135deg, rgba(34, 197, 94, 0.1) 0%, rgba(15, 23, 42, 0.8) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
}

.ime-play-icon {
    width: 50px;
    height: 50px;
    background: rgba(34, 197, 94, 0.2);
    border: 2px solid #22c55e;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.ime-play-icon svg {
    fill: #22c55e;
    margin-left: 3px;
}

.ime-demo-card:hover .ime-play-icon {
    background: #22c55e;
}

.ime-demo-card:hover .ime-play-icon svg {
    fill: #0a0e17;
}

.ime-demo-duration {
    position: absolute;
    bottom: 10px;
    right: 10px;
    background: rgba(0, 0, 0, 0.7);
    color: #ffffff;
    padding: 4px 8px;
    border-radius: 4px;
    font-family: 'Rajdhani', sans-serif;
    font-size: 0.8rem;
}

.ime-demo-info {
    padding: 1.25rem;
}

.ime-demo-info h4 {
    font-family: 'Orbitron', sans-serif;
    font-size: 0.95rem;
    font-weight: 600;
    color: #ffffff;
    margin-bottom: 0.5rem;
}

.ime-demo-info p {
    color: #94a3b8;
    font-size: 0.85rem;
}

/* How It Works Section */
.ime-how-section {
    padding: 80px 5%;
    background: linear-gradient(180deg, transparent, rgba(34, 197, 94, 0.02), transparent);
}

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

.ime-step {
    flex: 1;
    min-width: 200px;
    max-width: 250px;
    text-align: center;
    padding: 0 1rem;
}

.ime-step-number {
    font-family: 'Orbitron', sans-serif;
    font-size: 3rem;
    font-weight: 800;
    color: #22c55e;
    opacity: 0.3;
    margin-bottom: 1rem;
}

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

.ime-step p {
    color: #94a3b8;
    font-size: 0.9rem;
    line-height: 1.6;
}

.ime-step-connector {
    width: 60px;
    height: 2px;
    background: linear-gradient(90deg, transparent, #22c55e, transparent);
    margin-top: 2rem;
}

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

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

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

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

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

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

.ime-author-avatar {
    width: 50px;
    height: 50px;
    background: #22c55e;
    color: #0a0e17;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: 'Orbitron', sans-serif;
    font-weight: 700;
}

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

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

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

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

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

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

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

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

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

/* Mobile Responsive */
@media (max-width: 600px) {
    .ime-hero-branding {
        flex-direction: column;
        text-align: center;
    }
    
    .ime-logo-text {
        text-align: center;
    }
    
    .ime-hero-stats {
        gap: 2rem;
    }
    
    .ime-stat-number {
        font-size: 2rem;
    }
}
