/* ============================================
   GLOBAL STYLES & RESET
   ============================================ */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    /* Dark Theme Colors - Matching Browse Inventory */
    --primary-color: #1a202c;
    --secondary-color: #00d4ff;
    --accent-color: #0ea5e9;
    --text-dark: #ffffff;
    --text-light: #e2e8f0;
    --text-muted: #94a3b8;
    --bg-dark: #0f172a;
    --bg-card: #2d3748;
    --bg-light: #1a202c;
    --bg-white: #1e293b;
    --border-color: rgba(0, 212, 255, 0.2);
    --success-color: #10b981;
    --gradient-primary: linear-gradient(135deg, #0f172a 0%, #1e293b 100%);
    --gradient-secondary: linear-gradient(135deg, #1a202c 0%, #2d3748 100%);
    --gradient-accent: linear-gradient(135deg, #00d4ff 0%, #0ea5e9 100%);
    --shadow-sm: 0 1px 2px 0 rgba(0, 0, 0, 0.3);
    --shadow-md: 0 4px 6px -1px rgba(0, 0, 0, 0.4);
    --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.5);
    --shadow-xl: 0 20px 25px -5px rgba(0, 0, 0, 0.6);
    --shadow-cyan: 0 4px 12px rgba(0, 212, 255, 0.4);
    --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    color: var(--text-light);
    line-height: 1.6;
    background-color: var(--bg-dark);
    overflow-x: hidden;
}

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

/* ============================================
   NAVIGATION
   ============================================ */
.navbar {
    position: sticky;
    top: 0;
    background: rgba(26, 32, 44, 0.3);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
    z-index: 1000;
    transition: var(--transition);
}

.navbar.scrolled {
    background: rgba(26, 32, 44, 0.6);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.4);
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 20px;
}

.logo {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--text-dark);
    text-decoration: none;
    transition: var(--transition);
}

.logo-image {
    height: 50px;
    width: auto;
    max-width: 250px;
    object-fit: contain;
}

.logo i {
    font-size: 1.8rem;
    color: var(--secondary-color);
}

.logo:hover {
    opacity: 0.8;
}

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

.nav-menu li {
    position: relative;
}

.nav-menu li a {
    display: block;
    padding: 0.6rem 1rem;
    color: var(--text-dark);
    text-decoration: none;
    font-weight: 500;
    font-size: 0.9rem;
    border-radius: 8px;
    transition: var(--transition);
    white-space: nowrap;
}

.nav-menu li a:hover,
.nav-menu li a.active {
    background: var(--gradient-accent);
    color: white;
}

/* Dropdown Menu */
.nav-menu li.has-dropdown > a {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.nav-menu li.has-dropdown > a i {
    font-size: 0.75rem;
}

.dropdown-menu {
    position: absolute;
    top: 100%;
    left: 0;
    background: var(--bg-card);
    min-width: 220px;
    border-radius: 10px;
    box-shadow: var(--shadow-xl);
    border: 1px solid var(--border-color);
    padding: 0.5rem 0;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: var(--transition);
    z-index: 1000;
}

.nav-menu li.has-dropdown:hover .dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.dropdown-menu li {
    list-style: none;
}

.dropdown-menu li a {
    padding: 0.75rem 1.25rem;
    display: flex;
    align-items: center;
    gap: 0.75rem;
    color: var(--text-light);
    border-radius: 0;
    white-space: nowrap;
}

.dropdown-menu li a i {
    color: var(--secondary-color);
    font-size: 1.1rem;
}

.dropdown-menu li a:hover {
    background: rgba(0, 212, 255, 0.1);
    color: var(--secondary-color);
}
    color: var(--primary-color);
}

.mobile-menu-btn {
    display: none !important;
    background: none;
    border: none;
    font-size: 1.5rem;
    color: #ffffff;
    cursor: pointer;
    padding: 0.5rem;
}

/* ============================================
   HERO SECTION
   ============================================ */
.hero {
    background: var(--gradient-primary);
    color: white;
    padding: 6rem 0 4rem;
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 50%;
    height: 100%;
    background: linear-gradient(135deg, rgba(0, 212, 255, 0.15) 0%, rgba(0, 168, 232, 0.08) 100%);
    border-radius: 0 0 0 100%;
}

.hero-content {
    position: relative;
    z-index: 1;
    max-width: 800px;
}

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

.hero-subtitle {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: var(--secondary-color);
    font-weight: 600;
}

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

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

.hero-stats {
    display: flex;
    gap: 2rem;
    flex-wrap: wrap;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.2);
}

.hero-stats .stat {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.95rem;
}

.hero-stats .stat i {
    color: var(--secondary-color);
    font-size: 1.2rem;
}

/* ============================================
   LOW CREDIT APPROVAL BANNER
   ============================================ */
