/* Free & OEM Responsive Overrides */
@media (max-width: 768px) {
    .free-oem-section { padding: 60px 0; }
    .free-oem-grid { grid-template-columns: 1fr !important; gap: 20px; margin-top: 40px; }
    .free-oem-card { padding: 30px 20px; }
    .free-oem-card .fo-icon { width: 70px; height: 70px; font-size: 2rem; margin-bottom: 20px; }
    .free-oem-card h3 { font-size: 1.3rem; }
    .free-oem-card p { font-size: 0.95rem; }
}

/* Testimonials Section Styles */
.testimonials-section { position: relative; padding: 120px 0; background: #050a14; overflow: hidden; }
.testimonials-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 30px; margin-top: 60px; }
.testimonial-card { background: rgba(255, 255, 255, 0.02); border: 1px solid rgba(255, 255, 255, 0.08); border-radius: 24px; padding: 40px; backdrop-filter: blur(12px); transition: all 0.5s cubic-bezier(0.23, 1, 0.32, 1); position: relative; display: flex; flex-direction: column; }
.testimonial-card:hover { transform: translateY(-10px); background: rgba(255, 255, 255, 0.04); border-color: rgba(0, 242, 255, 0.4); box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4); }
.testi-quote { font-size: 2rem; color: var(--primary-color); margin-bottom: 20px; opacity: 0.5; }
.testi-text { color: rgba(255, 255, 255, 0.8); font-size: 1.1rem; line-height: 1.8; margin-bottom: 30px; flex-grow: 1; }
.testi-user { display: flex; align-items: center; gap: 15px; }
.user-avatar { width: 50px; height: 50px; border-radius: 50%; overflow: hidden; border: 2px solid rgba(0, 242, 255, 0.3); display: flex; justify-content: center; align-items: center; font-size: 1.5rem; color: var(--primary-color); background: rgba(0, 242, 255, 0.05); }
.user-info h4 { font-size: 1.1rem; color: #fff; margin-bottom: 4px; margin-top: 0; }
.user-info span { font-size: 0.85rem; color: rgba(255, 255, 255, 0.5); }
@media (max-width: 992px) { .testimonials-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 768px) { .testimonials-grid { grid-template-columns: 1fr; } .testimonial-card { padding: 30px; } }

/* P2P Remote Share Section */
.p2p-section {
    position: relative;
    padding: 120px 0;
    background: linear-gradient(180deg, #030810 0%, #0a1020 50%, #050a14 100%);
    overflow: hidden;
}

.p2p-bg-effects {
    position: absolute;
    inset: 0;
    pointer-events: none;
}

.p2p-glow {
    position: absolute;
    border-radius: 50%;
    filter: blur(100px);
}

.p2p-glow-1 {
    width: 500px;
    height: 500px;
    top: -100px;
    left: -100px;
    background: rgba(0, 255, 136, 0.08);
    animation: p2p-glow-drift 8s ease-in-out infinite alternate;
}

.p2p-glow-2 {
    width: 400px;
    height: 400px;
    bottom: -50px;
    right: -50px;
    background: rgba(0, 242, 255, 0.06);
    animation: p2p-glow-drift 10s ease-in-out infinite alternate-reverse;
}

@keyframes p2p-glow-drift {
    0% { transform: translate(0, 0); }
    100% { transform: translate(30px, -20px); }
}

.p2p-grid-lines {
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(rgba(0, 255, 136, 0.03) 1px, transparent 1px),
        linear-gradient(90deg, rgba(0, 255, 136, 0.03) 1px, transparent 1px);
    background-size: 80px 80px;
    mask-image: radial-gradient(ellipse at center, rgba(0,0,0,0.3) 0%, transparent 70%);
}

.p2p-header {
    text-align: center;
    margin-bottom: 70px;
    position: relative;
    z-index: 2;
}

.p2p-badge {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 10px 28px;
    background: linear-gradient(135deg, rgba(0, 255, 136, 0.12), rgba(0, 242, 255, 0.08));
    border: 1px solid rgba(0, 255, 136, 0.35);
    border-radius: 100px;
    color: #00ff88;
    font-size: 0.95rem;
    font-weight: 700;
    margin-bottom: 28px;
    letter-spacing: 1px;
    box-shadow: 0 0 30px rgba(0, 255, 136, 0.15);
}

.p2p-badge i {
    font-size: 1.1rem;
}

.p2p-title {
    font-size: 3.2rem;
    font-weight: 800;
    margin-bottom: 18px;
    background: linear-gradient(135deg, #00ff88, #00f2ff);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    letter-spacing: -0.5px;
}

.p2p-subtitle {
    font-size: 1.2rem;
    color: rgba(255, 255, 255, 0.55);
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.7;
}

.p2p-showcase {
    display: flex;
    align-items: center;
    gap: 80px;
    position: relative;
    z-index: 2;
}

.p2p-visual {
    flex: 0 0 400px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.p2p-device-ring {
    position: relative;
    width: 360px;
    height: 360px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.p2p-ring {
    position: absolute;
    border-radius: 50%;
    border: 1px solid;
}

.p2p-ring-1 {
    width: 340px;
    height: 340px;
    border-color: rgba(0, 255, 136, 0.1);
    animation: p2p-ring-rotate 20s linear infinite;
}

.p2p-ring-2 {
    width: 260px;
    height: 260px;
    border-color: rgba(0, 242, 255, 0.12);
    animation: p2p-ring-rotate 15s linear infinite reverse;
}

.p2p-ring-3 {
    width: 180px;
    height: 180px;
    border-color: rgba(0, 255, 136, 0.15);
    animation: p2p-ring-rotate 10s linear infinite;
}

@keyframes p2p-ring-rotate {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

.p2p-ring::before {
    content: '';
    position: absolute;
    top: -3px;
    left: 50%;
    width: 6px;
    height: 6px;
    border-radius: 50%;
    transform: translateX(-50%);
}

.p2p-ring-1::before {
    background: #00ff88;
    box-shadow: 0 0 10px #00ff88;
}

.p2p-ring-2::before {
    background: #00f2ff;
    box-shadow: 0 0 10px #00f2ff;
}

.p2p-ring-3::before {
    background: #00ff88;
    box-shadow: 0 0 10px #00ff88;
}

.p2p-center-icon {
    width: 100px;
    height: 100px;
    background: linear-gradient(135deg, rgba(0, 255, 136, 0.15), rgba(0, 242, 255, 0.1));
    border: 2px solid rgba(0, 255, 136, 0.4);
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 2.5rem;
    color: #00ff88;
    box-shadow: 0 0 50px rgba(0, 255, 136, 0.2);
    z-index: 5;
    animation: p2p-center-pulse 3s ease-in-out infinite;
}

@keyframes p2p-center-pulse {
    0%, 100% { box-shadow: 0 0 50px rgba(0, 255, 136, 0.2); }
    50% { box-shadow: 0 0 80px rgba(0, 255, 136, 0.35); }
}

.p2p-signal {
    position: absolute;
    width: 50px;
    height: 50px;
    background: rgba(5, 10, 20, 0.9);
    border: 1px solid rgba(0, 242, 255, 0.3);
    border-radius: 14px;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 1.3rem;
    color: #00f2ff;
    z-index: 3;
    animation: p2p-signal-float 4s ease-in-out infinite;
}

.p2p-signal-1 { top: 5%; left: 5%; animation-delay: 0s; }
.p2p-signal-2 { top: 5%; right: 5%; animation-delay: 1s; }
.p2p-signal-3 { bottom: 5%; left: 5%; animation-delay: 2s; }
.p2p-signal-4 { bottom: 5%; right: 5%; animation-delay: 3s; }

@keyframes p2p-signal-float {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-8px); }
}

.p2p-content {
    flex: 1;
}

.p2p-feature-list {
    display: flex;
    flex-direction: column;
    gap: 24px;
    margin-bottom: 40px;
}

.p2p-feature-item {
    display: flex;
    align-items: flex-start;
    gap: 20px;
    padding: 24px;
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.06);
    border-radius: 18px;
    transition: all 0.4s cubic-bezier(0.23, 1, 0.32, 1);
}

.p2p-feature-item:hover {
    background: rgba(0, 255, 136, 0.04);
    border-color: rgba(0, 255, 136, 0.25);
    transform: translateX(8px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.p2p-fi-icon {
    flex-shrink: 0;
    width: 52px;
    height: 52px;
    background: linear-gradient(135deg, rgba(0, 255, 136, 0.1), rgba(0, 242, 255, 0.06));
    border: 1px solid rgba(0, 255, 136, 0.2);
    border-radius: 14px;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 1.3rem;
    color: #00ff88;
    transition: all 0.4s ease;
}

.p2p-feature-item:hover .p2p-fi-icon {
    background: #00ff88;
    color: #000;
    border-color: #00ff88;
    box-shadow: 0 0 20px rgba(0, 255, 136, 0.3);
}

.p2p-fi-text h3 {
    font-size: 1.2rem;
    font-weight: 700;
    color: #fff;
    margin-bottom: 8px;
    transition: color 0.3s ease;
}

.p2p-feature-item:hover .p2p-fi-text h3 {
    color: #00ff88;
}

.p2p-fi-text p {
    font-size: 0.95rem;
    color: rgba(255, 255, 255, 0.55);
    line-height: 1.6;
    margin-bottom: 0;
}

.p2p-cta {
    display: flex;
    align-items: center;
    gap: 24px;
}

.p2p-btn {
    background: linear-gradient(90deg, #00ff88, #00c9ff) !important;
    box-shadow: 0 10px 30px rgba(0, 255, 136, 0.3) !important;
    color: #000 !important;
    font-weight: 800 !important;
}

.p2p-btn:hover {
    box-shadow: 0 15px 40px rgba(0, 255, 136, 0.5) !important;
}

.p2p-cta-note {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.4);
    font-weight: 500;
}

@media (max-width: 992px) {
    .p2p-showcase {
        flex-direction: column;
        gap: 50px;
    }
    .p2p-visual {
        flex: none;
    }
    .p2p-content {
        width: 100%;
    }
}

@media (max-width: 768px) {
    .p2p-section { padding: 80px 0; }
    .p2p-title { font-size: 2.2rem; }
    .p2p-subtitle { font-size: 1rem; }
    .p2p-header { margin-bottom: 50px; }
    .p2p-device-ring { width: 280px; height: 280px; }
    .p2p-ring-1 { width: 260px; height: 260px; }
    .p2p-ring-2 { width: 200px; height: 200px; }
    .p2p-ring-3 { width: 140px; height: 140px; }
    .p2p-center-icon { width: 70px; height: 70px; font-size: 1.8rem; }
    .p2p-signal { width: 40px; height: 40px; font-size: 1rem; border-radius: 10px; }
    .p2p-feature-item { padding: 18px; gap: 16px; }
    .p2p-fi-icon { width: 44px; height: 44px; font-size: 1.1rem; }
    .p2p-fi-text h3 { font-size: 1.05rem; }
    .p2p-fi-text p { font-size: 0.9rem; }
    .p2p-cta { flex-direction: column; align-items: flex-start; }
}
