/* Strategy & Consultancy Page Styles */

/* Business Hero Section */
.business-hero {
    background: linear-gradient(135deg, #000000 0%, #1a1a1a 100%);
    padding: 140px 0 80px 0;
    position: relative;
    overflow: hidden;
}

.business-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grid" width="10" height="10" patternUnits="userSpaceOnUse"><path d="M 10 0 L 0 0 0 10" fill="none" stroke="%23333" stroke-width="0.5"/></pattern></defs><rect width="100" height="100" fill="url(%23grid)"/></svg>');
    opacity: 0.1;
    z-index: 1;
}

.business-hero-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
    position: relative;
    z-index: 2;
}

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

.business-hero-tags {
    display: flex;
    justify-content: center;
    gap: 12px;
    margin-bottom: 32px;
    flex-wrap: wrap;
}

.tag {
    background: rgba(229, 57, 53, 0.1);
    border: 1px solid rgba(229, 57, 53, 0.3);
    color: #E53935;
    padding: 8px 16px;
    border-radius: 24px;
    font-size: 14px;
    font-weight: 500;
    letter-spacing: 0.5px;
}

.business-hero-heading h1 {
    color: #ffffff;
    font-size: 64px;
    font-weight: 700;
    line-height: 1.1;
    margin: 0 0 24px 0;
    letter-spacing: -0.02em;
}

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

.business-hero-description p {
    color: #cccccc;
    font-size: 20px;
    line-height: 1.6;
    margin: 0;
}

.business-hero-buttons {
    display: flex;
    justify-content: center;
    gap: 16px;
    flex-wrap: wrap;
}

.btn-primary {
    background: #E53935;
    color: #ffffff;
    padding: 16px 32px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    font-size: 16px;
    transition: all 0.3s ease;
    border: 2px solid #E53935;
}

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

.btn-secondary {
    background: transparent;
    color: #ffffff;
    padding: 16px 32px;
    border: 2px solid #333333;
    border-radius: 8px;
    font-weight: 600;
    font-size: 16px;
    transition: all 0.3s ease;
    cursor: pointer;
}

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

/* Superior Performance Section */
.superior-performance {
    background: #000000;
    padding: 80px 0;
    position: relative;
}

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

.superior-header {
    text-align: center;
    margin-bottom: 80px;
}

.superior-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(229, 57, 53, 0.1);
    border: 1px solid rgba(229, 57, 53, 0.3);
    padding: 8px 16px;
    border-radius: 24px;
    margin-bottom: 24px;
}

.badge-text {
    color: #ffffff;
    font-size: 14px;
    font-weight: 500;
}

.badge-highlight {
    color: #E53935;
    font-size: 14px;
    font-weight: 600;
}

.superior-title {
    color: #ffffff;
    font-size: 48px;
    font-weight: 700;
    line-height: 1.2;
    margin: 0 0 24px 0;
    letter-spacing: -0.02em;
}

.superior-description {
    color: #cccccc;
    font-size: 18px;
    line-height: 1.6;
    max-width: 600px;
    margin: 0 auto;
}

/* Device Section */
.device-section {
    margin-bottom: 80px;
}

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

