/* Net Speed Meter Plus Product Page Styles */
/* Professional, Elegant & Conversion-Optimized Design */

/* ===== Custom Color Scheme ===== */
:root {
    --speed-primary: #00A8CC;
    --speed-secondary: #0066CC;
    --speed-accent: #00D9FF;
    --speed-success: #00C853;
    --speed-dark: #003D5C;
    --speed-gradient: linear-gradient(135deg, #00A8CC 0%, #0066CC 100%);
    --speed-gradient-hover: linear-gradient(135deg, #0066CC 0%, #00A8CC 100%);
    --glass-bg: rgba(255, 255, 255, 0.95);
    --glass-border: rgba(0, 168, 204, 0.2);
}

/* ===== Product Hero Section ===== */
.product-hero {
    padding: 80px 0 100px;
    background: linear-gradient(135deg, #f0f9ff 0%, #e0f2fe 50%, #f0f9ff 100%);
    position: relative;
    overflow: hidden;
}

.product-hero::before {
    content: '';
    position: absolute;
    top: -30%;
    right: -15%;
    width: 700px;
    height: 700px;
    background: radial-gradient(circle, rgba(0, 168, 204, 0.15) 0%, transparent 70%);
    border-radius: 50%;
    animation: float 8s ease-in-out infinite;
}

.product-hero::after {
    content: '';
    position: absolute;
    bottom: -20%;
    left: -10%;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(0, 102, 204, 0.1) 0%, transparent 70%);
    border-radius: 50%;
    animation: float 10s ease-in-out infinite reverse;
}

@keyframes float {
    0%, 100% { transform: translateY(0) rotate(0deg); }
    50% { transform: translateY(-30px) rotate(5deg); }
}

/* ===== Breadcrumb ===== */
.breadcrumb {
    background: transparent;
    padding: 0;
    margin-bottom: var(--spacing-lg);
    font-size: 0.9rem;
}

.breadcrumb-item + .breadcrumb-item::before {
    content: '›';
    color: var(--speed-primary);
    font-weight: 600;
}

.breadcrumb-item a {
    color: var(--speed-secondary);
    text-decoration: none;
    transition: all 0.3s ease;
}

.breadcrumb-item a:hover {
    color: var(--speed-primary);
}

.breadcrumb-item.active {
    color: var(--text-secondary);
}

/* ===== Product Badges ===== */
.product-badges {
    display: flex;
    gap: var(--spacing-sm);
    flex-wrap: wrap;
    margin-bottom: var(--spacing-lg);
}

.product-badges .badge {
    padding: 8px 16px;
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    border-radius: 50px;
    display: inline-flex;
    align-items: center;
    gap: 6px;
}

.badge-featured {
    background: linear-gradient(135deg, #FFD700 0%, #FFA500 100%);
    color: #1a1a1a;
    box-shadow: 0 4px 15px rgba(255, 215, 0, 0.3);
}

.badge-windows {
    background: var(--speed-gradient);
    color: white;
    box-shadow: 0 4px 15px rgba(0, 168, 204, 0.3);
}

.badge-new {
    background: linear-gradient(135deg, #00C853 0%, #00E676 100%);
    color: white;
    box-shadow: 0 4px 15px rgba(0, 200, 83, 0.3);
    animation: pulse 2s ease-in-out infinite;
}

@keyframes pulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.05); }
}

/* ===== Product Title ===== */
.product-title {
    font-size: 3.5rem;
    font-weight: 900;
    margin-bottom: var(--spacing-sm);
    color: var(--text-primary);
    line-height: 1.1;
    background: linear-gradient(135deg, var(--speed-dark) 0%, var(--speed-secondary) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.product-subtitle {
    font-size: 1.35rem;
    color: var(--text-secondary);
    margin-bottom: var(--spacing-xl);
    font-weight: 400;
    line-height: 1.6;
}

/* ===== Rating Section ===== */
.product-rating-section {
    display: flex;
    align-items: center;
    gap: var(--spacing-md);
    flex-wrap: wrap;
    padding: var(--spacing-md) var(--spacing-lg);
    background: var(--glass-bg);
    border-radius: var(--radius-lg);
    border: 1px solid var(--glass-border);
    width: fit-content;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
}

.rating-stars {
    display: flex;
    align-items: center;
    gap: 4px;
}

.rating-stars i {
    color: #FFD700;
    font-size: 1.1rem;
    filter: drop-shadow(0 2px 4px rgba(255, 215, 0, 0.3));
}

.rating-value {
    font-weight: 800;
    font-size: 1.25rem;
    color: var(--text-primary);
    margin-left: 8px;
}

.rating-count {
    color: var(--text-secondary);
    font-size: 0.95rem;
}

.download-count {
    color: var(--speed-primary);
    font-weight: 600;
    font-size: 0.95rem;
}

/* ===== Quick Features ===== */
.quick-features {
    list-style: none;
    padding: 0;
    margin: var(--spacing-xl) 0;
}

.quick-features li {
    display: flex;
    align-items: center;
    gap: var(--spacing-sm);
    padding: var(--spacing-sm) 0;
    font-size: 1.05rem;
    color: var(--text-primary);
    transition: all 0.3s ease;
}

.quick-features li:hover {
    transform: translateX(8px);
}

.quick-features li i {
    color: var(--speed-success);
    font-size: 1.2rem;
    filter: drop-shadow(0 2px 4px rgba(0, 200, 83, 0.3));
}

/* ===== Price & Purchase Section ===== */
.product-purchase {
    background: white;
    padding: var(--spacing-2xl);
    border-radius: var(--radius-xl);
    box-shadow: 0 10px 40px rgba(0, 168, 204, 0.15);
    border: 2px solid var(--glass-border);
    margin: var(--spacing-xl) 0;
    position: relative;
    overflow: hidden;
}

.product-purchase::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: var(--speed-gradient);
}

.price-section {
    margin-bottom: var(--spacing-lg);
}

.price-current {
    font-size: 3rem;
    font-weight: 900;
    color: var(--speed-primary);
    display: block;
    line-height: 1;
    text-shadow: 0 2px 10px rgba(0, 168, 204, 0.2);
}

.price-note {
    color: var(--text-secondary);
    font-size: 0.95rem;
    margin-top: var(--spacing-xs);
    display: block;
}

.cta-buttons {
    display: flex;
    flex-direction: column;
    gap: var(--spacing-md);
}

.cta-buttons .btn-primary {
    background: var(--speed-gradient);
    border: none;
    padding: 18px 32px;
    font-size: 1.1rem;
    font-weight: 700;
    border-radius: var(--radius-lg);
    box-shadow: 0 8px 25px rgba(0, 168, 204, 0.35);
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: var(--spacing-sm);
}

.cta-buttons .btn-primary:hover {
    background: var(--speed-gradient-hover);
    transform: translateY(-3px);
    box-shadow: 0 12px 35px rgba(0, 168, 204, 0.45);
}

.cta-buttons .btn-outline {
    background: transparent;
    border: 2px solid var(--speed-primary);
    color: var(--speed-primary);
    padding: 16px 32px;
    font-size: 1rem;
    font-weight: 600;
    border-radius: var(--radius-lg);
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: var(--spacing-sm);
}

.cta-buttons .btn-outline:hover {
    background: var(--speed-primary);
    color: white;
    transform: translateY(-2px);
}

/* ===== Product Meta ===== */
.product-meta {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: var(--spacing-md);
    margin-top: var(--spacing-xl);
    padding-top: var(--spacing-xl);
    border-top: 1px solid var(--border-color);
}

.meta-item {
    display: flex;
    align-items: center;
    gap: var(--spacing-sm);
    color: var(--text-secondary);
    font-size: 0.9rem;
}

.meta-item i {
    color: var(--speed-primary);
    width: 20px;
    text-align: center;
}

/* ===== Hero Image Section ===== */
.product-hero-image {
    position: relative;
    z-index: 1;
}

.main-screenshot {
    width: 100%;
    border-radius: var(--radius-xl);
    box-shadow: 0 25px 80px rgba(0, 102, 204, 0.25);
    transition: all 0.5s ease;
    border: 3px solid white;
}

.main-screenshot:hover {
    transform: scale(1.02) translateY(-5px);
    box-shadow: 0 35px 100px rgba(0, 102, 204, 0.35);
}

.screenshot-thumbnails {
    display: flex;
    gap: var(--spacing-sm);
    margin-top: var(--spacing-lg);
    overflow-x: auto;
    padding: var(--spacing-sm);
    scrollbar-width: thin;
    scrollbar-color: var(--speed-primary) transparent;
}

.screenshot-thumbnails::-webkit-scrollbar {
    height: 6px;
}

.screenshot-thumbnails::-webkit-scrollbar-track {
    background: transparent;
}

.screenshot-thumbnails::-webkit-scrollbar-thumb {
    background: var(--speed-primary);
    border-radius: 3px;
}

.thumbnail {
    width: 100px;
    height: 70px;
    object-fit: cover;
    border-radius: var(--radius-md);
    cursor: pointer;
    transition: all 0.3s ease;
    border: 3px solid transparent;
    opacity: 0.7;
    flex-shrink: 0;
}

.thumbnail:hover {
    opacity: 1;
    transform: translateY(-4px);
}

.thumbnail.active {
    border-color: var(--speed-primary);
    opacity: 1;
    box-shadow: 0 4px 15px rgba(0, 168, 204, 0.4);
}

/* ===== Key Features Section ===== */
.key-features-section {
    padding: 100px 0;
    background: white;
}

.section-title {
    font-size: 2.5rem;
    font-weight: 800;
    text-align: center;
    margin-bottom: var(--spacing-md);
    color: var(--text-primary);
}

.section-subtitle {
    text-align: center;
    color: var(--text-secondary);
    font-size: 1.15rem;
    max-width: 600px;
    margin: 0 auto var(--spacing-3xl);
    line-height: 1.7;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: var(--spacing-xl);
}

.feature-card {
    background: white;
    padding: var(--spacing-2xl);
    border-radius: var(--radius-xl);
    border: 2px solid var(--border-color);
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
}

.feature-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: var(--speed-gradient);
    transform: scaleX(0);
    transition: transform 0.4s ease;
}

.feature-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 50px rgba(0, 168, 204, 0.15);
    border-color: var(--speed-accent);
}