.low-credit-banner {
    background: linear-gradient(135deg, rgba(45, 55, 72, 0.95) 0%, rgba(26, 32, 44, 0.95) 100%);
    padding: 0.75rem 0;
    color: white;
    border-top: 1px solid rgba(0, 212, 255, 0.2);
    border-bottom: 1px solid rgba(0, 212, 255, 0.2);
}

.credit-banner-content {
    display: flex;
    align-items: center;
    gap: 1rem;
    justify-content: space-between;
    flex-wrap: wrap;
}

.banner-icon {
    font-size: 1.5rem;
    color: rgba(0, 212, 255, 0.8);
}

.banner-text {
    flex: 1;
    min-width: 300px;
}

.banner-text h2 {
    font-size: 1rem;
    font-weight: 600;
    margin-bottom: 0.2rem;
    color: rgba(255, 255, 255, 0.95);
}

.banner-text p {
    font-size: 0.8rem;
    opacity: 0.7;
    line-height: 1.4;
    margin: 0;
    color: rgba(255, 255, 255, 0.85);
}

.banner-cta .btn {
    background: linear-gradient(135deg, #00d4ff 0%, #0ea5e9 100%);
    color: #1a202c;
    font-weight: 600;
    padding: 0.5rem 1rem;
    font-size: 0.8rem;
    box-shadow: 0 2px 8px rgba(0, 212, 255, 0.3);
    border: none;
}

.banner-cta .btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(0, 212, 255, 0.4);
    background: linear-gradient(135deg, #0ea5e9 0%, #0284c7 100%);
}

/* ============================================
   HOW IT WORKS SECTION
   ============================================ */
.how-it-works {
    padding: 5rem 0;
    background: var(--bg-white);
}

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

.section-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 0.5rem;
}

.section-subtitle {
    font-size: 1.125rem;
    color: var(--text-light);
}

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

.step-card {
    background: linear-gradient(135deg, rgba(26, 32, 44, 0.95) 0%, rgba(45, 55, 72, 0.95) 100%);
    backdrop-filter: blur(15px);
    border: 2px solid rgba(0, 212, 255, 0.2);
    border-radius: 20px;
    padding: 2.5rem 2rem;
    text-align: center;
    transition: var(--transition);
    position: relative;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.step-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 212, 255, 0.3);
    border-color: var(--secondary-color);
    background: linear-gradient(135deg, rgba(45, 55, 72, 0.98) 0%, rgba(26, 32, 44, 0.98) 100%);
}

.step-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 1.5rem;
    background: var(--gradient-accent);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    color: white;
    position: relative;
    box-shadow: 0 10px 25px rgba(0, 212, 255, 0.3);
}

.step-number {
    position: absolute;
    top: -10px;
    right: -10px;
    width: 40px;
    height: 40px;
    background: linear-gradient(135deg, #00d4ff 0%, #0ea5e9 100%);
    color: #1a202c;
    border-radius: 50%;
    border: 2px solid rgba(0, 212, 255, 0.5);
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 1.2rem;
    box-shadow: var(--shadow-md);
    transition: all 0.3s ease;
}

/* Glowing animation for step numbers */
@keyframes stepGlow {
    0%, 100% {
        box-shadow: 0 0 10px rgba(0, 212, 255, 0.4),
                    0 0 20px rgba(0, 212, 255, 0.3),
                    0 0 30px rgba(0, 212, 255, 0.2);
        transform: scale(1);
    }
    50% {
        box-shadow: 0 0 20px rgba(0, 212, 255, 0.8),
                    0 0 40px rgba(0, 212, 255, 0.6),
                    0 0 60px rgba(0, 212, 255, 0.4),
                    0 0 80px rgba(0, 212, 255, 0.2);
        transform: scale(1.15);
        border-color: rgba(0, 212, 255, 1);
    }
}

.step-number.glow-active {
    animation: stepGlow 1.5s ease-in-out;
    box-shadow: 0 0 20px rgba(0, 212, 255, 0.8),
                0 0 40px rgba(0, 212, 255, 0.6),
                0 0 60px rgba(0, 212, 255, 0.4);
}

.step-title {
    font-size: 1.5rem;
    font-weight: 600;
    color: #ffffff;
    margin-bottom: 1rem;
    line-height: 1.4;
}

.step-description {
    color: #e2e8f0;
    line-height: 1.7;
    font-size: 1rem;
}

/* ============================================
   BENEFITS SECTION
   ============================================ */
.benefits {
    padding: 5rem 0;
    background: var(--bg-dark);
}

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

.benefit-card {
    background: var(--bg-card);
    padding: 2rem;
    border-radius: 16px;
    text-align: center;
    transition: var(--transition);
    box-shadow: var(--shadow-md);
    border: 1px solid var(--border-color);
}

.benefit-card.highlight-card {
    background: linear-gradient(135deg, #10b981 0%, #059669 100%);
    color: white;
    border: none;
    box-shadow: 0 10px 30px rgba(16, 185, 129, 0.3);
}

.benefit-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-cyan);
    border-color: var(--secondary-color);
}

