/* Global Variables & Reset */
:root {
    --bg-color: #100b20;
    --text-color: #ffffff;
    --text-muted: #a0a0ba;
    --primary-gradient: linear-gradient(135deg, #7b2cbf, #f72585);
    --secondary-gradient: linear-gradient(135deg, #4cc9f0, #4361ee);
    --glass-bg: rgba(255, 255, 255, 0.05);
    --glass-border: rgba(255, 255, 255, 0.1);
    --font-main: 'Inter', sans-serif;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    background-color: var(--bg-color);
    color: var(--text-color);
    font-family: var(--font-main);
    line-height: 1.6;
    overflow-x: hidden;
}

a {
    text-decoration: none;
    color: inherit;
    transition: all 0.3s ease;
}

ul {
    list-style: none;
}

/* Typography */
h1,
h2,
h3 {
    font-weight: 700;
    line-height: 1.1;
    letter-spacing: -0.02em;
}

.gradient-text {
    background: var(--primary-gradient);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

/* Slow Color Wave Animation */
.color-wave {
    background: linear-gradient(135deg,
            #ffffff 30%,
            #f72585 45%,
            #7b2cbf 55%,
            #ffffff 70%);
    background-size: 200% 200%;
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    animation: waveFlow 12s ease-in-out infinite;
}

/* Wave Animation for Button Background */
.btn-wave {
    background: linear-gradient(135deg,
            #7b2cbf,
            #f72585,
            #ffffff,
            #7b2cbf);
    background-size: 300% 300%;
    animation: waveFlow 6s ease-in-out infinite;
    color: white;
    border: none;
}

@keyframes waveFlow {
    0% {
        background-position: 0% 0%;
    }

    50% {
        background-position: 100% 100%;
    }

    100% {
        background-position: 0% 0%;
    }
}

/* ===========================
   Scroll Reveal Animations
   =========================== */
@keyframes revealUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Elements waiting to be revealed */
.reveal {
    opacity: 0;
    transform: translateY(30px);
}

/* Revealed state */
.reveal.revealed {
    animation: revealUp 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94) forwards;
}

/* Staggered children */
.reveal-stagger>*:nth-child(1) {
    animation-delay: 0ms;
}

.reveal-stagger>*:nth-child(2) {
    animation-delay: 100ms;
}

.reveal-stagger>*:nth-child(3) {
    animation-delay: 200ms;
}

.reveal-stagger>*:nth-child(4) {
    animation-delay: 300ms;
}

.reveal-stagger>*:nth-child(5) {
    animation-delay: 400ms;
}

.reveal-stagger>*:nth-child(6) {
    animation-delay: 500ms;
}

.reveal-stagger>*:nth-child(7) {
    animation-delay: 600ms;
}

.reveal-stagger>*:nth-child(8) {
    animation-delay: 700ms;
}

/* Accessibility: Disable animations for users who prefer reduced motion */
@media (prefers-reduced-motion: reduce) {
    .reveal {
        opacity: 1;
        transform: none;
    }

    .reveal.revealed {
        animation: none;
    }

    .btn-wave,
    .color-wave {
        animation: none;
    }
}

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

/* Hero Section */
header {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    position: relative;
    padding: 100px 20px;
}

/* Abstract Background Glows */
header::before,
header::after {
    content: '';
    position: absolute;
    width: 300px;
    height: 300px;
    background: var(--primary-gradient);
    filter: blur(100px);
    opacity: 0.2;
    border-radius: 50%;
    z-index: -1;
}

header::before {
    top: -50px;
    left: -50px;
}

header::after {
    bottom: 50px;
    right: -50px;
}

.hero-content {
    max-width: 800px;
    z-index: 1;
}

.hero-title {
    font-size: clamp(2.5rem, 8vw, 5.5rem);
    margin-bottom: 20px;
    letter-spacing: -0.03em;
    line-height: 1.05;
}

.hero-subtitle {
    font-size: clamp(1rem, 2vw, 1.25rem);
    color: var(--text-muted);
    margin-bottom: 40px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.hero-slogan {
    font-size: clamp(1.4rem, 3.5vw, 2.2rem);
    margin-bottom: 25px;
    font-weight: 700;
    letter-spacing: -0.01em;
}

.hero-secondary-link {
    margin-top: 20px;
    font-size: 0.95rem;
}

.feature-guide-link {
    display: inline-block;
    color: #4cc9f0;
    text-decoration: none;
    font-weight: 600;
    font-size: 1rem;
    transition: all 0.3s ease;
}

.feature-guide-link:hover {
    color: #fff;
    text-shadow: 0 0 10px rgba(76, 201, 240, 0.8);
    transform: translateY(-1px);
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 15px 35px;
    border-radius: 50px;
    font-weight: 600;
    letter-spacing: 0.5px;
    box-shadow: 0 10px 30px rgba(123, 44, 191, 0.3);
}

.btn-primary {
    background: var(--primary-gradient);
    color: white;
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 15px 40px rgba(123, 44, 191, 0.5);
}

/* Features Section */
.features {
    padding: 100px 0;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

.feature-card {
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    padding: 40px;
    border-radius: 20px;
    backdrop-filter: blur(10px);
    transition: transform 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94),
        border-color 0.3s ease,
        box-shadow 0.4s ease;
}

a.feature-card {
    display: block;
    text-decoration: none;
    height: 100%;
    color: var(--text-color);
}

.feature-card:hover {
    transform: translateY(-8px);
    border-color: rgba(76, 201, 240, 0.4);
    box-shadow: 0 20px 40px rgba(76, 201, 240, 0.15),
        0 0 30px rgba(123, 44, 191, 0.1);
}

/* Neon Glass Icons */
.icon-glass {
    width: 64px;
    height: 64px;
    margin-bottom: 25px;
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(12px);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    position: relative;
    overflow: hidden;
}

.icon-glass svg {
    width: 32px;
    height: 32px;
    stroke-width: 1.5px;
    transition: all 0.4s ease;
}

/* Icon Variants */
.icon-lock,
.icon-cyan {
    color: #4cc9f0;
    /* Cyan */
    box-shadow: 0 0 0 rgba(76, 201, 240, 0);
}

.icon-zap,
.icon-pink {
    color: #f72585;
    /* Pink */
    box-shadow: 0 0 0 rgba(247, 37, 133, 0);
}

.icon-wifi,
.icon-purple {
    color: #7b2cbf;
    /* Purple */
    box-shadow: 0 0 0 rgba(123, 44, 191, 0);
}

/* Hover Effects */
.feature-card:hover .icon-glass {
    transform: translateY(-5px) scale(1.05);
}

.feature-card:hover .icon-lock,
.feature-card:hover .icon-cyan {
    background: rgba(76, 201, 240, 0.1);
    border-color: rgba(76, 201, 240, 0.3);
    box-shadow: 0 0 20px rgba(76, 201, 240, 0.2), inset 0 0 10px rgba(76, 201, 240, 0.1);
    color: #fff;
    text-shadow: 0 0 10px #4cc9f0;
}

.feature-card:hover .icon-zap,
.feature-card:hover .icon-pink {
    background: rgba(247, 37, 133, 0.1);
    border-color: rgba(247, 37, 133, 0.3);
    box-shadow: 0 0 20px rgba(247, 37, 133, 0.2), inset 0 0 10px rgba(247, 37, 133, 0.1);
    color: #fff;
    text-shadow: 0 0 10px #f72585;
}

.feature-card:hover .icon-wifi,
.feature-card:hover .icon-purple {
    background: rgba(123, 44, 191, 0.1);
    border-color: rgba(123, 44, 191, 0.3);
    box-shadow: 0 0 20px rgba(123, 44, 191, 0.2), inset 0 0 10px rgba(123, 44, 191, 0.1);
    color: #fff;
    text-shadow: 0 0 10px #7b2cbf;
}

/* Pulse Animation on Hover */
.feature-card:hover .icon-glass svg {
    filter: drop-shadow(0 0 5px currentColor);
    transform: scale(1.1);
    animation: pulse-icon 2s infinite ease-in-out;
}

@keyframes pulse-icon {
    0% {
        transform: scale(1.1);
        opacity: 1;
    }

    50% {
        transform: scale(1.2);
        opacity: 0.8;
    }

    100% {
        transform: scale(1.1);
        opacity: 1;
    }
}

.feature-title {
    font-size: clamp(1.25rem, 2.5vw, 1.6rem);
    margin-bottom: 15px;
    letter-spacing: -0.01em;
}

.feature-desc {
    color: var(--text-muted);
}

.use-case-icon {
    width: 36px;
    height: 36px;
    vertical-align: middle;
    margin-right: 10px;
    border-radius: 4px;
    /* SVG is already white, no filter needed */
    opacity: 0.9;
}

/* Privacy Page Specifics */
.privacy-page {
    padding: 80px 0;
}

.privacy-content {
    background: var(--glass-bg);
    padding: 50px;
    border-radius: 20px;
    border: 1px solid var(--glass-border);
}

.privacy-content h1 {
    margin-bottom: 40px;
    font-size: 2.5rem;
}

.privacy-content h2 {
    color: #4cc9f0;
    /* Cyan for headings */
    margin-top: 40px;
    margin-bottom: 20px;
}

.privacy-content p,
.privacy-content li {
    color: #d1d1e0;
    margin-bottom: 15px;
}

.highlight-box {
    background: rgba(123, 44, 191, 0.1);
    /* Low opacity purple */
    border-left: 4px solid #f72585;
    padding: 20px;
    margin: 30px 0;
    border-radius: 0 10px 10px 0;
}

/* Footer */
footer {
    padding: 50px 0;
    text-align: center;
    color: var(--text-muted);
    border-top: 1px solid var(--glass-border);
    margin-top: 50px;
}

footer a:hover {
    color: #fff;
    text-decoration: underline;
}

/* Responsive */
@media (max-width: 768px) {
    .hero-title {
        font-size: 2.5rem;
    }

    .privacy-content {
        padding: 25px;
    }
}

/* Modal Styles */
.modal {
    display: none;
    position: fixed;
    z-index: 1000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.9);
    backdrop-filter: blur(8px);
    align-items: center;
    justify-content: center;
    padding: 20px;
}

.modal-content {
    background: #080510;
    border: 1px solid #4cc9f0;
    box-shadow: 0 0 30px rgba(76, 201, 240, 0.2);
    border-radius: 20px;
    max-width: 1000px;
    width: 100%;
    max-height: 90vh;
    overflow-y: auto;
    position: relative;
    padding: 40px;
    color: white;
}

.close-btn {
    position: absolute;
    top: 20px;
    right: 25px;
    font-size: 2rem;
    cursor: pointer;
    color: #4cc9f0;
}

/* Modal Header */
.modal-header {
    text-align: center;
    margin-bottom: 40px;
}

.modal-main-title {
    font-size: 2.5rem;
    margin-bottom: 5px;
}

.modal-subtitle {
    color: var(--text-muted);
    font-size: 1.1rem;
}

/* Workflow Container */
.workflow-container {
    display: flex;
    justify-content: space-around;
    align-items: center;
    margin-bottom: 40px;
    gap: 20px;
}

.workflow-device {
    flex: 1;
    text-align: center;
}

.device-label {
    font-weight: 700;
    font-size: 1.2rem;
    margin-bottom: 5px;
}

.device-tagline {
    font-size: 0.9rem;
    color: var(--text-muted);
    margin-bottom: 15px;
}

.device-frame {
    aspect-ratio: 16/9;
    background: #100b20;
    border: 2px solid #4cc9f0;
    box-shadow: inset 0 0 15px rgba(76, 201, 240, 0.3), 0 0 10px rgba(76, 201, 240, 0.2);
    border-radius: 15px;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}

.camera-preview-label {
    position: absolute;
    top: 10px;
    left: 10px;
    font-size: 0.7rem;
    background: rgba(0, 0, 0, 0.5);
    padding: 2px 8px;
    border-radius: 4px;
}

.workflow-connector {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    min-width: 150px;
}

.wifi-icon {
    width: 60px;
    height: 60px;
    margin-bottom: 10px;
    filter: drop-shadow(0 0 10px rgba(76, 201, 240, 0.8));
}

.connector-text {
    line-height: 1.2;
}

.monitor-controls {
    position: absolute;
    bottom: 10px;
    width: 100%;
    display: flex;
    justify-content: center;
    gap: 10px;
}

.control-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    border: 1px solid #4cc9f0;
}

.control-dot.red {
    background: #f72585;
    border-color: #f72585;
    box-shadow: 0 0 5px #f72585;
}

/* Modal Features Grid */
.modal-features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 20px;
    margin-bottom: 40px;
}

.m-feature {
    display: flex;
    align-items: flex-start;
    gap: 15px;
}

.m-feature-icon {
    font-size: 1.5rem;
    color: #4cc9f0;
    background: rgba(76, 201, 240, 0.1);
    padding: 10px;
    border-radius: 10px;
    border: 1px solid rgba(76, 201, 240, 0.3);
}

/* Modal Footer */
.modal-footer {
    text-align: center;
    border-top: 1px solid rgba(76, 201, 240, 0.2);
    padding-top: 30px;
}

.footer-slogan {
    font-size: 1.8rem;
    margin-bottom: 5px;
}

.footer-tags {
    color: var(--text-muted);
    font-weight: 600;
    margin-bottom: 20px;
}

.steps-guide {
    font-size: 0.85rem;
    color: var(--text-muted);
    background: rgba(255, 255, 255, 0.03);
    padding: 15px;
    border-radius: 10px;
}

.steps-guide strong {
    color: #4cc9f0;
}

/* Responsive adjustments */
@media (max-width: 600px) {
    .modal-content {
        padding: 30px 20px;
    }

    .modal-main-title {
        font-size: 1.8rem;
    }

    .workflow-container {
        flex-direction: column;
        gap: 15px;
    }

    .workflow-connector {
        min-width: unset;
        margin: 10px 0;
    }

    .workflow-connector .wifi-icon {
        width: 50px;
        height: 50px;
    }

    .modal-features-grid {
        grid-template-columns: 1fr;
        gap: 15px;
    }

    .m-feature-icon {
        font-size: 1.25rem;
        padding: 8px;
    }

    .footer-slogan {
        font-size: 1.5rem;
    }

    .steps-guide {
        font-size: 1rem;
        line-height: 1.5;
        text-align: left;
    }
}

/* ===========================
   Screenshot Carousel Styles
   =========================== */
.screenshot-carousel {
    padding: 80px 0;
    overflow: hidden;
}

.screenshot-carousel h2 {
    text-align: center;
    margin-bottom: 10px;
}

.screenshot-carousel .section-subtitle {
    text-align: center;
    color: var(--text-muted);
    margin-bottom: 40px;
    font-size: 1.1rem;
}

/* Carousel Container */
.carousel-wrapper {
    position: relative;
    max-width: 100%;
    margin: 0 auto;
}

.carousel-track {
    display: flex;
    gap: 20px;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    scroll-behavior: smooth;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
    /* Firefox */
    padding: 20px 60px;
}

.carousel-track::-webkit-scrollbar {
    display: none;
    /* Chrome, Safari */
}

/* Individual Slide */
.carousel-slide {
    flex: 0 0 280px;
    scroll-snap-align: center;
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    border-radius: 20px;
    overflow: hidden;
    transition: transform 0.3s ease, border-color 0.3s ease;
}

.carousel-slide:hover {
    transform: translateY(-5px);
    border-color: rgba(76, 201, 240, 0.4);
}

.carousel-slide img {
    width: 100%;
    aspect-ratio: 9/16;
    object-fit: cover;
    background: #1a1530;
}

.carousel-slide .slide-caption {
    padding: 15px 20px;
    text-align: center;
}

.carousel-slide .slide-caption h4 {
    font-size: 1rem;
    margin-bottom: 5px;
    color: #fff;
}

.carousel-slide .slide-caption p {
    font-size: 0.85rem;
    color: var(--text-muted);
    margin: 0;
}

/* Navigation Arrows */
.carousel-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 50px;
    height: 50px;
    background: rgba(16, 11, 32, 0.9);
    border: 1px solid var(--glass-border);
    border-radius: 50%;
    color: #4cc9f0;
    font-size: 1.5rem;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    z-index: 10;
}

.carousel-nav:hover {
    background: rgba(76, 201, 240, 0.15);
    border-color: #4cc9f0;
    box-shadow: 0 0 15px rgba(76, 201, 240, 0.3);
}

.carousel-nav.prev {
    left: 10px;
}

.carousel-nav.next {
    right: 10px;
}

/* Dot Indicators */
.carousel-dots {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-top: 30px;
}

.carousel-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: var(--glass-border);
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
}

