/* Home Solutions Page Styles */

/* Hero Section */
.hero {
    background: linear-gradient(135deg, #0078d4 0%, #005a9e 100%);
    color: white;
    padding: 100px 0 80px;
    text-align: center;
}

.hero h1 {
    font-size: 52px;
    font-weight: 300;
    margin-bottom: 16px;
    letter-spacing: -0.5px;
}

.hero h2 {
    font-size: 36px;
    font-weight: 600;
    margin-bottom: 20px;
    letter-spacing: -0.3px;
}

.hero p {
    font-size: 20px;
    line-height: 1.6;
    max-width: 800px;
    margin: 0 auto;
    opacity: 0.95;
}

/* Product Cards Section */
.product-cards-section {
    padding: 80px 0;
    background: white;
}

.product-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(450px, 1fr));
    gap: 40px;
}

.product-card {
    background: white;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.product-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.15);
}

.product-image {
    width: 100%;
    height: 300px;
    overflow: hidden;
}

.product-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.product-content {
    padding: 40px;
}

.product-content h3 {
    font-size: 28px;
    font-weight: 600;
    margin-bottom: 16px;
    color: #222;
}

.product-content p {
    font-size: 16px;
    line-height: 1.6;
    color: #555;
    margin-bottom: 20px;
}

.product-price {
    font-size: 42px;
    font-weight: 700;
    color: #0078d4;
    margin-bottom: 24px;
}

.product-disclaimer {
    font-size: 13px;
    line-height: 1.5;
    color: #888;
    margin-top: 20px;
    font-style: italic;
}

/* App Showcase Section */
.app-showcase-section {
    padding: 60px 0;
    background: #f7f7f7;
}

.app-showcase-content {
    text-align: center;
}

.app-image {
    max-width: 100%;
    height: auto;
    border-radius: 12px;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.15);
}

/* Comparison Section */
.comparison-section {
    padding: 80px 0;
    background: white;
}

.section-title {
    font-size: 36px;
    font-weight: 600;
    text-align: center;
    margin-bottom: 60px;
    color: #222;
}

.comparison-table-wrapper {
    overflow-x: auto;
    margin-bottom: 40px;
}

.comparison-table {
    width: 100%;
    border-collapse: separate;
    border-spacing: 0;
    background: white;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}

.comparison-table thead th {
    background: #f7f7f7;
    padding: 30px 20px;
    text-align: center;
    border-bottom: 2px solid #e0e0e0;
}

.comparison-table .feature-column {
    width: 40%;
    text-align: left;
    font-weight: 600;
    color: #222;
}

.comparison-table .product-column {
    width: 30%;
}

.comparison-table .product-column.highlighted {
    background: #f0f8ff;
}

.product-header h3 {
    font-size: 22px;
    font-weight: 600;
    margin-bottom: 12px;
    color: #222;
}

.pricing-note {
    font-size: 13px;
    color: #666;
    margin-bottom: 16px;
}

.product-header .price {
    font-size: 32px;
    font-weight: 700;
    color: #0078d4;
    margin-bottom: 20px;
}

.comparison-table tbody tr {
    border-bottom: 1px solid #e0e0e0;
}

.comparison-table tbody tr:last-child {
    border-bottom: none;
}

.comparison-table tbody tr.even-row {
    background: #fafafa;
}

.comparison-table tbody tr.odd-row {
    background: white;
}

.comparison-table tbody tr.even-row.highlighted,
.comparison-table tbody tr.odd-row.highlighted {
    background: #f0f8ff;
}

.comparison-table tbody td {
    padding: 20px;
}

.feature-name {
    font-weight: 600;
    color: #333;
    font-size: 15px;
}

.feature-check {
    text-align: center;
}

.feature-check.highlighted {
    background: #f0f8ff;
}

.check-icon,
.x-icon {
    width: 24px;
    height: 24px;
}

/* Mobile Comparison View */
.mobile-comparison {
    display: none;
}

.mobile-product-card {
    background: white;
    padding: 40px;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    margin-bottom: 30px;
}

.mobile-product-card.highlighted {
    background: #f0f8ff;
    border: 2px solid #0078d4;
}

.mobile-product-card h3 {
    font-size: 24px;
    font-weight: 600;
    margin-bottom: 12px;
    color: #222;
}

.mobile-product-card .price {
    font-size: 36px;
    font-weight: 700;
    color: #0078d4;
    margin-bottom: 24px;
}

.mobile-product-card .feature-list {
    list-style: none;
    padding: 0;
    margin-top: 30px;
}

