/*
Theme Name: SMtheme
Description: Premium PearStream IPTV WordPress theme with Elementor compatibility. Features dynamic pages, custom header/footer management, mobile-responsive design, and seamless streaming experience for over 9,000+ channels.
Version: 1.0.0
Author: Shahid Malla
Author URI: https://shahidmalla.com
Text Domain: smtheme
Domain Path: /languages
Requires at least: 5.0
Tested up to: 6.4
Requires PHP: 7.4
License: GPL v2 or later
License URI: https://www.gnu.org/licenses/gpl-2.0.html
Tags: streaming, iptv, entertainment, elementor, responsive, custom-header, custom-footer, pearstream
*/

/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    background: #0a0a0a;
    color: #ffffff;
    line-height: 1.6;
    overflow-x: hidden;
}

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

/* Button Styles */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 12px 24px;
    background: linear-gradient(135deg, #CCFF00, #22c55e);
    color: #000;
    text-decoration: none;
    border-radius: 8px;
    font-weight: 600;
    font-size: 16px;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
}

.btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(204, 255, 0, 0.3);
    color: #000;
    text-decoration: none;
}

.btn-secondary {
    background: rgba(255, 255, 255, 0.1);
    color: #fff;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.btn-secondary:hover {
    background: rgba(255, 255, 255, 0.2);
    color: #fff;
}

/* Original Theme Styles - Exact Copy */
.hero {
    padding: 120px 0 80px;
    position: relative;
    min-height: 90vh;
    display: flex;
    align-items: center;
}

.hero .container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.trust-badge {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 24px;
    padding: 8px 16px;
    background: rgba(34, 197, 94, 0.1);
    border: 1px solid rgba(34, 197, 94, 0.3);
    border-radius: 20px;
    width: fit-content;
}

.stars {
    display: flex;
    align-items: center;
    gap: 8px;
    color: gold;
}

.stars i {
    font-size: 14px;
}

.rating {
    color: #ccc;
    font-size: 14px;
}

.trust-text {
    color: #22c55e;
    font-weight: 600;
    font-size: 14px;
}

.hero-title {
    font-size: 48px;
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: 24px;
    background: linear-gradient(135deg, #fff, #CCFF00);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-description {
    font-size: 18px;
    color: #ccc;
    margin-bottom: 32px;
    line-height: 1.6;
}

.hero-actions {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.guarantee {
    display: flex;
    align-items: center;
    gap: 8px;
    color: #ccc;
    font-size: 14px;
}

.guarantee-icon {
    font-size: 16px;
    color: #22c55e;
}

.tv-interface {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.1), rgba(255, 255, 255, 0.05));
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 16px;
    padding: 24px;
    backdrop-filter: blur(10px);
}

.tv-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 24px;
    padding-bottom: 16px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.tv-logo {
    font-size: 18px;
    font-weight: 800;
}

.tv-time {
    color: #ccc;
    font-size: 14px;
}

.tv-controls {
    display: flex;
    gap: 12px;
    color: #ccc;
}

.tv-controls span {
    cursor: pointer;
    transition: color 0.3s ease;
}

.tv-controls span:hover {
    color: #CCFF00;
}

.main-player {
    position: relative;
    background: linear-gradient(135deg, #1e3a8a, #3b82f6);
    border-radius: 12px;
    height: 200px;
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.player-overlay {
    display: flex;
    align-items: center;
    justify-content: center;
}

.play-button {
    width: 60px;
    height: 60px;
    background: rgba(204, 255, 0, 0.9);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #000;
    font-size: 24px;
    cursor: pointer;
    transition: transform 0.3s ease;
}

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

.continue-watching {
    position: absolute;
    bottom: 16px;
    left: 16px;
    color: #fff;
    font-size: 14px;
}

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

.content-item {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 8px;
    padding: 16px;
    display: flex;
    align-items: center;
    gap: 12px;
    transition: all 0.3s ease;
    cursor: pointer;
}

.content-item:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(204, 255, 0, 0.3);
    transform: translateY(-2px);
}

.content-icon {
    font-size: 24px;
    color: #CCFF00;
}

.content-info {
    display: flex;
    flex-direction: column;
}

.content-title {
    font-weight: 600;
    font-size: 14px;
}

.content-subtitle {
    color: #ccc;
    font-size: 12px;
}

.quick-actions {
    display: flex;
    justify-content: space-between;
    margin-bottom: 24px;
}

.action-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 4px;
    font-size: 12px;
    color: #ccc;
    cursor: pointer;
    transition: all 0.3s ease;
}

