/* Companies Section */
.companies-section {
    padding: 2.5rem 0;
    background: white;
    border-bottom: 1px solid #f1f5f9;
}

.companies-label {
    text-align: center;
    font-size: 0.813rem;
    color: #a0aec0;
    margin-bottom: 1.5rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    font-weight: 600;
}

.company-stats {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 3rem;
    flex-wrap: wrap;
}

.company-stat {
    font-size: 1rem;
    color: #4a5568;
    font-weight: 600;
    white-space: nowrap;
}

/* Premium Features */
.features-section {
    padding: 6rem 0;
    background: #fafbfc;
}

.features-grid-premium {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2.5rem;
    max-width: 1100px;
    margin: 0 auto;
}

.feature-card-premium {
    background: white;
    border-radius: 1.5rem;
    overflow: hidden;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
    transition: all 0.3s ease;
    border: 1px solid #f1f5f9;
}

.feature-card-premium:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 32px rgba(0, 0, 0, 0.08);
}

.feature-visual {
    padding: 2.5rem 2rem 1.5rem;
    background: linear-gradient(180deg, #fafbfc 0%, white 100%);
}

.mockup-card {
    background: white;
    border-radius: 0.75rem;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1);
    overflow: hidden;
    border: 1px solid #e2e8f0;
}

.mockup-toolbar {
    background: #f5f5f7;
    padding: 0.75rem;
    display: flex;
    gap: 0.5rem;
    border-bottom: 1px solid #e2e8f0;
}

.mockup-toolbar .dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: #ddd;
}

.mockup-content {
    padding: 1.5rem;
}

.mock-title {
    font-size: 0.875rem;
    font-weight: 600;
    color: #1a1a1a;
    margin-bottom: 1rem;
}

.mock-input {
    background: #f8f9fa;
    padding: 0.75rem 1rem;
    border-radius: 0.5rem;
    font-size: 0.875rem;
    color: #718096;
    margin-bottom: 1rem;
}