.feature-card:hover::before {
    transform: scaleX(1);
}

.feature-icon {
    width: 70px;
    height: 70px;
    background: var(--speed-gradient);
    border-radius: var(--radius-lg);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: var(--spacing-lg);
    box-shadow: 0 8px 25px rgba(0, 168, 204, 0.3);
    transition: all 0.4s ease;
}

.feature-card:hover .feature-icon {
    transform: scale(1.1) rotate(5deg);
}

.feature-icon i {
    font-size: 1.75rem;
    color: white;
}

.feature-card h3 {
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: var(--spacing-sm);
    color: var(--text-primary);
}

.feature-card p {
    color: var(--text-secondary);
    line-height: 1.7;
    margin: 0;
}

/* ===== Description Section ===== */
.description-section {
    padding: 100px 0;
    background: linear-gradient(180deg, #f8fafc 0%, white 100%);
}

.description-content {
    background: white;
    padding: var(--spacing-3xl);
    border-radius: var(--radius-xl);
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.05);
    border: 1px solid var(--border-color);
}

.description-content .lead {
    font-size: 1.25rem;
    line-height: 1.8;
    color: var(--text-primary);
    margin-bottom: var(--spacing-2xl);
    padding-bottom: var(--spacing-2xl);
    border-bottom: 2px solid var(--border-color);
}