.action-item:hover {
    color: #CCFF00;
    transform: translateY(-2px);
}

.action-icon {
    font-size: 20px;
    color: #CCFF00;
}

.favorite-channels h4 {
    font-size: 14px;
    margin-bottom: 12px;
    color: #fff;
}

.channel-logos {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.channel-logo {
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 6px;
    padding: 6px 12px;
    font-size: 10px;
    font-weight: 600;
    color: #fff;
}

/* Features Section */
.features {
    padding: 80px 0;
    position: relative;
}

.features-header {
    text-align: center;
    margin-bottom: 60px;
}

.features-header h2 {
    font-size: 36px;
    font-weight: 700;
    margin-bottom: 16px;
    color: #fff;
}

.features-header p {
    font-size: 18px;
    color: #ccc;
    max-width: 600px;
    margin: 0 auto;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 24px;
    margin-bottom: 80px;
}

.feature-card {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    padding: 24px;
    text-align: center;
    transition: all 0.4s ease;
    cursor: pointer;
}

.feature-card:hover {
    background: rgba(255, 255, 255, 0.08);
    border-color: rgba(204, 255, 0, 0.3);
    transform: translateY(-8px) scale(1.02);
    box-shadow: 0 15px 40px rgba(204, 255, 0, 0.15);
}

.feature-icon {
    font-size: 32px;
    margin-bottom: 16px;
    color: #CCFF00;
    transition: transform 0.3s ease;
}

.feature-card:hover .feature-icon {
    transform: scale(1.2) rotate(5deg);
}

.feature-card h3 {
    font-size: 18px;
    font-weight: 600;
    color: #fff;
}

.channels-showcase {
    background: linear-gradient(135deg, rgba(34, 197, 94, 0.1), rgba(22, 163, 74, 0.1));
    border: 1px solid rgba(34, 197, 94, 0.2);
    border-radius: 20px;
    padding: 40px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: center;
}

.showcase-content h3 {
    font-size: 32px;
    font-weight: 700;
    margin-bottom: 16px;
    color: #fff;
}

.accent {
    color: #CCFF00;
}

.showcase-content p {
    font-size: 16px;
    color: #ccc;
    margin-bottom: 24px;
    line-height: 1.6;
}

.arrow {
    margin-left: 8px;
    transition: all 0.3s ease;
}

.btn:hover .arrow {
    transform: translateX(6px) scale(1.1);
}

.showcase-visual {
    position: relative;
}

.channel-preview {
    background: rgba(0, 0, 0, 0.3);
    border-radius: 12px;
    padding: 20px;
}

.channel-item {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 12px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.channel-item:last-child {
    border-bottom: none;
}

.channel-number {
    background: #CCFF00;
    color: #000;
    font-weight: 600;
    padding: 4px 8px;
    border-radius: 4px;
    font-size: 12px;
    min-width: 32px;
    text-align: center;
}

.channel-name {
    color: #fff;
    font-weight: 500;
}

.channel-count {
    text-align: center;
    margin-top: 16px;
    color: #ccc;
    font-size: 14px;
}

/* Movies Section */
.movies {
    padding: 80px 0;
    background: linear-gradient(135deg, rgba(139, 69, 19, 0.1), rgba(101, 67, 33, 0.1));
}

.movies .container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.movies-content h2 {
    font-size: 36px;
    font-weight: 700;
    margin-bottom: 20px;
    color: #fff;
    line-height: 1.3;
}

.movies-content p {
    font-size: 16px;
    color: #ccc;
    line-height: 1.6;
}

.search-demo {
    background: rgba(0, 0, 0, 0.4);
    border-radius: 16px;
    padding: 24px;
    backdrop-filter: blur(10px);
}

.search-bar {
    display: flex;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 8px;
    margin-bottom: 20px;
    overflow: hidden;
}

.search-bar input {
    flex: 1;
    background: none;
    border: none;
    padding: 12px 16px;
    color: #fff;
    font-size: 16px;
}

.search-bar input::placeholder {
    color: #ccc;
}

.search-bar button {
    background: #CCFF00;
    border: none;
    padding: 12px 16px;
    cursor: pointer;
    font-size: 16px;
    color: #000;
    transition: all 0.3s ease;
}

.search-bar button:hover {
    background: #b8e600;
    transform: scale(1.05);
}

.search-results {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.movie-result {
    display: flex;
    gap: 16px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 8px;
    padding: 12px;
    align-items: center;
    transition: all 0.3s ease;
    cursor: pointer;
}

.movie-result:hover {
    background: rgba(255, 255, 255, 0.1);
    transform: translateX(8px);
    border-left: 3px solid #CCFF00;
}

.movie-result img {
    width: 80px;
    height: 60px;
    object-fit: cover;
    border-radius: 6px;
    transition: transform 0.3s ease;
}

.movie-info {
    flex: 1;
}

.movie-info h4 {
    color: #fff;
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 4px;
}

.movie-info p {
    color: #ccc;
    font-size: 14px;
}

.disney-badge {
    background: #0066cc;
    color: #fff;
    padding: 4px 8px;
    border-radius: 4px;
    font-size: 12px;
    font-weight: 600;
}

/* Device Compatibility Section */
.device-compatibility {
    padding: 80px 0;
    background: linear-gradient(135deg, rgba(59, 130, 246, 0.1), rgba(37, 99, 235, 0.1));
}

.compatibility-header {
    text-align: center;
    margin-bottom: 60px;
}

.compatibility-header h2 {
    font-size: 36px;
    font-weight: 700;
    margin-bottom: 20px;
    color: #fff;
}

.compatibility-header p {
    font-size: 18px;
    color: #ccc;
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.6;
}

.devices-showcase {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 40px;
    margin-bottom: 60px;
}

.device-category {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 16px;
    padding: 32px;
    transition: all 0.3s ease;
}

.device-category:hover {
    background: rgba(255, 255, 255, 0.08);
    border-color: rgba(204, 255, 0, 0.3);
    transform: translateY(-4px);
}

.category-header {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-bottom: 24px;
}

.category-icon {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, #CCFF00, #22c55e);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #000;
    font-size: 24px;
}

.category-header h3 {
    font-size: 20px;
    font-weight: 600;
    color: #fff;
}

.device-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
    gap: 16px;
}

.device-item {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    padding: 20px;
    text-align: center;
    transition: all 0.3s ease;
    cursor: pointer;
}

.device-item:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(204, 255, 0, 0.3);
    transform: translateY(-4px) scale(1.05);
}

.device-item i {
    font-size: 32px;
    color: #CCFF00;
    margin-bottom: 12px;
    display: block;
    transition: transform 0.3s ease;
}

.device-item:hover i {
    transform: scale(1.2);
}

.device-item span {
    color: #fff;
    font-size: 14px;
    font-weight: 500;
}

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

.feature-highlight {
    display: flex;
    gap: 20px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    padding: 24px;
    transition: all 0.3s ease;
}

.feature-highlight:hover {
    background: rgba(255, 255, 255, 0.08);
    border-color: rgba(204, 255, 0, 0.3);
    transform: translateY(-2px);
}

.highlight-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #CCFF00, #22c55e);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #000;
    font-size: 24px;
    flex-shrink: 0;
}

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