.carousel-dot:hover,
.carousel-dot.active {
    background: #4cc9f0;
    box-shadow: 0 0 8px rgba(76, 201, 240, 0.6);
}

/* Responsive: Mobile */
@media (max-width: 768px) {
    .carousel-slide {
        flex: 0 0 240px;
    }

    .carousel-track {
        padding: 20px 30px;
    }

    .carousel-nav {
        width: 40px;
        height: 40px;
        font-size: 1.2rem;
    }

    .carousel-nav.prev {
        left: 5px;
    }

    .carousel-nav.next {
        right: 5px;
    }
}

@media (max-width: 480px) {
    .carousel-slide {
        flex: 0 0 200px;
    }

    .carousel-nav {
        display: none;
        /* Hide arrows on small screens, rely on swipe */
    }

    .carousel-track {
        padding: 15px 20px;
        gap: 15px;
    }

    .screenshot-carousel {
        padding: 50px 0;
    }
}

/* Landscape Slide Support */
.carousel-slide.landscape {
    flex: 0 0 600px;
    align-self: center;
}

.carousel-slide.landscape img {
    aspect-ratio: 16/9;
    object-fit: contain;
}

@media (max-width: 768px) {
    .carousel-slide.landscape {
        flex: 0 0 85vw;
    }
}