.description-content h2 {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--speed-secondary);
    margin: var(--spacing-2xl) 0 var(--spacing-lg);
    display: flex;
    align-items: center;
    gap: var(--spacing-sm);
}

.description-content p {
    color: var(--text-secondary);
    line-height: 1.8;
    margin-bottom: var(--spacing-lg);
}

.description-content ul {
    list-style: none;
    padding: 0;
    margin: var(--spacing-lg) 0;
}

.description-content ul li {
    padding: var(--spacing-sm) 0;
    padding-left: var(--spacing-xl);
    position: relative;
    color: var(--text-secondary);
    line-height: 1.7;
}

.description-content ul li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--speed-success);
    font-weight: 700;
}

/* ===== Perfect For Section ===== */
.perfect-for-section {
    padding: 100px 0;
    background: linear-gradient(135deg, #f0f9ff 0%, #e0f2fe 100%);
}

.perfect-for-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    gap: var(--spacing-lg);
}

.perfect-for-card {
    background: white;
    padding: var(--spacing-xl);
    border-radius: var(--radius-xl);
    text-align: center;
    transition: all 0.4s ease;
    border: 2px solid transparent;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
}

.perfect-for-card:hover {
    transform: translateY(-10px);
    border-color: var(--speed-primary);
    box-shadow: 0 15px 40px rgba(0, 168, 204, 0.2);
}