.highlight-content p {
    color: #ccc;
    line-height: 1.6;
    font-size: 14px;
}

/* Security Section */
.security {
    padding: 80px 0;
    background: linear-gradient(135deg, rgba(139, 69, 19, 0.1), rgba(101, 67, 33, 0.1));
}

.security-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.security-text h2 {
    font-size: 36px;
    font-weight: 700;
    margin-bottom: 20px;
    color: #fff;
    line-height: 1.3;
}

.security-text p {
    font-size: 18px;
    color: #ccc;
    line-height: 1.6;
    margin-bottom: 40px;
}

.security-features {
    display: flex;
    flex-direction: column;
    gap: 24px;
    margin-bottom: 40px;
}

.security-feature {
    display: flex;
    gap: 16px;
    align-items: flex-start;
    transition: all 0.3s ease;
    padding: 16px;
    border-radius: 12px;
}

.security-feature:hover {
    background: rgba(255, 255, 255, 0.05);
    transform: translateX(8px);
}

.feature-icon {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, #CCFF00, #22c55e);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #000;
    font-size: 20px;
    flex-shrink: 0;
}

.feature-content h4 {
    font-size: 16px;
    font-weight: 600;
    color: #fff;
    margin-bottom: 4px;
}

.feature-content p {
    font-size: 14px;
    color: #ccc;
    margin: 0;
}