.benefit-card.highlight-card:hover {
    box-shadow: 0 15px 40px rgba(16, 185, 129, 0.4);
}

.benefit-card i {
    font-size: 3rem;
    color: var(--secondary-color);
    margin-bottom: 1rem;
}

.benefit-card.highlight-card i {
    color: white;
}

.benefit-card h3 {
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 0.75rem;
}

.benefit-card.highlight-card h3 {
    color: white;
}

.benefit-card p {
    color: var(--text-light);
    line-height: 1.6;
}

.benefit-card.highlight-card p {
    color: rgba(255, 255, 255, 0.95);
}

/* Green wave animation */
@keyframes greenWaveIn {
    0% {
        background: var(--bg-card);
        color: var(--text-dark);
        border-color: var(--border-color);
        box-shadow: var(--shadow-md);
    }
    100% {
        background: linear-gradient(135deg, #10b981 0%, #059669 100%);
        color: white;
        border-color: transparent;
        box-shadow: 0 10px 30px rgba(16, 185, 129, 0.4);
    }
}

.benefit-card.green-wave-active {
    animation: greenWaveIn 1.2s ease-in-out forwards;
}

.benefit-card.green-wave-active i {
    color: white !important;
    transition: color 0.6s ease;
}

.benefit-card.green-wave-active h3 {
    color: white !important;
    transition: color 0.6s ease;
}

.benefit-card.green-wave-active p {
    color: rgba(255, 255, 255, 0.95) !important;
    transition: color 0.6s ease;
}

/* ============================================
   TRUSTED PARTNERS SECTION
   ============================================ */
.trusted-partners {
    padding: 2.5rem 0;
    background: var(--bg-white);
    border-top: 1px solid var(--border-color);
    border-bottom: 1px solid var(--border-color);
}

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

.partners-label {
    font-size: 0.8rem;
    font-weight: 600;
    letter-spacing: 2px;
    color: var(--text-light);
    margin-bottom: 1.5rem;
    text-transform: uppercase;
    opacity: 0.7;
}

.partner-logo-container {
    margin-bottom: 1rem;
}

.partner-logo {
    height: 60px;
    width: auto;
    max-width: 250px;
    opacity: 0.95;
    transition: all 0.3s ease;
    filter: drop-shadow(0 2px 8px rgba(0,0,0,0.08));
    display: block;
    margin: 0 auto;
}

.partner-logo:hover {
    opacity: 1;
    transform: scale(1.05);
}

.partner-description {
    font-size: 0.875rem;
    color: var(--text-light);
    font-weight: 500;
    opacity: 0.6;
}

/* ============================================
   TESTIMONIALS SECTION
   ============================================ */
.testimonials {
    padding: 5rem 0;
    background: var(--bg-dark);
}

.testimonials-carousel {
    position: relative;
    max-width: 900px;
    margin: 0 auto;
    padding: 2rem 0;
}

.testimonials-track {
    display: flex;
    overflow: hidden;
    position: relative;
}

.testimonial-card {
    min-width: 100%;
    opacity: 0;
    transform: scale(0.95);
    transition: var(--transition);
    display: none;
    background: var(--bg-card);
    border-radius: 20px;
    padding: 2.5rem;
    box-shadow: var(--shadow-md);
    border: 1px solid var(--border-color);
}

.testimonial-card.active {
    opacity: 1;
    transform: scale(1);
    display: block;
}

.testimonial-rating {
    display: flex;
    gap: 0.25rem;
    margin-bottom: 1.5rem;
    justify-content: center;
}

.testimonial-rating i {
    color: #fbbf24;
    font-size: 1.25rem;
}

.testimonial-text {
    font-size: 1.125rem;
    line-height: 1.8;
    color: var(--text-light);
    margin-bottom: 2rem;
    font-style: italic;
}

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

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

.author-info h4 {
    font-size: 1.125rem;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 0.25rem;
}

.author-info p {
    color: var(--text-light);
    font-size: 0.9rem;
}

.carousel-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: var(--bg-card);
    border: 2px solid var(--border-color);
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: var(--transition);
    z-index: 10;
    color: var(--text-light);
}

.carousel-btn:hover {
    background: var(--secondary-color);
    border-color: var(--secondary-color);
    color: #1a202c;
    box-shadow: var(--shadow-cyan);
}

.prev-btn {
    left: -25px;
}

.next-btn {
    right: -25px;
}

.carousel-dots {
    display: flex;
    justify-content: center;
    gap: 0.5rem;
    margin-top: 2rem;
}

.carousel-dots .dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: var(--border-color);
    cursor: pointer;
    transition: var(--transition);
}