.perfect-for-card i {
    font-size: 2.5rem;
    color: var(--speed-primary);
    margin-bottom: var(--spacing-md);
    transition: all 0.4s ease;
}

.perfect-for-card:hover i {
    transform: scale(1.2);
    color: var(--speed-accent);
}

.perfect-for-card h4 {
    font-size: 1.1rem;
    font-weight: 700;
    margin-bottom: var(--spacing-sm);
    color: var(--text-primary);
}

.perfect-for-card p {
    font-size: 0.9rem;
    color: var(--text-secondary);
    margin: 0;
    line-height: 1.6;
}

/* ===== What's New Section ===== */
.whats-new-section {
    padding: 100px 0;
    background: white;
}

.whats-new-content {
    background: linear-gradient(135deg, #f0f9ff 0%, #e0f2fe 100%);
    padding: var(--spacing-3xl);
    border-radius: var(--radius-xl);
    border: 2px solid var(--glass-border);
}

.version-badge {
    display: inline-block;
    background: var(--speed-gradient);
    color: white;
    padding: 8px 20px;
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 700;
    margin-bottom: var(--spacing-lg);
    box-shadow: 0 4px 15px rgba(0, 168, 204, 0.3);
}

.whats-new-content h2 {
    font-size: 1.75rem;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: var(--spacing-xl);
}

.whats-new-content h3 {
    font-size: 1.15rem;
    font-weight: 700;
    color: var(--speed-secondary);
    margin: var(--spacing-xl) 0 var(--spacing-md);
}

.whats-new-content ul {
    list-style: none;
    padding: 0;
}

.whats-new-content ul li {
    padding: var(--spacing-sm) 0;
    color: var(--text-secondary);
    line-height: 1.7;
}

/* ===== System Requirements Section ===== */
.requirements-section {
    padding: 100px 0;
    background: linear-gradient(180deg, #f8fafc 0%, white 100%);
}

.requirements-card {
    background: white;
    padding: var(--spacing-2xl);
    border-radius: var(--radius-xl);
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.05);
    border: 2px solid var(--border-color);
    height: 100%;
    transition: all 0.3s ease;
}

.requirements-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 50px rgba(0, 168, 204, 0.15);
    border-color: var(--speed-primary);
}

.requirements-card h3 {
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: var(--spacing-xl);
    color: var(--text-primary);
    display: flex;
    align-items: center;
    gap: var(--spacing-sm);
}