.mock-list {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.mock-item {
    padding: 0.625rem 1rem;
    background: #f8f9fa;
    border-radius: 0.375rem;
    font-size: 0.875rem;
    color: #1a1a1a;
}

.mock-chart {
    display: flex;
    align-items: flex-end;
    gap: 1rem;
    height: 120px;
    margin: 1rem 0;
}

.chart-bar {
    flex: 1;
    background: linear-gradient(180deg, #FF6B3D 0%, #FF8C66 100%);
    border-radius: 0.375rem 0.375rem 0 0;
    display: flex;
    align-items: flex-end;
    justify-content: center;
    padding-bottom: 0.5rem;
    font-size: 0.75rem;
    font-weight: 700;
    color: white;
}

.mock-badge {
    display: inline-flex;
    align-items: center;
    padding: 0.5rem 0.875rem;
    background: #fff8f5;
    color: #FF6B3D;
    border-radius: 0.5rem;
    font-size: 0.813rem;
    font-weight: 600;
}

.inventory-items {
    display: grid;
    gap: 0.75rem;
}

.inv-item {
    padding: 1rem;
    background: #f8f9fa;
    border-radius: 0.5rem;
    font-size: 0.875rem;
    line-height: 1.6;
}

.inv-item.warning {
    background: #fff8f5;
    border: 1px solid rgba(255, 107, 61, 0.2);
}

.stock {
    font-size: 0.75rem;
    color: #718096;
    display: block;
    margin-top: 0.25rem;
}

.stock.low {
    color: #FF6B3D;
    font-weight: 600;
}

.store-badges {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    margin-bottom: 1rem;
}

.store-badge {
    padding: 0.5rem 1rem;
    background: #f8f9fa;
    border-radius: 0.5rem;
    font-size: 0.813rem;
    font-weight: 500;
}

.store-badge.active {
    background: rgba(59, 130, 246, 0.1);
    color: #3b82f6;
}

.store-badge.add {
    background: rgba(255, 107, 61, 0.1);
    color: #FF6B3D;
    border: 1px dashed #FF6B3D;
}

.sync-status {
    font-size: 0.813rem;
    color: #10b981;
    font-weight: 500;
}

.feature-info {
    padding: 2rem;
}

.feature-icon-small {
    width: 40px;
    height: 40px;
    background: #fff8f5;
    border-radius: 0.75rem;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

.feature-info h3 {
    font-size: 1.25rem;
    margin-bottom: 0.75rem;
    font-weight: 700;
}

.feature-info p {
    font-size: 0.938rem;
    line-height: 1.7;
    color: #4a5568;
    margin: 0;
}

/* Why Us / Testimonials */
.why-us-section {
    padding: 6rem 0;
    background: white;
}

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

.testimonial-card-premium {
    background: #f8f9fa;
    border-radius: 1.5rem;
    padding: 2rem;
    display: flex;
    flex-direction: column;
}

.testimonial-card-premium h4 {
    font-size: 1.125rem;
    margin-bottom: 1rem;
    font-weight: 700;
}

.testimonial-text {
    flex: 1;
    font-size: 0.938rem;
    line-height: 1.7;
    color: #4a5568;
    margin-bottom: 1.5rem;
}

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

.author-avatar-small {
    width: 44px;
    height: 44px;
    background: linear-gradient(135deg, #FF6B3D 0%, #FF8C66 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-weight: 700;
    font-size: 0.875rem;
    flex-shrink: 0;
}

.author-name {
    font-weight: 600;
    font-size: 0.938rem;
    color: #1a1a1a;
    margin-bottom: 0.125rem;
}

.author-title {
    font-size: 0.813rem;
    color: #718096;
}

.video-card {
    position: relative;
    padding: 0;
    background: #1a1a1a;
    overflow: hidden;
}

.video-placeholder {
    position: relative;
    width: 100%;
    height: 100%;
    min-height: 300px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #2a2a2a 0%, #1a1a1a 100%);
}

.play-button {
    width: 72px;
    height: 72px;
    background: rgba(255, 255, 255, 0.95);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    color: #FF6B3D;
    cursor: pointer;
    transition: all 0.2s ease;
    padding-left: 0.25rem;
}

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

.video-author {
    position: absolute;
    bottom: 1.5rem;
    left: 1.5rem;
    display: flex;
    align-items: center;
    gap: 0.875rem;
    color: white;
}

.video-author .author-name {
    color: white;
}

.video-author .author-title {
    color: rgba(255, 255, 255, 0.7);
}

/* CTA Section Premium */
.cta-section-premium {
    padding: 0;
    background: transparent;
}

.cta-content {
    background: linear-gradient(135deg, #FF6B3D 0%, #FF5722 100%);
    border-radius: 2rem;
    padding: 5rem 3rem;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.cta-content::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -20%;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.15) 0%, transparent 70%);
    animation: pulse 4s ease-in-out infinite;
}

.cta-content h2 {
    font-size: clamp(2rem, 4vw, 3rem);
    margin-bottom: 1rem;
    color: white;
    position: relative;
    z-index: 1;
}

.cta-content p {
    font-size: 1.125rem;
    color: rgba(255, 255, 255, 0.95);
    margin-bottom: 2.5rem;
    position: relative;
    z-index: 1;
}

.cta-actions {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
    position: relative;
    z-index: 1;
}

.btn-primary-large,
.btn-secondary-large {
    padding: 1.125rem 2.5rem;
    font-size: 1rem;
    font-weight: 600;
    border-radius: 0.75rem;
    transition: all 0.2s ease;
}

.btn-primary-large {
    background: white;
    color: #FF6B3D;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.15);
}

.btn-primary-large:hover {
    background: #f8f9fa;
    box-shadow: 0 12px 32px rgba(0, 0, 0, 0.2);
    transform: translateY(-2px);
}

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

.btn-secondary-large:hover {
    background: rgba(255, 255, 255, 0.1);
}

/* Modern Contact Section */
.contact-section-modern {
    padding: 6rem 0;
    background: #fafbfc;
}

.contact-wrapper {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 4rem;
    align-items: flex-start;
}

/* Left Column */
.contact-text-content {
    padding-top: 1rem;
}

.modern-heading {
    font-size: 3.5rem;
    line-height: 1.1;
    margin-bottom: 1.5rem;
    color: #1a1a1a;
    font-weight: 700;
}

.modern-heading .dash {
    display: inline-block;
    font-weight: 300;
    color: #1a1a1a;
    margin: 0 0.2rem;
}

.contact-desc {
    font-size: 1.063rem;
    color: #4a5568;
    line-height: 1.7;
    margin-bottom: 3rem;
    max-width: 450px;
}

.contact-details-modern {
    margin-bottom: 3rem;
}

.detail-group {
    margin-bottom: 1.5rem;
}

.detail-group label {
    display: block;
    font-size: 0.875rem;
    color: #718096;
    margin-bottom: 0.25rem;
}

.detail-link {
    font-size: 1.25rem;
    font-weight: 600;
    color: #1a1a1a;
    text-decoration: none;
    transition: color 0.2s ease;
}

.detail-link:hover {
    color: #FF6B3D;
}

.availability {
    font-size: 0.813rem;
    color: #718096;
    margin-top: 0.5rem;
}

/* Right Column - Form Card */
.contact-form-card {
    background: white;
    padding: 3rem;
    border-radius: 2rem;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.05), 0 10px 15px -3px rgba(0, 0, 0, 0.05);
    border: 1px solid #f1f5f9;
}

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

.form-group {
    margin-bottom: 1.5rem;
}

.form-group label {
    display: block;
    font-size: 0.875rem;
    font-weight: 600;
    color: #1a1a1a;
    margin-bottom: 0.5rem;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 1rem 1.25rem;
    background: #f8f9fa;
    border: 1px solid #e2e8f0;
    border-radius: 0.75rem;
    font-size: 0.938rem;
    color: #1a1a1a;
    transition: all 0.2s ease;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #FF6B3D;
    background: white;
    box-shadow: 0 0 0 3px rgba(255, 107, 61, 0.1);
}

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

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: #a0aec0;
}

/* Buttons */
.btn-pill-black {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    background: #1a1a1a;
    color: white;
    padding: 0.875rem 1.75rem;
    border-radius: 50px;
    font-weight: 600;
    font-size: 0.938rem;
    transition: all 0.2s ease;
    border: none;
    cursor: pointer;
}

.btn-pill-black:hover {
    background: #000;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}

.icon-arrow {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 24px;
    height: 24px;
    background: white;
    color: #1a1a1a;
    border-radius: 50%;
    font-size: 0.875rem;
    transition: transform 0.2s ease;
}

.btn-pill-black:hover .icon-arrow {
    transform: translateX(2px);
}

.form-submit-right {
    display: flex;
    justify-content: flex-end;
    margin-top: 1rem;
}

/* Responsive */
@media (max-width: 900px) {
    .contact-wrapper {
        grid-template-columns: 1fr;
        gap: 3rem;
    }

    .modern-heading {
        font-size: 2.5rem;
    }

    .contact-form-card {
        padding: 2rem;
    }
}

@media (max-width: 600px) {
    .form-row {
        grid-template-columns: 1fr;
        gap: 0;
    }
}

/* Footer Premium Dark Theme */
.footer {
    background: #0f172a;
    /* Darker, richer blue-black */
    color: #94a3b8;
    padding: 5rem 0 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    position: relative;
    overflow: hidden;
}

/* Subtle background glow effect */
.footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(255, 107, 61, 0.5), transparent);
}