.mobile-product-card .feature-list li {
    display: flex;
    align-items: center;
    padding: 12px 0;
    border-bottom: 1px solid #e0e0e0;
}

.mobile-product-card .feature-list li:last-child {
    border-bottom: none;
}

.mobile-product-card .feature-list li img {
    width: 20px;
    height: 20px;
    margin-right: 12px;
}

.mobile-product-card .feature-list li span {
    font-size: 15px;
    color: #333;
}

/* Customization Section */
.customization-section {
    padding: 80px 0;
    background: #f7f7f7;
    text-align: center;
}

.customization-section h2 {
    font-size: 36px;
    font-weight: 600;
    margin-bottom: 20px;
    color: #222;
}

.customization-section > p {
    font-size: 18px;
    line-height: 1.6;
    color: #555;
    max-width: 800px;
    margin: 0 auto 32px;
}

.customization-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    margin-bottom: 24px;
}

.customization-note {
    font-size: 13px;
    color: #888;
    max-width: 700px;
    margin: 0 auto;
    font-style: italic;
}

/* Services Section */
.services-section {
    padding: 80px 0;
    background: white;
}

.services-section h2 {
    font-size: 36px;
    font-weight: 600;
    text-align: center;
    margin-bottom: 50px;
    color: #222;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 30px;
}

.service-card {
    background: white;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    text-decoration: none;
    display: block;
}

.service-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.15);
}

.service-card img {
    width: 100%;
    height: 200px;
    object-fit: cover;
}

.service-card h3 {
    padding: 20px;
    font-size: 20px;
    font-weight: 600;
    color: #222;
    text-align: center;
}

/* Disclaimer Section */
.disclaimer-section {
    padding: 60px 0;
    background: #f7f7f7;
}

.disclaimer-content {
    max-width: 1000px;
    margin: 0 auto;
}

.disclaimer-content h3 {
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 12px;
    color: #222;
}

.disclaimer-content p {
    font-size: 12px;
    line-height: 1.7;
    color: #666;
    margin-bottom: 24px;
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 14px 32px;
    font-size: 16px;
    font-weight: 600;
    text-decoration: none;
    border-radius: 4px;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
    text-align: center;
}

.btn-primary {
    background: #0078d4;
    color: white;
}

.btn-primary:hover {
    background: #005a9e;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 120, 212, 0.3);
}

.btn-secondary {
    background: white;
    color: #0078d4;
    border: 2px solid #0078d4;
}

.btn-secondary:hover {
    background: #0078d4;
    color: white;
    transform: translateY(-2px);
}

/* Fade-in Animation */
.fade-in {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

.fade-in.visible {
    opacity: 1;
    transform: translateY(0);
}

/* Container */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Responsive Design */
@media (max-width: 1024px) {
    .hero h1 {
        font-size: 44px;
    }

    .hero h2 {
        font-size: 32px;
    }

    .product-grid {
        grid-template-columns: 1fr;
    }

    .comparison-table-wrapper {
        display: none;
    }

    .mobile-comparison {
        display: block;
    }

    .customization-buttons {
        flex-direction: column;
        align-items: center;
    }

    .customization-buttons .btn {
        width: 100%;
        max-width: 400px;
    }

    .services-grid {
        grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    }
}

@media (max-width: 768px) {
    .hero {
        padding: 80px 0 60px;
    }

    .hero h1 {
        font-size: 36px;
    }

    .hero h2 {
        font-size: 28px;
    }

    .hero p {
        font-size: 18px;
    }

    .product-cards-section,
    .comparison-section,
    .customization-section,
    .services-section {
        padding: 60px 0;
    }

    .section-title,
    .customization-section h2,
    .services-section h2 {
        font-size: 28px;
    }

    .product-content {
        padding: 30px;
    }

    .product-price {
        font-size: 36px;
    }

    .services-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }

    .app-showcase-section {
        padding: 40px 0;
    }
}

@media (max-width: 480px) {
    .hero h1 {
        font-size: 28px;
    }

    .hero h2 {
        font-size: 24px;
    }

    .hero p {
        font-size: 16px;
    }

    .product-content h3 {
        font-size: 24px;
    }

    .product-price {
        font-size: 32px;
    }

    .mobile-product-card {
        padding: 30px 20px;
    }

    .services-grid {
        grid-template-columns: 1fr;
    }

    .section-title,
    .customization-section h2,
    .services-section h2 {
        font-size: 24px;
    }
}