.security-visual {
    position: relative;
}

.security-dashboard {
    background: rgba(0, 0, 0, 0.4);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 16px;
    padding: 32px;
    backdrop-filter: blur(10px);
}

.dashboard-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 32px;
    padding-bottom: 16px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.status-indicator {
    display: flex;
    align-items: center;
    gap: 8px;
    color: #22c55e;
    font-weight: 500;
}

.status-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: #22c55e;
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0% { opacity: 1; }
    50% { opacity: 0.5; }
    100% { opacity: 1; }
}

.encryption-badge {
    display: flex;
    align-items: center;
    gap: 8px;
    background: rgba(204, 255, 0, 0.1);
    border: 1px solid rgba(204, 255, 0, 0.3);
    border-radius: 20px;
    padding: 8px 16px;
    color: #CCFF00;
    font-size: 14px;
    font-weight: 500;
}

.security-metrics {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 24px;
    margin-bottom: 32px;
}

.metric-item {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    padding: 20px;
    text-align: center;
    transition: all 0.3s ease;
}

.metric-item:hover {
    background: rgba(255, 255, 255, 0.08);
    border-color: rgba(204, 255, 0, 0.3);
    transform: translateY(-4px);
}

.metric-icon {
    font-size: 24px;
    color: #CCFF00;
    margin-bottom: 12px;
}

.metric-value {
    display: block;
    font-size: 24px;
    font-weight: 800;
    color: #fff;
    margin-bottom: 4px;
}

.metric-label {
    font-size: 12px;
    color: #ccc;
}

.security-certifications h4 {
    color: #fff;
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 16px;
    text-align: center;
}

.cert-badges {
    display: flex;
    justify-content: center;
    gap: 16px;
    flex-wrap: wrap;
}

.cert-badge {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 8px;
    padding: 16px;
    transition: all 0.3s ease;
}

.cert-badge:hover {
    background: rgba(255, 255, 255, 0.08);
    border-color: rgba(204, 255, 0, 0.3);
    transform: scale(1.05);
}

.cert-badge i {
    font-size: 20px;
    color: #CCFF00;
}

.cert-badge span {
    font-size: 12px;
    color: #fff;
    font-weight: 500;
}

/* Reviews Section */
.reviews {
    padding: 80px 0;
    background: linear-gradient(135deg, rgba(34, 197, 94, 0.05), rgba(22, 163, 74, 0.05));
}