.requirements-card h3 i {
    color: var(--speed-primary);
}

.requirements-card ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.requirements-card ul li {
    padding: var(--spacing-sm) 0;
    border-bottom: 1px solid var(--border-color);
    color: var(--text-secondary);
}

.requirements-card ul li:last-child {
    border-bottom: none;
}

.requirements-card ul li strong {
    color: var(--text-primary);
}

/* ===== Compatibility Card ===== */
.compatibility-card {
    background: white;
    padding: var(--spacing-2xl);
    border-radius: var(--radius-xl);
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.05);
    border: 2px solid var(--border-color);
    text-align: center;
}

.compatibility-card h3 {
    font-size: 1.5rem;
    margin-bottom: var(--spacing-xl);
    color: var(--text-primary);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: var(--spacing-sm);
}

.compatibility-card h3 i {
    color: var(--speed-primary);
}

.device-badges {
    display: flex;
    flex-wrap: wrap;
    gap: var(--spacing-md);
    justify-content: center;
}

.device-badge {
    display: inline-flex;
    align-items: center;
    gap: var(--spacing-sm);
    padding: var(--spacing-md) var(--spacing-xl);
    background: linear-gradient(135deg, #f0f9ff 0%, #e0f2fe 100%);
    border: 2px solid var(--glass-border);
    border-radius: var(--radius-lg);
    font-weight: 600;
    color: var(--text-primary);
    transition: all 0.3s ease;
}

.device-badge:hover {
    background: var(--speed-gradient);
    color: white;
    border-color: var(--speed-primary);
    transform: translateY(-4px);
    box-shadow: 0 8px 25px rgba(0, 168, 204, 0.3);
}

.device-badge i {
    font-size: 1.25rem;
}

/* ===== FAQ Section ===== */
.faq-section {
    padding: 100px 0;
    background: white;
}

.accordion-item {
    border: 2px solid var(--border-color);
    border-radius: var(--radius-lg) !important;
    margin-bottom: var(--spacing-md);
    overflow: hidden;
    transition: all 0.3s ease;
}

.accordion-item:hover {
    border-color: var(--speed-primary);
}

.accordion-button {
    font-weight: 600;
    color: var(--text-primary);
    padding: var(--spacing-lg) var(--spacing-xl);
    background: white;
}

.accordion-button:not(.collapsed) {
    background: linear-gradient(135deg, #f0f9ff 0%, #e0f2fe 100%);
    color: var(--speed-secondary);
}

.accordion-button:focus {
    box-shadow: none;
    border-color: var(--speed-primary);
}

.accordion-button::after {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%2300A8CC'%3e%3cpath fill-rule='evenodd' d='M1.646 4.646a.5.5 0 0 1 .708 0L8 10.293l5.646-5.647a.5.5 0 0 1 .708.708l-6 6a.5.5 0 0 1-.708 0l-6-6a.5.5 0 0 1 0-.708z'/%3e%3c/svg%3e");
}

.accordion-body {
    padding: var(--spacing-xl);
    color: var(--text-secondary);
    line-height: 1.8;
}

/* ===== CTA Section ===== */
.product-cta-section {
    padding: 100px 0;
    background: var(--speed-gradient);
    position: relative;
    overflow: hidden;
}

.product-cta-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.05'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}

.cta-content {
    position: relative;
    z-index: 1;
    text-align: center;
    max-width: 700px;
    margin: 0 auto;
}

.cta-content h2 {
    font-size: 2.5rem;
    font-weight: 800;
    color: white;
    margin-bottom: var(--spacing-md);
}

.cta-content > p {
    font-size: 1.2rem;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: var(--spacing-2xl);
}

.cta-content .cta-buttons {
    flex-direction: row;
    justify-content: center;
    flex-wrap: wrap;
}

.cta-content .btn-primary {
    background: white;
    color: var(--speed-secondary);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.2);
}

.cta-content .btn-primary:hover {
    background: #f0f9ff;
    transform: translateY(-3px);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.25);
}