/* ===========================
   Landing Page Specific Styles
   (Migrated from inline HTML)
   =========================== */
.problem-solution-section {
    background: rgba(16, 11, 32, 0.6);
    padding: 80px 0;
    border-top: 1px solid var(--glass-border);
    border-bottom: 1px solid var(--glass-border);
}

.comparison-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    margin-top: 40px;
}

@media (max-width: 768px) {
    .comparison-grid {
        grid-template-columns: 1fr;
    }
}

.comparison-card {
    background: rgba(255, 255, 255, 0.03);
    border-radius: 15px;
    padding: 30px;
    border: 1px solid var(--glass-border);
    transition: transform 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94),
        border-color 0.3s ease,
        box-shadow 0.4s ease;
}

.comparison-card:hover {
    transform: translateY(-5px);
    border-color: rgba(76, 201, 240, 0.4);
    box-shadow: 0 15px 30px rgba(76, 201, 240, 0.1),
        0 0 20px rgba(123, 44, 191, 0.1);
}

.comparison-card.bad {
    border-left: 4px solid #ef233c;
}

.comparison-card.good {
    border-left: 4px solid #4cc9f0;
    background: rgba(76, 201, 240, 0.05);
}

.step-number {
    display: inline-block;
    width: 30px;
    height: 30px;
    background: var(--gradient-primary);
    color: white;
    border-radius: 50%;
    text-align: center;
    line-height: 30px;
    font-weight: bold;
    margin-right: 10px;
}