.reviews-header {
    text-align: center;
    margin-bottom: 60px;
}

.reviews-header h2 {
    font-size: 36px;
    font-weight: 700;
    margin-bottom: 16px;
    color: #fff;
}

.reviews-header p {
    font-size: 18px;
    color: #ccc;
    max-width: 600px;
    margin: 0 auto;
}

.reviews-slider {
    position: relative;
    overflow: hidden;
    margin-bottom: 60px;
}

.reviews-track {
    display: flex;
    transition: transform 0.5s ease;
    gap: 24px;
}

.review-card {
    min-width: 400px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 16px;
    padding: 32px;
    transition: all 0.3s ease;
}

.review-card:hover {
    background: rgba(255, 255, 255, 0.08);
    border-color: rgba(204, 255, 0, 0.3);
    transform: translateY(-4px);
}

.review-stars {
    display: flex;
    gap: 4px;
    margin-bottom: 20px;
    color: gold;
}

.review-text {
    color: #ccc;
    line-height: 1.6;
    margin-bottom: 24px;
    font-style: italic;
}

.review-author {
    display: flex;
    align-items: center;
    gap: 16px;
}

.author-avatar {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, #CCFF00, #22c55e);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #000;
    font-size: 20px;
}

.author-info h4 {
    color: #fff;
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 4px;
}

.author-info span {
    color: #ccc;
    font-size: 14px;
}

.slider-controls {
    display: flex;
    justify-content: center;
    gap: 16px;
    margin-top: 32px;
}

.slider-btn {
    width: 50px;
    height: 50px;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    color: #fff;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}

.slider-btn:hover {
    background: #CCFF00;
    color: #000;
    transform: scale(1.1);
}

.reviews-stats {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 32px;
    text-align: center;
}

.stat-item {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    padding: 24px;
    transition: all 0.3s ease;
}

.stat-item:hover {
    transform: translateY(-4px);
    border-color: rgba(204, 255, 0, 0.3);
}

.stat-number {
    font-size: 32px;
    font-weight: 800;
    color: #CCFF00;
    margin-bottom: 8px;
}

.stat-label {
    color: #ccc;
    font-weight: 500;
    margin-bottom: 8px;
}

.stat-stars {
    color: gold;
}

/* Responsive Design */
@media (max-width: 768px) {
    .hero .container {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .hero-title {
        font-size: 36px;
    }
    
    .hero-description {
        font-size: 16px;
    }
    
    .content-grid {
        grid-template-columns: 1fr;
    }
    
    .quick-actions {
        flex-wrap: wrap;
        gap: 16px;
    }
    
    .features-header h2 {
        font-size: 28px;
    }
    
    .features-grid {
        grid-template-columns: 1fr;
    }
    
    .channels-showcase {
        grid-template-columns: 1fr;
        gap: 30px;
        padding: 30px 20px;
    }
    
    .showcase-content h3 {
        font-size: 24px;
    }
    
    .movies .container {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .movies-content h2 {
        font-size: 28px;
    }
    
    .movie-result {
        flex-direction: column;
        text-align: center;
    }
    
    .movie-result img {
        width: 100px;
        height: 75px;
    }
    
    .compatibility-header h2 {
        font-size: 28px;
    }
    
    .devices-showcase {
        grid-template-columns: 1fr;
    }
    
    .device-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .compatibility-features {
        grid-template-columns: 1fr;
    }
    
    .feature-highlight {
        flex-direction: column;
        text-align: center;
    }
    
    .security-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .security-text h2 {
        font-size: 28px;
    }
    
    .security-metrics {
        grid-template-columns: 1fr;
    }
    
    .cert-badges {
        flex-direction: column;
        align-items: center;
    }
    
    .review-card {
        min-width: 300px;
    }
    
    .reviews-header h2 {
        font-size: 28px;
    }
    
    .reviews-stats {
        grid-template-columns: 1fr;
    }
}