.footer-content {
    display: grid;
    grid-template-columns: 1.5fr 1fr 2fr;
    /* Adjusted columns */
    gap: 4rem;
    margin-bottom: 4rem;
}

.footer-brand h3 {
    color: white;
    font-size: 2rem;
    margin-bottom: 1.5rem;
    letter-spacing: -0.02em;
    background: linear-gradient(135deg, #fff 0%, #cbd5e1 100%);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.footer-brand p {
    color: #94a3b8;
    line-height: 1.8;
    max-width: 320px;
    margin-bottom: 2rem;
    font-size: 0.938rem;
}

.social-links {
    display: flex;
    gap: 1.5rem;
}

.social-links a {
    color: #cbd5e1;
    font-size: 0.875rem;
    font-weight: 500;
    transition: all 0.2s ease;
}

.social-links a:hover {
    color: #FF6B3D;
    transform: translateY(-2px);
}

.footer-links h4 {
    color: white;
    font-size: 1rem;
    margin-bottom: 1.5rem;
    font-weight: 600;
    letter-spacing: 0.02em;
}

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

.footer-links li {
    margin-bottom: 1rem;
}

.footer-links a {
    color: #94a3b8;
    font-size: 0.938rem;
    transition: all 0.2s ease;
    display: inline-block;
}

.footer-links a:hover {
    color: white;
    transform: translateX(4px);
}

/* Premium Contact Info */
.contact-column {
    background: rgba(255, 255, 255, 0.03);
    padding: 2rem;
    border-radius: 1.5rem;
    border: 1px solid rgba(255, 255, 255, 0.05);
}

.contact-info-premium {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.contact-item {
    display: flex;
    gap: 1rem;
    align-items: flex-start;
}

.contact-item .icon {
    font-size: 1.25rem;
    line-height: 1;
    margin-top: 0.2rem;
}

.contact-item .details {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
}

.contact-item strong {
    color: white;
    font-weight: 600;
    font-size: 0.938rem;
}

.contact-item p {
    margin: 0;
    font-size: 0.875rem;
    line-height: 1.6;
    color: #94a3b8;
}

.contact-item a {
    color: #cbd5e1;
    font-size: 0.938rem;
    text-decoration: none;
    transition: color 0.2s ease;
}

.contact-item a:hover {
    color: #FF6B3D;
}

.footer-bottom {
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 0.875rem;
}

.footer-bottom p {
    color: #64748b;
    margin: 0;
}

.footer-legal {
    display: flex;
    gap: 2rem;
}

.footer-legal a {
    color: #64748b;
    transition: color 0.2s ease;
}

.footer-legal a:hover {
    color: #94a3b8;
}

/* Responsive */
@media (max-width: 1024px) {
    .features-grid-premium {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

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

    .footer-content {
        grid-template-columns: 1fr 1fr;
        gap: 3rem;
    }

    .contact-column {
        grid-column: span 2;
    }
}

@media (max-width: 768px) {
    .company-stats {
        gap: 1.5rem;
    }

    .company-stat {
        font-size: 0.875rem;
    }

    .features-grid-premium {
        gap: 1.5rem;
    }

    .feature-visual {
        padding: 2rem 1.5rem 1rem;
    }

    .testimonials-grid {
        gap: 1.5rem;
    }

    .cta-section-premium {
        padding: 0;
    }

    .cta-content {
        border-radius: 0;
        padding: 4rem 2rem;
    }

    .cta-actions {
        flex-direction: column;
        width: 100%;
    }

    .btn-primary-large,
    .btn-secondary-large {
        width: 100%;
        max-width: 400px;
    }

    .footer-content {
        grid-template-columns: 1fr;
        gap: 3rem;
    }

    .contact-column {
        grid-column: span 1;
        padding: 1.5rem;
    }

    .footer-bottom {
        flex-direction: column;
        gap: 1.5rem;
        text-align: center;
    }

    .footer-legal {
        flex-wrap: wrap;
        justify-content: center;
        gap: 1.5rem;
    }

    .form-grid {
        padding: 2rem 1.5rem;
    }
}