.faq-item {
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid var(--glass-border);
    border-radius: 10px;
    padding: 20px;
    margin-bottom: 15px;
    transition: transform 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94),
        border-color 0.3s ease,
        box-shadow 0.4s ease;
}

.faq-item:hover {
    transform: translateY(-5px);
    border-color: rgba(76, 201, 240, 0.4);
    box-shadow: 0 15px 30px rgba(76, 201, 240, 0.1),
        0 0 20px rgba(123, 44, 191, 0.1);
}

.faq-question {
    font-weight: 600;
    color: #fff;
    margin-bottom: 10px;
    display: block;
}

.faq-answer {
    color: var(--text-muted);
    font-size: 0.95rem;
    line-height: 1.6;
}

.breadcrumbs {
    padding: 20px 0;
    font-size: 0.9rem;
    color: var(--text-muted);
}

.breadcrumbs a {
    color: #4cc9f0;
    text-decoration: none;
}

/* ===========================
   Accessories Page Styles
   (Migrated from inline HTML)
   =========================== */
.affiliate-disclosure {
    background: rgba(123, 44, 191, 0.15);
    border: 1px solid rgba(123, 44, 191, 0.3);
    padding: 15px;
    font-size: 0.85rem;
    color: var(--text-muted);
    text-align: center;
    border-radius: 10px;
    margin-bottom: 40px;
}