.carousel-dots .dot.active {
    background: var(--secondary-color);
    width: 30px;
    border-radius: 5px;
}

/* ============================================
   QUOTE FORM SECTION
   ============================================ */
.quote-section {
    padding: 5rem 0;
    background: var(--bg-dark);
}

.quote-card {
    max-width: 700px;
    margin: 0 auto;
    background: #ffffff;
    border-radius: 20px;
    padding: 3rem;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
    border: 2px solid rgba(0, 212, 255, 0.2);
}

.quote-header {
    text-align: center;
    margin-bottom: 2rem;
}

.quote-header h2 {
    font-size: 2rem;
    font-weight: 700;
    color: #1a202c;
    margin-bottom: 0.5rem;
}

.quote-header p {
    color: #64748b;
}

.quote-form {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.form-group label {
    font-weight: 500;
    color: #1a202c;
    font-size: 0.95rem;
}

.form-group input,
.form-group select,
.form-group textarea {
    padding: 0.875rem 1rem;
    border: 2px solid #e2e8f0;
    border-radius: 10px;
    font-family: inherit;
    font-size: 1rem;
    transition: var(--transition);
    background: #f8fafc;
    color: #1a202c;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--secondary-color);
    box-shadow: 0 0 0 3px rgba(0, 212, 255, 0.1);
}

.form-group textarea {
    resize: vertical;
    min-height: 100px;
}

/* ============================================
   BUTTONS
   ============================================ */
.btn {
    display: inline-block;
    padding: 0.875rem 2rem;
    font-size: 1rem;
    font-weight: 600;
    text-align: center;
    text-decoration: none;
    border-radius: 10px;
    transition: var(--transition);
    border: none;
    cursor: pointer;
    font-family: inherit;
}

.btn-primary {
    background: var(--gradient-accent);
    color: #1a202c;
    box-shadow: var(--shadow-cyan);
    font-weight: 700;
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(0, 212, 255, 0.5);
    background: linear-gradient(135deg, #0ea5e9 0%, #0284c7 100%);
}

.btn-outline {
    background: transparent;
    color: var(--secondary-color);
    border: 2px solid var(--secondary-color);
}

.btn-outline:hover {
    background: var(--secondary-color);
    color: #1a202c;
    box-shadow: var(--shadow-cyan);
}

.btn-secondary {
    background: linear-gradient(135deg, #10b981 0%, #059669 100%);
    color: white;
    border: none;
    box-shadow: 0 4px 15px rgba(16, 185, 129, 0.3);
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
}

.btn-secondary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(16, 185, 129, 0.4);
    background: linear-gradient(135deg, #059669 0%, #047857 100%);
}

.btn-large {
    padding: 1.125rem 2.5rem;
    font-size: 1.125rem;
}

/* ============================================
   MEDIA FEATURES SECTION - TV & PODCAST
   ============================================ */
.tv-feature-section {
    background: var(--gradient-primary);
    padding: 35px 0;
    position: relative;
    overflow: hidden;
}

.tv-feature-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg width="100" height="100" xmlns="http://www.w3.org/2000/svg"><defs><pattern id="tvgrid" width="50" height="50" patternUnits="userSpaceOnUse"><path d="M 50 0 L 0 0 0 50" fill="none" stroke="rgba(0,212,255,0.05)" stroke-width="1"/></pattern></defs><rect width="100%" height="100%" fill="url(%23tvgrid)"/></svg>');
    opacity: 0.5;
}

.tv-feature-content {
    position: relative;
    z-index: 1;
}

.tv-feature-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(0, 212, 255, 0.2);
    border: 2px solid rgba(0, 212, 255, 0.6);
    padding: 10px 20px;
    border-radius: 50px;
    margin-bottom: 24px;
    animation: tvPulse 3s ease-in-out infinite;
    backdrop-filter: blur(10px);
}

@keyframes tvPulse {
    0%, 100% { box-shadow: 0 0 0 0 rgba(0, 212, 255, 0.6); }
    50% { box-shadow: 0 0 30px 15px rgba(0, 212, 255, 0.2); }
}

.tv-feature-badge i {
    font-size: 1.1rem;
    color: #00d4ff;
    animation: broadcast 2s ease-in-out infinite;
}

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

.tv-feature-badge span {
    color: #ffffff;
    font-weight: 700;
    font-size: 0.75rem;
    letter-spacing: 1.5px;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

/* Media Intro */
.media-intro {
    text-align: center;
    max-width: 950px;
    margin: 0 auto 50px;
    color: white;
    padding: 30px 20px;
    background: rgba(255, 255, 255, 0.03);
    border-radius: 20px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
}

.media-main-title {
    font-size: 2.75rem;
    font-weight: 900;
    margin-bottom: 16px;
    background: linear-gradient(135deg, #00d4ff 0%, #ffffff 50%, #00d4ff 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-align: center;
    letter-spacing: -0.5px;
    text-transform: none;
    line-height: 1.2;
}

.media-main-subtitle {
    font-size: 1.25rem;
    line-height: 1.8;
    color: rgba(255, 255, 255, 0.95);
    text-align: center;
    max-width: 900px;
    margin: 0 auto;
    font-weight: 400;
}

/* Dual Media Grid */
.dual-media-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
    margin-bottom: 40px;
}

.media-feature-card {
    background: white;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 3px 12px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

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

.media-card-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 8px;
    padding: 8px 12px;
    background: white;
    border-bottom: none;
}

.header-left {
    display: flex;
    align-items: center;
    gap: 8px;
    flex: 1;
}

.header-text {
    display: flex;
    flex-direction: column;
}

.header-logo {
    display: flex;
    align-items: center;
    flex-shrink: 0;
}

.header-show-logo {
    height: 26px;
    width: auto;
    display: block;
    filter: drop-shadow(0 1px 3px rgba(0, 0, 0, 0.15));
}

.media-icon {
    width: 35px;
    height: 35px;
    border-radius: 6px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1rem;
    color: white;
    flex-shrink: 0;
}

.tv-icon {
    background: linear-gradient(135deg, #00d4ff, #0088cc);
    box-shadow: 0 5px 20px rgba(0, 212, 255, 0.3);
}

.podcast-icon {
    background: linear-gradient(135deg, #8b5cf6, #6d28d9);
    box-shadow: 0 5px 20px rgba(139, 92, 246, 0.3);
}

.media-card-title {
    font-size: 0.9rem;
    font-weight: 700;
    color: #0a2540;
    margin-bottom: 2px;
}

.media-card-subtitle {
    font-size: 0.7rem;
    color: #6b7280;
    font-weight: 500;
}

/* Media Thumbnails */
.media-video-thumbnail {
    position: relative;
    width: 100%;
    padding-top: 56.25%; /* 16:9 ratio */
    background: #000;
    overflow: hidden;
}

.media-video-thumbnail img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: contain;
    background: #000;
}

.podcast-thumbnail {
    background: linear-gradient(135deg, #8b5cf6 0%, #6d28d9 100%);
}

/* Podcast Embedded Video */
.podcast-embed-iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: none;
    border-radius: 0;
}

/* Podcast Thumbnail Image */
.podcast-thumbnail-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 0;
    display: block;
}

.podcast-thumbnail .media-play-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(0, 0, 0, 0.3);
    border-radius: 0;
    transition: all 0.3s ease;
}

.podcast-thumbnail:hover .media-play-overlay {
    background: rgba(0, 0, 0, 0.5);
}

.podcast-thumbnail .media-play-button {
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 0;
}

.podcast-visual {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
}

.podcast-visual i {
    font-size: 4rem;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 20px;
    display: block;
}

.audio-waves {
    display: flex;
    gap: 8px;
    justify-content: center;
    align-items: center;
    height: 60px;
}

.audio-waves span {
    width: 4px;
    background: rgba(255, 255, 255, 0.8);
    border-radius: 2px;
    animation: audioWave 1.2s ease-in-out infinite;
}

.audio-waves span:nth-child(1) { height: 20px; animation-delay: 0s; }
.audio-waves span:nth-child(2) { height: 40px; animation-delay: 0.1s; }
.audio-waves span:nth-child(3) { height: 60px; animation-delay: 0.2s; }
.audio-waves span:nth-child(4) { height: 40px; animation-delay: 0.3s; }
.audio-waves span:nth-child(5) { height: 20px; animation-delay: 0.4s; }

@keyframes audioWave {
    0%, 100% { height: 20px; }
    50% { height: 60px; }
}

.media-play-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.3);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.media-feature-card:hover .media-play-overlay {
    background: rgba(0, 0, 0, 0.5);
}