.cta-content .btn-outline {
    border-color: white;
    color: white;
}

.cta-content .btn-outline:hover {
    background: white;
    color: var(--speed-secondary);
}

.cta-note {
    margin-top: var(--spacing-xl);
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.95rem;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: var(--spacing-sm);
    flex-wrap: wrap;
}

.cta-note i {
    color: #00E676;
}

/* ===== Testimonials Section ===== */
.testimonials-section {
    padding: 100px 0;
    background: linear-gradient(135deg, #f0f9ff 0%, #e0f2fe 100%);
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: var(--spacing-xl);
}

.testimonial-card {
    background: white;
    padding: var(--spacing-2xl);
    border-radius: var(--radius-xl);
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.05);
    border: 2px solid var(--border-color);
    transition: all 0.3s ease;
}

.testimonial-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 50px rgba(0, 168, 204, 0.15);
}

.testimonial-stars {
    color: #FFD700;
    margin-bottom: var(--spacing-md);
}

.testimonial-text {
    color: var(--text-secondary);
    line-height: 1.8;
    font-style: italic;
    margin-bottom: var(--spacing-lg);
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: var(--spacing-md);
}

.testimonial-avatar {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: var(--speed-gradient);
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-weight: 700;
    font-size: 1.25rem;
}

.testimonial-info h5 {
    font-weight: 700;
    color: var(--text-primary);
    margin: 0;
}

.testimonial-info span {
    font-size: 0.85rem;
    color: var(--text-secondary);
}

/* ===== Comparison Section ===== */
.comparison-section {
    padding: 100px 0;
    background: white;
}

.comparison-table {
    width: 100%;
    border-collapse: separate;
    border-spacing: 0;
    border-radius: var(--radius-xl);
    overflow: hidden;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.05);
}

.comparison-table th,
.comparison-table td {
    padding: var(--spacing-lg);
    text-align: center;
    border-bottom: 1px solid var(--border-color);
}

.comparison-table th {
    background: var(--speed-gradient);
    color: white;
    font-weight: 700;
}

.comparison-table th:first-child {
    text-align: left;
}

.comparison-table td:first-child {
    text-align: left;
    font-weight: 600;
    color: var(--text-primary);
}

.comparison-table tr:last-child td {
    border-bottom: none;
}

.comparison-table tr:hover td {
    background: #f0f9ff;
}

.comparison-table .check {
    color: var(--speed-success);
    font-size: 1.25rem;
}

.comparison-table .cross {
    color: #ccc;
    font-size: 1.25rem;
}

/* ===== Responsive Design ===== */
@media (max-width: 992px) {
    .product-title {
        font-size: 2.5rem;
    }
    
    .product-hero {
        padding: 60px 0 80px;
    }
    
    .section-title {
        font-size: 2rem;
    }
}

@media (max-width: 768px) {
    .product-title {
        font-size: 2rem;
    }
    
    .product-subtitle {
        font-size: 1.1rem;
    }
    
    .product-meta {
        grid-template-columns: 1fr;
    }
    
    .product-purchase {
        padding: var(--spacing-xl);
    }
    
    .price-current {
        font-size: 2.5rem;
    }
    
    .cta-content h2 {
        font-size: 1.75rem;
    }
    
    .cta-content .cta-buttons {
        flex-direction: column;
    }
    
    .device-badges {
        flex-direction: column;
        align-items: stretch;
    }
    
    .device-badge {
        justify-content: center;
    }
    
    .perfect-for-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 480px) {
    .product-title {
        font-size: 1.75rem;
    }
    
    .perfect-for-grid {
        grid-template-columns: 1fr;
    }
    
    .product-badges {
        justify-content: center;
    }
    
    .product-rating-section {
        justify-content: center;
        width: 100%;
    }
}