.device-wrapper {
    background: linear-gradient(145deg, #1a1a1a, #0f0f0f);
    border-radius: 16px;
    padding: 24px;
    box-shadow: 0 20px 80px rgba(0, 0, 0, 0.5);
}

.browser-frame {
    background: #1a1a1a;
    border-radius: 12px;
    overflow: hidden;
    border: 1px solid #333333;
}

.browser-header {
    background: #2a2a2a;
    padding: 12px 16px;
    display: flex;
    align-items: center;
    gap: 16px;
    border-bottom: 1px solid #333333;
}

.browser-controls {
    display: flex;
    gap: 8px;
}

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

.control-dot.red { background: #ff5f56; }
.control-dot.yellow { background: #ffbd2e; }
.control-dot.green { background: #27ca3f; }

.browser-tabs {
    display: flex;
    gap: 4px;
}

.tab {
    background: #1a1a1a;
    padding: 8px 16px;
    border-radius: 8px 8px 0 0;
    color: #888888;
    font-size: 13px;
    border: 1px solid #333333;
    border-bottom: none;
}

.tab.active {
    background: #333333;
    color: #ffffff;
}

.main-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    padding: 40px;
    align-items: center;
}

.featured-content {
    color: #ffffff;
}

.content-badge {
    background: rgba(229, 57, 53, 0.1);
    color: #E53935;
    padding: 6px 12px;
    border-radius: 16px;
    font-size: 12px;
    font-weight: 600;
    display: inline-block;
    margin-bottom: 16px;
}

.content-title {
    color: #ffffff;
    font-size: 32px;
    font-weight: 700;
    margin: 0 0 16px 0;
    line-height: 1.2;
}

.content-description {
    color: #cccccc;
    font-size: 16px;
    line-height: 1.6;
    margin: 0 0 32px 0;
}

.content-stats {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
}

.stat-item {
    text-align: center;
}

.stat-number {
    color: #E53935;
    font-size: 24px;
    font-weight: 700;
    display: block;
}

.stat-label {
    color: #888888;
    font-size: 12px;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.device-mockup {
    position: relative;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 12px 48px rgba(0, 0, 0, 0.3);
}

.mockup-image {
    width: 100%;
    height: auto;
    display: block;
}

.mockup-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(45deg, rgba(229, 57, 53, 0.1), rgba(0, 0, 0, 0.3));
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    gap: 16px;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.device-mockup:hover .mockup-overlay {
    opacity: 1;
}

.play-button {
    width: 60px;
    height: 60px;
    background: rgba(229, 57, 53, 0.9);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: transform 0.3s ease;
}

.play-button:hover {
    transform: scale(1.1);
}

.overlay-info {
    text-align: center;
    color: #ffffff;
}

.overlay-title {
    font-size: 18px;
    font-weight: 600;
    display: block;
}

.overlay-subtitle {
    font-size: 14px;
    color: #cccccc;
}

.status-bar {
    background: #2a2a2a;
    padding: 16px 24px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-top: 1px solid #333333;
}

.status-indicators {
    display: flex;
    gap: 24px;
}

.indicator {
    display: flex;
    align-items: center;
    gap: 8px;
}

.indicator-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: #666666;
}

.indicator.active .indicator-dot {
    background: #E53935;
}

.indicator-label {
    color: #888888;
    font-size: 12px;
}

.indicator.active .indicator-label {
    color: #ffffff;
}

.time-display {
    color: #666666;
    font-size: 12px;
}

/* Services Grid */
.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 32px;
    margin-bottom: 80px;
}

.service-card {
    background: #1a1a1a;
    padding: 32px;
    border-radius: 16px;
    border: 1px solid #333333;
    transition: all 0.3s ease;
    text-decoration: none;
    color: inherit;
    display: block;
}

.service-card:hover {
    transform: translateY(-8px);
    border-color: #E53935;
    box-shadow: 0 20px 40px rgba(229, 57, 53, 0.1);
    text-decoration: none;
}

.service-icon {
    margin-bottom: 24px;
}

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

.service-description {
    color: #cccccc;
    font-size: 16px;
    line-height: 1.6;
    margin: 0;
}

/* Benefits Section */
.benefits-section {
    background: #0f0f0f;
    padding: 60px 0;
    border-radius: 24px;
    margin: 0 24px;
}

.benefits-container {
    max-width: 1000px;
    margin: 0 auto;
    padding: 0 24px;
}

.benefits-title {
    color: #ffffff;
    font-size: 36px;
    font-weight: 700;
    text-align: center;
    margin: 0 0 48px 0;
    line-height: 1.2;
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 32px;
}

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

.benefit-number {
    background: #E53935;
    color: #ffffff;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 16px;
    flex-shrink: 0;
}

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

.benefit-content p {
    color: #cccccc;
    font-size: 14px;
    line-height: 1.5;
    margin: 0;
}

/* Expert Help Section */
.expert-help {
    background: linear-gradient(135deg, #E53935 0%, #c62828 100%);
    padding: 80px 0;
    text-align: center;
}

.expert-container {
    max-width: 800px;
    margin: 0 auto;
    padding: 0 24px;
}

.expert-title {
    color: #ffffff;
    font-size: 48px;
    font-weight: 700;
    margin: 0 0 24px 0;
    line-height: 1.2;
}

.expert-description {
    color: rgba(255, 255, 255, 0.9);
    font-size: 18px;
    line-height: 1.6;
    margin: 0 0 40px 0;
}

.cta-buttons {
    display: flex;
    justify-content: center;
    gap: 16px;
    flex-wrap: wrap;
}

.cta-btn-primary {
    background: #ffffff;
    color: #E53935;
    padding: 16px 32px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    font-size: 16px;
    transition: all 0.3s ease;
    border: 2px solid #ffffff;
}

.cta-btn-primary:hover {
    background: transparent;
    color: #ffffff;
    transform: translateY(-2px);
    box-shadow: 0 8px 32px rgba(255, 255, 255, 0.2);
}

/* Footer Section */
.footer-section {
    background: #000000;
    border-top: 1px solid #333333;
}

.footer-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 60px 24px 24px 24px;
}

.footer-content {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr 1fr;
    gap: 48px;
    margin-bottom: 48px;
}

.footer-content-secondary {
    margin-top: 48px;
    margin-bottom: 48px;
}

.footer-logo-column {
    grid-column: span 1;
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 24px;
}

.footer-logo-icon {
    background: #E53935;
    color: #ffffff;
    width: 32px;
    height: 32px;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 18px;
}

.footer-logo-text {
    color: #ffffff;
    font-size: 20px;
    font-weight: 700;
    letter-spacing: 1px;
}

.footer-company-info {
    color: #888888;
    font-size: 14px;
    line-height: 1.6;
}

.company-address {
    margin: 0 0 16px 0;
}

.company-email a {
    color: #E53935;
    text-decoration: none;
}

.company-email a:hover {
    text-decoration: underline;
}

.footer-column h4 {
    color: #ffffff;
    font-size: 16px;
    font-weight: 600;
    margin: 0 0 20px 0;
}

.footer-column ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-column li {
    margin-bottom: 12px;
}

.footer-column a {
    color: #888888;
    text-decoration: none;
    font-size: 14px;
    transition: color 0.3s ease;
}

.footer-column a:hover {
    color: #E53935;
}

.footer-bottom {
    border-top: 1px solid #333333;
    padding-top: 24px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 16px;
}

.footer-links {
    display: flex;
    gap: 24px;
}

.footer-links a {
    color: #888888;
    text-decoration: none;
    font-size: 14px;
    transition: color 0.3s ease;
}

.footer-links a:hover {
    color: #E53935;
}

.footer-copyright {
    color: #666666;
    font-size: 12px;
    margin: 0;
    max-width: 600px;
}

/* Responsive Design */
@media (max-width: 768px) {
    .business-hero-heading h1 {
        font-size: 48px;
    }
    
    .superior-title {
        font-size: 36px;
    }
    
    .main-content {
        grid-template-columns: 1fr;
        gap: 32px;
    }
    
    .content-stats {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .services-grid {
        grid-template-columns: 1fr;
    }
    
    .benefits-grid {
        grid-template-columns: 1fr;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        gap: 32px;
    }
    
    .footer-bottom {
        flex-direction: column;
        text-align: center;
    }
}

@media (max-width: 480px) {
    .business-hero {
        padding: 120px 0 60px 0;
    }
    
    .business-hero-heading h1 {
        font-size: 36px;
    }
    
    .business-hero-description p {
        font-size: 18px;
    }
    
    .expert-title {
        font-size: 36px;
    }
    
    .device-wrapper {
        padding: 16px;
    }
    
    .main-content {
        padding: 24px;
    }
}