.media-play-button {
    width: 70px;
    height: 70px;
    background: rgba(0, 212, 255, 0.95);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.8rem;
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: 0 10px 30px rgba(0, 212, 255, 0.4);
}

.podcast-card .media-play-button {
    background: rgba(139, 92, 246, 0.95);
    box-shadow: 0 10px 30px rgba(139, 92, 246, 0.4);
}

.media-play-button:hover {
    transform: scale(1.15);
    box-shadow: 0 15px 40px rgba(0, 212, 255, 0.6);
}

.podcast-card .media-play-button:hover {
    box-shadow: 0 15px 40px rgba(139, 92, 246, 0.6);
}

.media-play-button i {
    margin-left: 4px;
}

.media-card-content {
    padding: 10px 12px 12px;
}

.media-description {
    font-size: 0.8rem;
    line-height: 1.4;
    color: #6b7280;
    margin-bottom: 10px;
}

.media-cta-button {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    background: linear-gradient(135deg, #00d4ff, #0088cc);
    color: white;
    padding: 7px 14px;
    border-radius: 5px;
    font-weight: 600;
    font-size: 0.75rem;
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: 0 2px 8px rgba(0, 212, 255, 0.3);
}

.podcast-card .media-cta-button {
    background: linear-gradient(135deg, #8b5cf6, #6d28d9);
    box-shadow: 0 5px 15px rgba(139, 92, 246, 0.3);
}

.media-cta-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(0, 212, 255, 0.4);
}

.podcast-card .media-cta-button:hover {
    box-shadow: 0 8px 25px rgba(139, 92, 246, 0.4);
}

/* Podcast CTA Row with Guest Montage */
.podcast-cta-row {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    margin-top: 10px;
}

.podcast-cta-row .media-cta-button {
    flex-shrink: 0;
}

.podcast-guest-montage-inline {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 35px;
}

.guest-montage-image-inline {
    width: 100%;
    height: auto;
    border-radius: 4px;
    opacity: 0.9;
    transition: all 0.3s ease;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.15);
}

