/* Business Setup Page Specific Styles */

/* Business Setup Hero Section */
.business-setup-hero {
    background: linear-gradient(135deg, #0a0a0a 0%, #1a1a1a 100%);
    padding: 140px 24px 80px;
    margin-bottom: 60px;
    position: relative;
    overflow: hidden;
    transition: all 0.3s ease-in-out;
}

.business-setup-hero .hero-container {
    max-width: 1400px;
    margin: 0 auto;
    width: 100%;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

/* Left Side Content */
.hero-left {
    max-width: 600px;
}

.platform-label {
    background: #E53935;
    color: white;
    padding: 6px 16px;
    border-radius: 4px;
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    display: inline-block;
    margin-bottom: 24px;
}

.business-hero-title {
    font-size: 48px;
    font-weight: 700;
    line-height: 1.1;
    color: #ffffff;
    margin-bottom: 24px;
    letter-spacing: -0.02em;
}

.business-hero-description {
    margin-bottom: 32px;
}

.business-hero-description p {
    font-size: 18px;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.8);
    margin: 0;
}

.business-hero-buttons {
    display: flex;
    gap: 16px;
    align-items: center;
}

.btn-primary {
    background: #E53935;
    color: white;
    border: none;
    padding: 14px 32px;
    border-radius: 6px;
    font-weight: 600;
    font-size: 14px;
    cursor: pointer;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.btn-primary:hover {
    background: #D32F2F;
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(229, 57, 53, 0.3);
}

.btn-secondary {
    background: transparent;
    color: rgba(255, 255, 255, 0.9);
    border: 1px solid rgba(255, 255, 255, 0.3);
    padding: 14px 32px;
    border-radius: 6px;
    font-weight: 600;
    font-size: 14px;
    cursor: pointer;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.btn-secondary:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 255, 255, 0.6);
    transform: translateY(-2px);
}

/* Right Side - Streaming Preview */
.hero-right {
    display: flex;
    justify-content: center;
    align-items: center;
}

.streaming-preview {
    width: 100%;
    max-width: 600px;
    position: relative;
}

.preview-browser {
    background: #1a1a1a;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

/* Browser Header */
.browser-header {
    background: #2a2a2a;
    padding: 12px 16px;
    display: flex;
    align-items: center;
    gap: 12px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

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

.dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
}

.dot.red {
    background: #ff5f57;
}

.dot.yellow {
    background: #ffbd2e;
}

.dot.green {
    background: #28ca42;
}

.browser-url {
    flex: 1;
    text-align: center;
}

.browser-url span {
    background: rgba(255, 255, 255, 0.1);
    padding: 6px 16px;
    border-radius: 16px;
    font-size: 12px;
    color: rgba(255, 255, 255, 0.7);
}

/* Website Content */
.website-content {
    background: linear-gradient(135deg, #1a1a2e 0%, #16213e 100%);
    padding: 0;
    min-height: 400px;
    position: relative;
}

/* Site Navigation */
.site-nav {
    background: rgba(0, 0, 0, 0.8);
    backdrop-filter: blur(10px);
    padding: 16px 24px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.site-logo {
    font-size: 18px;
    font-weight: 700;
    color: #E53935;
    letter-spacing: 1px;
}

.nav-items {
    display: flex;
    gap: 24px;
}

.nav-items span {
    font-size: 13px;
    color: rgba(255, 255, 255, 0.8);
    cursor: pointer;
    transition: color 0.3s ease;
}

.nav-items span:hover {
    color: #E53935;
}

/* Main Content */
.main-content {
    padding: 32px 24px;
    position: relative;
    height: 320px;
    display: flex;
    align-items: center;
    background: linear-gradient(45deg, rgba(229, 57, 53, 0.1) 0%, rgba(0, 0, 0, 0.3) 100%);
}



/* Featured Content */
.featured-content {
    flex: 1;
    max-width: 300px;
    z-index: 5;
}

.content-badge {
    background: rgba(229, 57, 53, 0.9);
    color: white;
    padding: 4px 12px;
    border-radius: 12px;
    font-size: 11px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    display: inline-block;
    margin-bottom: 12px;
}

.content-title {
    font-size: 24px;
    font-weight: 700;
    color: white;
    margin-bottom: 12px;
    line-height: 1.2;
}

.content-description {
    font-size: 13px;
    line-height: 1.5;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 16px;
}

.content-meta {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 20px;
}

.content-meta span {
    font-size: 11px;
    color: rgba(255, 255, 255, 0.6);
}

.play-btn {
    background: #E53935;
    color: white;
    border: none;
    padding: 10px 20px;
    border-radius: 6px;
    font-size: 12px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 8px;
}

.play-btn:hover {
    background: #D32F2F;
    transform: translateY(-2px);
}

/* Character Image */
.character-image {
    position: absolute;
    right: 0;
    top: 0;
    bottom: 0;
    width: 50%;
    background: linear-gradient(90deg, rgba(26, 26, 46, 0) 0%, rgba(26, 26, 46, 0.8) 100%);
    display: flex;
    align-items: center;
    justify-content: flex-end;
    padding-right: 24px;
}

.character-image img {
    max-height: 280px;
    width: auto;
    border-radius: 8px;
    filter: brightness(0.9) contrast(1.1);
}

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

.section-animate {
    animation: fadeInUp 0.6s ease-out;
}

/* Superior Performance Section */
.superior-performance-section {
    background: linear-gradient(135deg, #0a0a0a 0%, #1a1a1a 50%, #0f0f0f 100%);
    padding: 100px 24px 100px;
    margin: 60px 0;
    position: relative;
    overflow: hidden;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    transition: all 0.3s ease-in-out;
}

.superior-performance-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 50% 50%, rgba(229, 57, 53, 0.03) 0%, transparent 70%);
    pointer-events: none;
}

.superior-container {
    max-width: 1400px;
    margin: 0 auto;
    width: 100%;
}

/* Section Header */
.section-header {
    text-align: center;
    margin-bottom: 80px;
}

.section-label {
    color: #E53935;
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 16px;
    display: block;
}

.section-title {
    font-size: 48px;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 24px;
    line-height: 1.2;
    letter-spacing: -0.02em;
    text-align: center;
}

.section-description {
    font-size: 18px;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.7);
    max-width: 600px;
    margin: 0 auto;
}

/* Feature Content */
.feature-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.feature-left {
    max-width: 500px;
}

.feature-badge {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 24px;
}

.feature-label {
    color: #E53935;
    font-size: 14px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.feature-new {
    background: #E53935;
    color: white;
    padding: 4px 12px;
    border-radius: 12px;
    font-size: 11px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.feature-title {
    font-size: 36px;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 20px;
    line-height: 1.2;
    letter-spacing: -0.01em;
}

.feature-description {
    font-size: 16px;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 32px;
}

.feature-buttons {
    display: flex;
    gap: 16px;
    align-items: center;
}

.feature-btn-primary {
    background: #E53935;
    color: white;
    border: none;
    padding: 12px 28px;
    border-radius: 6px;
    font-weight: 600;
    font-size: 14px;
    cursor: pointer;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.feature-btn-primary:hover {
    background: #D32F2F;
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(229, 57, 53, 0.3);
}

.feature-btn-secondary {
    background: transparent;
    color: rgba(255, 255, 255, 0.8);
    border: none;
    padding: 12px 20px;
    border-radius: 6px;
    font-weight: 600;
    font-size: 14px;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 8px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.feature-btn-secondary:hover {
    color: #E53935;
    transform: translateY(-2px);
}

.feature-btn-secondary svg {
    width: 12px;
    height: 12px;
}

/* Device Mockup */
.feature-right {
    display: flex;
    justify-content: center;
    align-items: center;
}

.device-mockup {
    position: relative;
    max-width: 500px;
    width: 100%;
}

.device-frame {
    background: linear-gradient(145deg, #2a2a2a 0%, #1a1a1a 100%);
    border-radius: 16px;
    padding: 20px;
    box-shadow: 
        0 25px 50px rgba(0, 0, 0, 0.5),
        0 0 0 1px rgba(255, 255, 255, 0.1);
    position: relative;
}

.device-screen {
    background: #000;
    border-radius: 8px;
    overflow: hidden;
    position: relative;
    aspect-ratio: 16/10;
}

/* Video Interface */
.video-interface {
    height: 100%;
    display: flex;
    flex-direction: column;
    background: linear-gradient(135deg, #1a1a2e 0%, #16213e 100%);
}

.video-header {
    padding: 12px 16px;
    background: rgba(0, 0, 0, 0.3);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.video-controls-top {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.window-controls {
    display: flex;
    gap: 6px;
}

.control-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
}

.control-dot.red { background: #ff5f57; }
.control-dot.yellow { background: #ffbd2e; }
.control-dot.green { background: #28ca42; }

.video-actions {
    display: flex;
    gap: 12px;
}

.action-icon {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.6);
    cursor: pointer;
    transition: color 0.3s ease;
}

.action-icon:hover {
    color: #E53935;
}

/* Video Content */
.video-content {
    flex: 1;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(45deg, rgba(229, 57, 53, 0.1) 0%, rgba(0, 0, 0, 0.3) 100%);
}

.video-placeholder {
    text-align: center;
    color: white;
}

.video-center {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 16px;
}

.video-logo svg {
    filter: drop-shadow(0 4px 8px rgba(0, 0, 0, 0.3));
}

.company-text {
    font-size: 14px;
    font-weight: 600;
    letter-spacing: 2px;
    color: rgba(255, 255, 255, 0.8);
}

/* Skip Trailers Button */
.skip-trailer-btn {
    position: absolute;
    bottom: 20px;
    right: 20px;
    background: #E53935;
    color: white;
    padding: 8px 16px;
    border-radius: 6px;
    font-size: 12px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 6px;
}

.skip-trailer-btn:hover {
    background: #D32F2F;
    transform: translateY(-2px);
}

/* Video Controls Bottom */
.video-controls-bottom {
    background: rgba(0, 0, 0, 0.8);
    padding: 12px 16px 16px;
}

.progress-bar {
    height: 4px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 2px;
    margin-bottom: 12px;
    position: relative;
    overflow: hidden;
}

.progress-fill {
    height: 100%;
    width: 30%;
    background: #E53935;
    border-radius: 2px;
    position: relative;
}

.control-buttons {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.left-controls,
.right-controls {
    display: flex;
    align-items: center;
    gap: 12px;
}

.control-btn {
    background: none;
    border: none;
    color: rgba(255, 255, 255, 0.7);
    font-size: 14px;
    cursor: pointer;
    transition: color 0.3s ease;
}

.control-btn:hover {
    color: #E53935;
}

.time-display {
    font-size: 12px;
    color: rgba(255, 255, 255, 0.6);
    font-variant-numeric: tabular-nums;
}

/* Services Grid */
.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 60px;
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
}

.service-card {
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    padding: 30px;
    text-align: center;
    transition: all 0.3s ease;
}

.service-card:hover {
    background: rgba(229, 57, 53, 0.05);
    border-color: rgba(229, 57, 53, 0.3);
    transform: translateY(-5px);
}

.service-icon {
    margin-bottom: 20px;
    display: flex;
    justify-content: center;
}

.service-title {
    font-size: 20px;
    font-weight: 600;
    color: #ffffff;
    margin-bottom: 12px;
}

.service-description {
    font-size: 14px;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.7);
}

/* Benefits Section */
.benefits-section {
    margin-top: 80px;
    padding: 60px 0;
    background: rgba(229, 57, 53, 0.03);
    border-radius: 16px;
    border: 1px solid rgba(229, 57, 53, 0.1);
}

.benefits-container {
    max-width: 1000px;
    margin: 0 auto;
    text-align: center;
}

.benefits-title {
    font-size: 32px;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 50px;
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
    text-align: left;
}

.benefit-item {
    display: flex;
    align-items: flex-start;
    gap: 20px;
}

.benefit-number {
    font-size: 24px;
    font-weight: 700;
    color: #E53935;
    min-width: 40px;
    height: 40px;
    background: rgba(229, 57, 53, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.benefit-content h4 {
    font-size: 18px;
    font-weight: 600;
    color: #ffffff;
    margin-bottom: 8px;
}

.benefit-content p {
    font-size: 14px;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.7);
}

/* Expert Help CTA Section */
.expert-help-section {
    background: linear-gradient(135deg, #0a0a0a 0%, #1a1a1a 100%);
    padding: 100px 24px;
    margin: 60px 0;
    position: relative;
    overflow: hidden;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    transition: all 0.3s ease-in-out;
}

.expert-help-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 85% 15%, rgba(229, 57, 53, 0.05) 0%, transparent 50%),
        linear-gradient(45deg, rgba(0, 0, 0, 0.3) 0%, rgba(26, 26, 26, 0.1) 100%);
    pointer-events: none;
}

.expert-help-container {
    max-width: 1200px;
    margin: 0 auto;
    width: 100%;
    position: relative;
    z-index: 2;
}

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

.expert-help-label {
    color: #E53935;
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 24px;
    display: block;
}

.expert-help-title {
    font-size: 48px;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 40px;
    line-height: 1.2;
    letter-spacing: -0.02em;
    text-align: center;
}

.expert-help-btn {
    background: #E53935;
    color: white;
    border: none;
    padding: 16px 32px;
    border-radius: 6px;
    font-weight: 600;
    font-size: 14px;
    cursor: pointer;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    display: inline-block;
}

.expert-help-btn:hover {
    background: #D32F2F;
    transform: translateY(-3px);
    box-shadow: 0 12px 30px rgba(229, 57, 53, 0.4);
}

/* Responsive Design */
@media (max-width: 1200px) {
    .business-setup-hero .hero-container {
        gap: 60px;
    }
    
    .business-hero-title {
        font-size: 42px;
    }
    
    .superior-performance-section {
        padding: 80px 24px 80px;
        margin: 50px 0;
    }
    
    .expert-help-section {
        padding: 80px 24px;
        margin: 50px 0;
    }
    
    .feature-content {
        gap: 60px;
    }
    
    .section-title {
        font-size: 42px;
    }
    
    .feature-title {
        font-size: 32px;
    }
}

@media (max-width: 968px) {
    .business-setup-hero {
        padding: 110px 20px 70px;
        margin-bottom: 50px;
    }
    
    .business-setup-hero .hero-container {
        grid-template-columns: 1fr;
        gap: 40px;
        text-align: center;
    }
    
    .hero-left {
        max-width: none;
    }
    
    .business-hero-title {
        font-size: 36px;
    }
    
    .streaming-preview {
        max-width: 500px;
    }
    
    .nav-items {
        display: none;
    }
    
    .superior-performance-section {
        padding: 70px 20px 70px;
        margin: 40px 0;
    }
    
    .expert-help-section {
        padding: 70px 20px;
        margin: 40px 0;
    }
    
    .feature-content {
        grid-template-columns: 1fr;
        gap: 50px;
        text-align: center;
    }
    
    .section-title {
        font-size: 36px;
    }
    
    .feature-title {
        font-size: 28px;
    }
    
    .device-mockup {
        max-width: 400px;
    }
    
    .services-grid {
        grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
        gap: 20px;
        margin-top: 40px;
    }
    
    .service-card {
        padding: 25px;
    }
    
    .benefits-section {
        margin-top: 50px;
        padding: 40px 16px;
    }
    
    .benefits-title {
        font-size: 24px;
    }
    
    .benefits-grid {
        grid-template-columns: 1fr;
        gap: 25px;
    }
    
    .services-grid {
        grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
        gap: 25px;
        margin-top: 50px;
    }
    
    .benefits-section {
        margin-top: 60px;
        padding: 50px 20px;
    }
    
    .benefits-title {
        font-size: 28px;
    }
    
    .benefits-grid {
        gap: 30px;
    }
    
    .expert-help-title {
        font-size: 36px;
    }
}

@media (max-width: 768px) {
    .business-setup-hero {
        padding: 100px 16px 60px;
        margin-bottom: 40px;
    }
    
    .business-hero-title {
        font-size: 32px;
    }
    
    .business-hero-description p {
        font-size: 16px;
    }
    
    .business-hero-buttons {
        flex-direction: column;
        width: 100%;
    }
    
    .btn-primary,
    .btn-secondary {
        width: 100%;
        justify-content: center;
    }
    
    .streaming-preview {
        max-width: 400px;
    }
    
    .main-content {
        padding: 20px 16px;
        height: 280px;
    }
    
    .content-title {
        font-size: 20px;
    }
    
    .character-image img {
        max-height: 220px;
    }
    
    .superior-performance-section {
        padding: 60px 16px 60px;
        margin: 30px 0;
    }
    
    .expert-help-section {
        padding: 60px 16px;
        margin: 30px 0;
    }
    
    .section-header {
        margin-bottom: 40px;
    }
    
    .section-title {
        font-size: 32px;
    }
    
    .section-description {
        font-size: 16px;
    }
    
    .feature-content {
        gap: 40px;
    }
    
    .feature-title {
        font-size: 24px;
    }
    
    .feature-description {
        font-size: 15px;
    }
    
    .feature-buttons {
        flex-direction: column;
        width: 100%;
    }
    
    .feature-btn-primary,
    .feature-btn-secondary {
        width: 100%;
        justify-content: center;
    }
    
    .device-mockup {
        max-width: 350px;
    }
    
    .services-grid {
        margin-top: 30px;
    }
    
    .service-card {
        padding: 20px;
    }
    
    .service-title {
        font-size: 18px;
    }
    
    .benefits-section {
        margin-top: 40px;
        padding: 30px 16px;
    }
    
    .benefits-title {
        font-size: 22px;
        margin-bottom: 30px;
    }
    
    .device-frame {
        padding: 16px;
    }
    
    .expert-help-title {
        font-size: 32px;
    }
    
    .expert-help-btn {
        width: 100%;
        max-width: 300px;
    }
}

@media (max-width: 480px) {
    .business-hero-title {
        font-size: 28px;
    }
    
    .streaming-preview {
        max-width: 320px;
    }
    
    .main-content {
        height: 240px;
    }
    
    .character-image img {
        max-height: 180px;
    }
    
    .site-nav {
        padding: 12px 16px;
    }
    
    .site-logo {
        font-size: 16px;
    }
    
    .section-title {
        font-size: 28px;
    }
    
    .feature-title {
        font-size: 22px;
    }
    
    .device-mockup {
        max-width: 300px;
    }
    
    .device-frame {
        padding: 12px;
    }
    
    .video-header {
        padding: 8px 12px;
    }
    
    .video-controls-bottom {
        padding: 8px 12px 12px;
    }
    
    .company-text {
        font-size: 12px;
    }
    
    .skip-trailer-btn {
        bottom: 15px;
        right: 15px;
        padding: 6px 12px;
        font-size: 11px;
    }
    
    .expert-help-title {
        font-size: 28px;
    }
    
    .expert-help-btn {
        padding: 14px 28px;
        font-size: 13px;
    }
}