.product-card {
    display: flex;
    flex-direction: column;
    height: 100%;
    position: relative;
    overflow: hidden;
    padding-top: 60px;
    /* Common card styles */
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    border-radius: 20px;
    backdrop-filter: blur(10px);
    transition: transform 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94),
        border-color 0.3s ease,
        box-shadow 0.4s ease;
}

.product-card:hover {
    transform: translateY(-8px);
    border-color: rgba(76, 201, 240, 0.4);
    box-shadow: 0 20px 40px rgba(76, 201, 240, 0.15),
        0 0 30px rgba(123, 44, 191, 0.1);
}

.tier-badge {
    position: absolute;
    top: 15px;
    right: 20px;
    padding: 5px 12px;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    z-index: 2;
}

.tier-good {
    background: rgba(76, 201, 240, 0.2);
    color: #4cc9f0;
    border: 1px solid rgba(76, 201, 240, 0.4);
}

.tier-better {
    background: rgba(67, 97, 238, 0.2);
    color: #4361ee;
    border: 1px solid rgba(67, 97, 238, 0.4);
}

.tier-best {
    background: rgba(247, 37, 133, 0.2);
    color: #f72585;
    border: 1px solid rgba(247, 37, 133, 0.4);
    box-shadow: 0 0 10px rgba(247, 37, 133, 0.2);
}

.product-image-container {
    width: 100%;
    aspect-ratio: 4/3;
    background: rgba(0, 0, 0, 0.2);
    border-radius: 10px;
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.product-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.product-card:hover .product-image {
    transform: scale(1.05);
}

.use-case-title {
    color: #fff;
    font-size: 1.1rem;
    margin-bottom: 5px;
}

.product-context {
    font-size: 0.85rem;
    color: var(--text-muted);
    margin-bottom: 15px;
    font-style: italic;
    border-left: 2px solid var(--glass-border);
    padding-left: 10px;
}

.product-specs {
    margin: 15px 0;
    font-size: 0.9rem;
    flex-grow: 1;
}

.product-specs li {
    margin-bottom: 5px;
    display: flex;
    align-items: center;
}

.product-specs li::before {
    content: '•';
    color: #4cc9f0;
    margin-right: 8px;
}

.safety-section {
    background: rgba(16, 11, 32, 0.8);
    border-top: 1px solid var(--glass-border);
    padding: 60px 0;
    margin-top: 20px;
}

.safety-box {
    border-left: 4px solid #f72585;
    background: rgba(247, 37, 133, 0.05);
    padding: 20px;
    border-radius: 0 10px 10px 0;
}