.guest-montage-image-inline:hover {
    opacity: 1;
    transform: translateY(-2px);
    box-shadow: 0 4px 10px rgba(139, 92, 246, 0.3);
}

/* eBook Card Styles */
.ebook-icon {
    background: linear-gradient(135deg, #ff6b6b, #c92a2a);
    box-shadow: 0 5px 20px rgba(255, 107, 107, 0.3);
}

.media-ebook-cover {
    position: relative;
    width: 100%;
    padding-top: 56.25%; /* 16:9 ratio to match video thumbnails */
    background: linear-gradient(135deg, #1a1a1a 0%, #0a0a0a 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.ebook-cover-image {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: auto;
    max-width: 50%;
    max-height: 85%;
    height: auto;
    border-radius: 5px;
    box-shadow: 
        0 6px 20px rgba(0, 0, 0, 0.5),
        0 2px 5px rgba(0, 0, 0, 0.3);
    transition: all 0.3s ease;
}

.media-feature-card:hover .ebook-cover-image {
    transform: translate(-50%, -50%) translateY(-5px);
    box-shadow: 
        0 20px 60px rgba(0, 0, 0, 0.6),
        0 4px 12px rgba(0, 0, 0, 0.4);
}

.amazon-badge {
    position: absolute;
    bottom: 10px;
    left: 50%;
    transform: translateX(-50%);
    display: inline-flex;
    align-items: center;
    gap: 5px;
    background: rgba(255, 255, 255, 0.95);
    padding: 5px 10px;
    border-radius: 12px;
    font-weight: 600;
    font-size: 0.7rem;
    color: #0a2540;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
}

.amazon-badge i {
    color: #ff9900;
    font-size: 0.85rem;
}

.ebook-card .media-cta-button {
    background: linear-gradient(135deg, #ff6b6b, #c92a2a);
    box-shadow: 0 5px 15px rgba(255, 107, 107, 0.3);
}

.ebook-card .media-cta-button:hover {
    box-shadow: 0 8px 25px rgba(255, 107, 107, 0.4);
}

/* Triple Media Grid */
.triple-media-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 18px;
    margin-bottom: 25px;
}

/* Trust Stats */
.media-trust-stats {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    margin-bottom: 40px;
}

.trust-stat-item {
    display: flex;
    align-items: center;
    gap: 12px;
    background: rgba(255, 255, 255, 0.05);
    padding: 18px;
    border-radius: 10px;
    border: 1px solid rgba(0, 212, 255, 0.2);
    transition: all 0.3s ease;
}

.trust-stat-item:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(0, 212, 255, 0.4);
    transform: translateY(-3px);
}

.trust-stat-item i {
    font-size: 2rem;
    color: #00d4ff;
}

.trust-stat-item strong {
    display: block;
    font-size: 1.5rem;
    font-weight: 700;
    color: white;
    margin-bottom: 3px;
}

.trust-stat-item span {
    font-size: 0.95rem;
    color: rgba(255, 255, 255, 0.7);
}

/* Quote Section */
.media-quote-section {
    background: rgba(255, 255, 255, 0.05);
    border-left: 4px solid #00d4ff;
    padding: 25px 35px;
    border-radius: 12px;
    margin-bottom: 35px;
    position: relative;
}

.quote-icon {
    display: none;
}

.media-quote {
    font-size: 1.05rem;
    font-style: italic;
    color: rgba(255, 255, 255, 0.95);
    line-height: 1.7;
    margin: 0 0 15px;
}

.quote-attribution {
    color: #00d4ff;
    font-size: 0.95rem;
    font-weight: 600;
    text-align: right;
    margin: 0;
}

.quote-attribution strong {
    font-weight: 700;
}

/* CTA Banner */
.media-cta-banner {
    background: linear-gradient(135deg, rgba(0, 212, 255, 0.15), rgba(0, 168, 232, 0.15));
    border: 2px solid rgba(0, 212, 255, 0.3);
    border-radius: 14px;
    padding: 30px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 25px;
}

.cta-banner-content h3 {
    font-size: 1.6rem;
    color: white;
    margin-bottom: 8px;
    font-weight: 700;
}

.cta-banner-content p {
    font-size: 1.05rem;
    color: rgba(255, 255, 255, 0.85);
}

.cta-banner-buttons {
    display: flex;
    gap: 15px;
}

.btn-outline-white {
    background: transparent;
    border: 2px solid white;
    color: white;
}

.btn-outline-white:hover {
    background: white;
    color: #1a202c;
}

.cta-banner-buttons .btn-primary {
    background: linear-gradient(135deg, #00d4ff, #0088cc);
    color: white;
    border: none;
    font-weight: 600;
}

.cta-banner-buttons .btn-primary:hover {
    background: linear-gradient(135deg, #0088cc, #006ba8);
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(0, 212, 255, 0.4);
}

/* Responsive Media Features */
@media (max-width: 1024px) {
    .triple-media-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 968px) {
    .triple-media-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .media-trust-stats {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .media-main-title {
        font-size: 2rem;
    }
    
    .media-main-subtitle {
        font-size: 1.1rem;
    }
    
    .media-cta-banner {
        flex-direction: column;
        text-align: center;
    }
    
    .cta-banner-buttons {
        width: 100%;
        justify-content: center;
    }
    
    .podcast-cta-row {
        flex-direction: column;
        gap: 12px;
    }
    
    .podcast-cta-row .media-cta-button {
        width: 100%;
        justify-content: center;
    }
}

/* ============================================
   MANUFACTURERS SECTION - FINTECH STYLE
   ============================================ */
.manufacturers-fintech {
    padding: 5rem 0;
    background: linear-gradient(180deg, #f8fafc 0%, #ffffff 100%);
    border-top: 1px solid #e2e8f0;
}

.fintech-header {
    text-align: center;
    margin-bottom: 3rem;
}

.fintech-header h2 {
    font-size: 2rem;
    font-weight: 700;
    color: #0a2540;
    margin-bottom: 0.5rem;
    letter-spacing: -0.5px;
}

.fintech-header p {
    font-size: 1rem;
    color: #64748b;
    font-weight: 400;
}

.dealer-advantage {
    max-width: 800px;
    margin: 0 auto 3rem;
}

.advantage-card {
    background: linear-gradient(135deg, #00d4ff 0%, #0088cc 100%);
    border-radius: 12px;
    padding: 2rem;
    display: flex;
    align-items: center;
    gap: 1.5rem;
    box-shadow: 0 8px 24px rgba(0, 212, 255, 0.2);
}

.advantage-icon {
    width: 60px;
    height: 60px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.advantage-icon i {
    font-size: 1.75rem;
    color: white;
}

.advantage-content {
    flex: 1;
}

.advantage-content h3 {
    font-size: 1.25rem;
    font-weight: 700;
    color: white;
    margin: 0 0 0.5rem 0;
    letter-spacing: -0.3px;
}

.advantage-content p {
    font-size: 0.95rem;
    color: rgba(255, 255, 255, 0.95);
    margin: 0;
    line-height: 1.6;
}

.advantage-content p strong {
    font-weight: 700;
    color: white;
}

.advantage-extra {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-top: 1rem;
    padding-top: 1rem;
    border-top: 1px solid rgba(255, 255, 255, 0.3);
}

.advantage-extra i {
    font-size: 1.1rem;
    color: white;
}

.advantage-extra span {
    font-size: 0.9rem;
    color: white;
    font-weight: 600;
    line-height: 1.4;
}

.fintech-brands {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    justify-content: center;
    align-items: center;
    max-width: 1100px;
    margin: 0 auto;
}

.brand-item {
    background: white;
    border: 1px solid #e2e8f0;
    border-radius: 8px;
    padding: 0.75rem 1.5rem;
    transition: all 0.2s ease;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.05);
}

.brand-item span {
    font-size: 0.9rem;
    font-weight: 600;
    color: #334155;
    letter-spacing: 0.5px;
}

.brand-item:hover {
    border-color: #00d4ff;
    box-shadow: 0 4px 12px rgba(0, 212, 255, 0.15);
    transform: translateY(-2px);
}

@media (max-width: 768px) {
    .logo-image {
        height: 40px;
        max-width: 200px;
    }
    
    .tv-feature-section {
        padding: 60px 0;
    }
    
    .media-main-title {
        font-size: 1.8rem;
    }
    
    .media-main-subtitle {
        font-size: 1.1rem;
    }
    
    .media-trust-stats {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .media-quote-section {
        padding: 30px 25px;
    }
    
    .media-quote {
        font-size: 1.1rem;
    }
    
    .cta-banner-buttons {
        flex-direction: column;
        width: 100%;
    }
    
    .cta-banner-buttons .btn {
        width: 100%;
    }
    
    .media-play-button {
        width: 60px;
        height: 60px;
        font-size: 1.5rem;
    }
}

/* ============================================
   FOOTER
   ============================================ */
.footer {
    background: var(--primary-color);
    color: white;
    padding: 3rem 0 1.5rem;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-bottom: 2rem;
}

.footer-section h3,
.footer-section h4 {
    margin-bottom: 1rem;
    font-size: 1.25rem;
}

.footer-section p {
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.7;
    margin-bottom: 1rem;
}

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

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

.footer-section ul li a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    transition: var(--transition);
}

.footer-section ul li a:hover {
    color: var(--secondary-color);
}

.footer-section .contact-info li {
    display: flex;
    gap: 1rem;
    align-items: flex-start;
}

.footer-section .contact-info i {
    color: var(--secondary-color);
    margin-top: 0.25rem;
}

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

.social-links a {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    color: white;
    transition: var(--transition);
}

.social-links a:hover {
    background: var(--secondary-color);
    transform: translateY(-3px);
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    color: rgba(255, 255, 255, 0.6);
}

/* ============================================
   RESPONSIVE DESIGN
   ============================================ */
@media (max-width: 480px) {
    /* Mobile menu button completely hidden */
    .mobile-menu-btn {
        display: none !important;
    }

    .nav-menu {
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: var(--bg-card);
        flex-direction: column;
        padding: 1rem;
        box-shadow: var(--shadow-lg);
        border-top: 1px solid var(--border-color);
        transform: translateY(-100%);
        opacity: 0;
        pointer-events: none;
        transition: var(--transition);
    }

    .nav-menu.active {
        transform: translateY(0);
        opacity: 1;
        pointer-events: all;
    }

    .nav-menu li.has-dropdown .dropdown-menu {
        position: static;
        opacity: 1;
        visibility: visible;
        transform: none;
        box-shadow: none;
        padding-left: 1rem;
        display: none;
        background: var(--bg-light);
        margin-top: 0.5rem;
        border-radius: 8px;
    }

    .nav-menu li.has-dropdown .dropdown-menu li a {
        padding: 0.75rem 1rem;
    }

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

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

    .hero-buttons {
        flex-direction: column;
    }

    .hero-buttons .btn {
        width: 100%;
    }

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

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

    .form-row {
        grid-template-columns: 1fr;
    }

    .carousel-btn {
        width: 40px;
        height: 40px;
    }

    .prev-btn {
        left: -10px;
    }

    .next-btn {
        right: -10px;
    }

    .quote-card {
        padding: 2rem 1.5rem;
    }

    .credit-banner-content {
        flex-direction: column;
        text-align: center;
    }

    .banner-icon {
        font-size: 1.5rem;
    }

    .banner-text h2 {
        font-size: 1.15rem;
    }

    .banner-text p {
        font-size: 0.85rem;
    }

    .banner-cta .btn {
        width: 100%;
    }
    
    .fintech-header h2 {
        font-size: 1.5rem;
    }
    
    .fintech-header p {
        font-size: 0.9rem;
    }
    
    .advantage-card {
        flex-direction: column;
        text-align: center;
        padding: 1.5rem;
    }
    
    .advantage-icon {
        width: 50px;
        height: 50px;
    }
    
    .advantage-icon i {
        font-size: 1.5rem;
    }
    
    .advantage-content h3 {
        font-size: 1.1rem;
    }
    
    .advantage-content p {
        font-size: 0.9rem;
    }
    
    .advantage-extra {
        margin-top: 0.75rem;
        padding-top: 0.75rem;
    }
    
    .advantage-extra span {
        font-size: 0.85rem;
    }
    
    .fintech-brands {
        gap: 0.75rem;
    }
    
    .brand-item {
        padding: 0.6rem 1.2rem;
    }
    
    .brand-item span {
        font-size: 0.85rem;
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 2rem;
    }

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

    .step-icon {
        width: 60px;
        height: 60px;
        font-size: 1.5rem;
    }

    .step-number {
        width: 30px;
        height: 30px;
        font-size: 1rem;
    }
    
    .fintech-header h2 {
        font-size: 1.25rem;
    }
    
    .advantage-card {
        padding: 1.25rem;
    }
    
    .advantage-content h3 {
        font-size: 1rem;
    }
    
    .advantage-content p {
        font-size: 0.85rem;
    }
    
    .brand-item {
        padding: 0.5rem 1rem;
    }
    
    .brand-item span {
        font-size: 0.8rem;
    }
}