/* ═══════════════════════════════════════════════════════════════════════════
   PHOENIX PRO & ONYX - Site Vitrine Chloneo
   Charte graphique: Bleu marine + Orange/Jaune
   ═══════════════════════════════════════════════════════════════════════════ */

/* ─── Variables CSS ─────────────────────────────────────────────────────── */
:root {
    /* Couleurs principales */
    --bg-primary: #0a1628;
    --bg-secondary: #0d1d35;
    --bg-card: #112240;
    --bg-card-hover: #1a3050;

    /* Accent Phoenix */
    --accent-orange: #f59e0b;
    --accent-yellow: #fbbf24;
    --accent-red: #ef4444;
    --gradient-phoenix: linear-gradient(135deg, #f59e0b 0%, #ef4444 100%);

    /* Accent Chloneo */
    --accent-cyan: #06b6d4;
    --accent-purple: #8b5cf6;
    --accent-pink: #ec4899;

    /* Texte */
    --text-primary: #ffffff;
    --text-secondary: #94a3b8;
    --text-muted: #64748b;

    /* Utilitaires */
    --border-color: rgba(255, 255, 255, 0.1);
    --shadow-lg: 0 25px 50px -12px rgba(0, 0, 0, 0.5);
    --shadow-glow: 0 0 40px rgba(245, 158, 11, 0.3);

    /* Spacing */
    --section-padding: 100px 0;
    --container-max: 1200px;

    /* Transitions */
    --transition-fast: 0.2s ease;
    --transition-medium: 0.3s ease;
    --transition-slow: 0.5s ease;
}

/* ─── Reset & Base ──────────────────────────────────────────────────────── */
*, *::before, *::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    background: var(--bg-primary);
    color: var(--text-primary);
    line-height: 1.6;
    overflow-x: hidden;
}

/* ─── Typography ────────────────────────────────────────────────────────── */
h1, h2, h3, h4, h5, h6 {
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 1rem;
}

h1 { font-size: clamp(2.5rem, 5vw, 4rem); }
h2 { font-size: clamp(2rem, 4vw, 3rem); }
h3 { font-size: clamp(1.5rem, 3vw, 2rem); }
h4 { font-size: 1.25rem; }

p {
    color: var(--text-secondary);
    margin-bottom: 1rem;
}

a {
    color: var(--accent-orange);
    text-decoration: none;
    transition: color var(--transition-fast);
}

a:hover {
    color: var(--accent-yellow);
}

/* ─── Container ─────────────────────────────────────────────────────────── */
.container {
    max-width: var(--container-max);
    margin: 0 auto;
    padding: 0 24px;
}

.section {
    padding: var(--section-padding);
}

/* ─── Navigation ────────────────────────────────────────────────────────── */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: rgba(10, 22, 40, 0.95);
    backdrop-filter: blur(20px);
    border-bottom: 1px solid var(--border-color);
    transition: all var(--transition-medium);
}

.navbar.scrolled {
    background: rgba(10, 22, 40, 0.98);
    box-shadow: var(--shadow-lg);
}

.nav-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 80px;
    max-width: var(--container-max);
    margin: 0 auto;
    padding: 0 24px;
}

.nav-logo img {
    height: 50px;
    width: auto;
}

.nav-menu {
    display: flex;
    align-items: center;
    gap: 32px;
    list-style: none;
}

.nav-link {
    color: var(--text-secondary);
    font-weight: 500;
    font-size: 0.95rem;
    transition: color var(--transition-fast);
    position: relative;
}

.nav-link:hover,
.nav-link.active {
    color: var(--text-primary);
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--gradient-phoenix);
    transition: width var(--transition-medium);
}

.nav-link:hover::after,
.nav-link.active::after {
    width: 100%;
}

.nav-actions {
    display: flex;
    align-items: center;
    gap: 16px;
}

.lang-switch {
    display: flex;
    gap: 8px;
}

.lang-btn {
    padding: 6px 12px;
    border: 1px solid var(--border-color);
    border-radius: 6px;
    background: transparent;
    color: var(--text-secondary);
    font-size: 0.85rem;
    cursor: pointer;
    transition: all var(--transition-fast);
}

.lang-btn:hover,
.lang-btn.active {
    background: var(--accent-orange);
    border-color: var(--accent-orange);
    color: var(--bg-primary);
}

/* Mobile Menu */
.nav-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
}

.nav-toggle span {
    width: 24px;
    height: 2px;
    background: var(--text-primary);
    transition: all var(--transition-fast);
}

/* ─── Buttons ───────────────────────────────────────────────────────────── */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 14px 28px;
    font-size: 1rem;
    font-weight: 600;
    border-radius: 12px;
    border: none;
    cursor: pointer;
    transition: all var(--transition-medium);
    text-decoration: none;
}

.btn-primary {
    background: var(--gradient-phoenix);
    color: white;
    box-shadow: 0 4px 20px rgba(245, 158, 11, 0.3);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 30px rgba(245, 158, 11, 0.4);
    color: white;
}

.btn-secondary {
    background: transparent;
    color: var(--text-primary);
    border: 2px solid var(--border-color);
}

.btn-secondary:hover {
    border-color: var(--accent-orange);
    color: var(--accent-orange);
}

.btn-large {
    padding: 18px 36px;
    font-size: 1.1rem;
}

/* ─── Hero Section ──────────────────────────────────────────────────────── */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
    padding-top: 80px;
}

.hero-bg {
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse at 70% 20%, rgba(245, 158, 11, 0.15) 0%, transparent 50%),
                radial-gradient(ellipse at 30% 80%, rgba(6, 182, 212, 0.1) 0%, transparent 50%);
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 700px;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 16px;
    background: rgba(245, 158, 11, 0.1);
    border: 1px solid rgba(245, 158, 11, 0.3);
    border-radius: 50px;
    color: var(--accent-orange);
    font-size: 0.9rem;
    font-weight: 500;
    margin-bottom: 24px;
}

.hero-badge .pulse {
    width: 8px;
    height: 8px;
    background: var(--accent-orange);
    border-radius: 50%;
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0%, 100% { opacity: 1; transform: scale(1); }
    50% { opacity: 0.5; transform: scale(1.2); }
}

.hero h1 {
    margin-bottom: 24px;
}

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

.hero-description {
    font-size: 1.25rem;
    color: var(--text-secondary);
    margin-bottom: 40px;
    line-height: 1.7;
}

.hero-buttons {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
}

.hero-visual {
    position: absolute;
    right: -100px;
    top: 50%;
    transform: translateY(-50%);
    width: 600px;
    height: 600px;
    z-index: 1;
}

.phoenix-parallax {
    width: 100%;
    height: 100%;
    object-fit: contain;
    filter: drop-shadow(0 0 60px rgba(245, 158, 11, 0.4));
    transition: transform 0.1s ease-out;
}

/* ─── Stats Section ─────────────────────────────────────────────────────── */
.stats-section {
    background: var(--bg-secondary);
    border-top: 1px solid var(--border-color);
    border-bottom: 1px solid var(--border-color);
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 40px;
    text-align: center;
}

.stat-item {
    padding: 20px;
}

.stat-number {
    font-size: 3rem;
    font-weight: 800;
    background: var(--gradient-phoenix);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 8px;
}

.stat-label {
    color: var(--text-secondary);
    font-size: 1rem;
}

/* ─── Features Section ──────────────────────────────────────────────────── */
.features-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
    margin-top: 60px;
}

.feature-card {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: 20px;
    padding: 40px;
    transition: all var(--transition-medium);
}

.feature-card:hover {
    background: var(--bg-card-hover);
    transform: translateY(-8px);
    box-shadow: var(--shadow-glow);
    border-color: rgba(245, 158, 11, 0.3);
}

.feature-icon {
    width: 64px;
    height: 64px;
    background: var(--gradient-phoenix);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 24px;
    font-size: 28px;
}

.feature-card h3 {
    margin-bottom: 12px;
}

.feature-card p {
    font-size: 0.95rem;
}

/* ─── Products Section ──────────────────────────────────────────────────── */
.products-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
    margin-top: 60px;
}

.product-card {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: 24px;
    overflow: hidden;
    transition: all var(--transition-medium);
}

.product-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg);
}

.product-card .product-image {
    height: 280px;
    background: var(--bg-secondary);
    display: flex;
    align-items: center;
    justify-content: center;
    border-bottom: 1px solid var(--border-color);
    position: relative;
    overflow: hidden;
}

.product-card .product-image img {
    max-width: 80%;
    max-height: 80%;
    object-fit: contain;
}

.product-image .placeholder {
    color: var(--text-muted);
    font-size: 0.9rem;
    text-align: center;
}

.product-content {
    padding: 32px;
}

.product-tag {
    display: inline-block;
    padding: 6px 14px;
    background: rgba(245, 158, 11, 0.1);
    border-radius: 50px;
    color: var(--accent-orange);
    font-size: 0.85rem;
    font-weight: 500;
    margin-bottom: 16px;
}

.product-content h3 {
    font-size: 1.75rem;
    margin-bottom: 16px;
}

.product-features {
    list-style: none;
    margin: 24px 0;
}

.product-features li {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 8px 0;
    color: var(--text-secondary);
}

.product-features li::before {
    content: '✓';
    color: var(--accent-orange);
    font-weight: bold;
}

/* ─── Comparison Section ────────────────────────────────────────────────── */
.comparison-table {
    width: 100%;
    border-collapse: collapse;
    margin-top: 40px;
    background: var(--bg-card);
    border-radius: 16px;
    overflow: hidden;
}

.comparison-table th,
.comparison-table td {
    padding: 20px 24px;
    text-align: left;
    border-bottom: 1px solid var(--border-color);
}

.comparison-table th {
    background: var(--bg-secondary);
    font-weight: 600;
    color: var(--text-primary);
}

.comparison-table th:first-child {
    width: 30%;
}

.comparison-table td {
    color: var(--text-secondary);
}

.comparison-table tr:last-child td {
    border-bottom: none;
}

.comparison-table .check {
    color: #22c55e;
    font-size: 1.2rem;
}

.comparison-table .cross {
    color: var(--text-muted);
    font-size: 1.2rem;
}

.comparison-table .highlight {
    background: rgba(245, 158, 11, 0.05);
}

.comparison-table .phoenix-col {
    background: rgba(245, 158, 11, 0.1);
    color: var(--text-primary);
    font-weight: 500;
}

/* ─── Savings Section ───────────────────────────────────────────────────── */
.savings-section {
    background: var(--bg-secondary);
    text-align: center;
}

.savings-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
    margin-top: 60px;
}

.savings-card {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: 20px;
    padding: 48px 32px;
}

.savings-number {
    font-size: 4rem;
    font-weight: 800;
    background: var(--gradient-phoenix);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    line-height: 1;
}

.savings-unit {
    font-size: 1.5rem;
    color: var(--accent-orange);
    margin-left: 8px;
}

.savings-label {
    margin-top: 16px;
    color: var(--text-secondary);
    font-size: 1.1rem;
}

/* ─── Timeline/Roadmap ──────────────────────────────────────────────────── */
.timeline {
    position: relative;
    max-width: 800px;
    margin: 60px auto 0;
}

.timeline::before {
    content: '';
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    width: 2px;
    height: 100%;
    background: var(--border-color);
}

.timeline-item {
    display: flex;
    align-items: center;
    margin-bottom: 40px;
    position: relative;
}

.timeline-item:nth-child(odd) {
    flex-direction: row-reverse;
}

.timeline-content {
    width: 45%;
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: 16px;
    padding: 24px;
}

.timeline-item:nth-child(odd) .timeline-content {
    text-align: right;
}

.timeline-dot {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    width: 20px;
    height: 20px;
    background: var(--gradient-phoenix);
    border-radius: 50%;
    border: 4px solid var(--bg-primary);
    z-index: 1;
}

.timeline-date {
    color: var(--accent-orange);
    font-weight: 600;
    font-size: 0.9rem;
    margin-bottom: 8px;
}

.timeline-title {
    font-size: 1.1rem;
    margin-bottom: 8px;
}

/* ─── Testimonial/Reference ─────────────────────────────────────────────── */
.reference-section {
    text-align: center;
}

.reference-badge {
    display: inline-flex;
    align-items: center;
    gap: 16px;
    background: var(--bg-card);
    border: 2px solid var(--accent-orange);
    border-radius: 16px;
    padding: 24px 40px;
    margin-top: 40px;
}

.reference-badge img {
    height: 60px;
}

.reference-text {
    text-align: left;
}

.reference-text strong {
    display: block;
    color: var(--text-primary);
    font-size: 1.1rem;
}

.reference-text span {
    color: var(--accent-orange);
}

/* ─── Contact Form ──────────────────────────────────────────────────────── */
.contact-section {
    background: var(--bg-secondary);
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: start;
}

.contact-info h2 {
    margin-bottom: 24px;
}

.contact-info p {
    font-size: 1.1rem;
    margin-bottom: 32px;
}

.contact-details {
    list-style: none;
}

.contact-details li {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 16px 0;
    border-bottom: 1px solid var(--border-color);
    color: var(--text-secondary);
}

.contact-details li:last-child {
    border-bottom: none;
}

.contact-details .icon {
    width: 48px;
    height: 48px;
    background: var(--bg-card);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--accent-orange);
    font-size: 1.2rem;
}

.contact-form {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: 24px;
    padding: 40px;
}

.form-group {
    margin-bottom: 24px;
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    color: var(--text-primary);
    font-weight: 500;
}

.form-group label .required {
    color: var(--accent-red);
}

.form-control {
    width: 100%;
    padding: 14px 18px;
    background: var(--bg-secondary);
    border: 1px solid var(--border-color);
    border-radius: 12px;
    color: var(--text-primary);
    font-size: 1rem;
    transition: all var(--transition-fast);
}

.form-control:focus {
    outline: none;
    border-color: var(--accent-orange);
    box-shadow: 0 0 0 3px rgba(245, 158, 11, 0.1);
}

.form-control::placeholder {
    color: var(--text-muted);
}

textarea.form-control {
    min-height: 150px;
    resize: vertical;
}

select.form-control {
    cursor: pointer;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 24px;
}

/* ─── Footer ────────────────────────────────────────────────────────────── */
.footer {
    background: var(--bg-secondary);
    border-top: 1px solid var(--border-color);
    padding: 60px 0 30px;
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 60px;
    margin-bottom: 40px;
}

.footer-brand img {
    height: 50px;
    margin-bottom: 20px;
}

.footer-brand p {
    font-size: 0.95rem;
    margin-bottom: 24px;
}

.social-links {
    display: flex;
    gap: 12px;
}

.social-link {
    width: 44px;
    height: 44px;
    background: var(--bg-card);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-secondary);
    transition: all var(--transition-fast);
}

.social-link:hover {
    background: var(--accent-orange);
    color: var(--bg-primary);
}

.footer-column h4 {
    color: var(--text-primary);
    margin-bottom: 20px;
    font-size: 1rem;
}

.footer-links {
    list-style: none;
}

.footer-links li {
    margin-bottom: 12px;
}

.footer-links a {
    color: var(--text-secondary);
    font-size: 0.95rem;
}

.footer-links a:hover {
    color: var(--accent-orange);
}

.footer-bottom {
    padding-top: 30px;
    border-top: 1px solid var(--border-color);
    display: flex;
    justify-content: space-between;
    align-items: center;
    color: var(--text-muted);
    font-size: 0.9rem;
}

/* ─── Screenshots Placeholder ───────────────────────────────────────────── */
.screenshot-placeholder {
    background: var(--bg-secondary);
    border: 2px dashed var(--border-color);
    border-radius: 16px;
    padding: 80px 40px;
    text-align: center;
    color: var(--text-muted);
}

.screenshot-placeholder .icon {
    font-size: 3rem;
    margin-bottom: 16px;
    opacity: 0.5;
}

/* ─── Calendly Embed ────────────────────────────────────────────────────── */
.calendly-section {
    text-align: center;
}

.calendly-embed {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: 16px;
    padding: 40px;
    margin-top: 40px;
}

.calendly-placeholder {
    background: var(--bg-secondary);
    border-radius: 12px;
    padding: 60px;
    color: var(--text-muted);
}

/* ─── Animations ────────────────────────────────────────────────────────── */
.fade-in {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.6s ease;
}

.fade-in.visible {
    opacity: 1;
    transform: translateY(0);
}

.slide-in-left {
    opacity: 0;
    transform: translateX(-50px);
    transition: all 0.6s ease;
}

.slide-in-left.visible {
    opacity: 1;
    transform: translateX(0);
}

.slide-in-right {
    opacity: 0;
    transform: translateX(50px);
    transition: all 0.6s ease;
}

.slide-in-right.visible {
    opacity: 1;
    transform: translateX(0);
}

/* Counter Animation */
.counter {
    display: inline-block;
}

/* ─── Section Headers ───────────────────────────────────────────────────── */
.section-header {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 60px;
}

.section-tag {
    display: inline-block;
    padding: 8px 16px;
    background: rgba(245, 158, 11, 0.1);
    border-radius: 50px;
    color: var(--accent-orange);
    font-size: 0.9rem;
    font-weight: 500;
    margin-bottom: 16px;
}

.section-header h2 {
    margin-bottom: 16px;
}

.section-header p {
    font-size: 1.1rem;
}

/* ─── Responsive Design ─────────────────────────────────────────────────── */
@media (max-width: 1024px) {
    .hero-visual {
        display: none;
    }

    .features-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .footer-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    :root {
        --section-padding: 60px 0;
    }

    .nav-menu {
        position: fixed;
        top: 80px;
        left: 0;
        right: 0;
        background: var(--bg-primary);
        flex-direction: column;
        padding: 24px;
        gap: 16px;
        border-bottom: 1px solid var(--border-color);
        transform: translateY(-100%);
        opacity: 0;
        visibility: hidden;
        transition: all var(--transition-medium);
    }

    .nav-menu.active {
        transform: translateY(0);
        opacity: 1;
        visibility: visible;
    }

    .nav-toggle {
        display: flex;
    }

    .nav-actions {
        display: none;
    }

    .hero {
        min-height: auto;
        padding: 120px 0 60px;
    }

    .hero-buttons {
        flex-direction: column;
    }

    .features-grid,
    .products-grid,
    .savings-grid {
        grid-template-columns: 1fr;
    }

    .stats-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .contact-grid {
        grid-template-columns: 1fr;
    }

    .form-row {
        grid-template-columns: 1fr;
    }

    .comparison-table {
        display: block;
        overflow-x: auto;
    }

    .timeline::before {
        left: 20px;
    }

    .timeline-item,
    .timeline-item:nth-child(odd) {
        flex-direction: column;
        align-items: flex-start;
        padding-left: 50px;
    }

    .timeline-content,
    .timeline-item:nth-child(odd) .timeline-content {
        width: 100%;
        text-align: left;
    }

    .timeline-dot {
        left: 20px;
    }

    .footer-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .footer-bottom {
        flex-direction: column;
        gap: 16px;
        text-align: center;
    }

    .reference-badge {
        flex-direction: column;
        text-align: center;
    }

    .reference-text {
        text-align: center;
    }
}

@media (max-width: 480px) {
    html {
        font-size: 14px;
    }

    .container {
        padding: 0 16px;
    }

    .btn-large {
        padding: 14px 24px;
        font-size: 1rem;
    }

    .feature-card,
    .product-content,
    .contact-form {
        padding: 24px;
    }
}

/* ─── Image Constraints ────────────────────────────────────────────────── */
img {
    max-width: 100%;
    height: auto;
}

.product-image {
    position: relative;
    overflow: hidden;
    border-radius: 16px;
    background: var(--bg-secondary);
    max-width: 600px;
    cursor: pointer;
    transition: transform var(--transition-medium), box-shadow var(--transition-medium);
}

.product-image:hover {
    transform: scale(1.02);
    box-shadow: 0 10px 40px rgba(245, 158, 11, 0.2);
}

/* Full width product image for hero sections */
.product-image.full-width {
    max-width: 100%;
}

/* Centered product images in grid sections */
.products-grid .product-image {
    max-width: 100%;
    width: 100%;
}

.product-image img {
    width: 100%;
    height: auto;
    object-fit: contain;
    display: block;
    cursor: pointer;
}

/* Large screenshot sections (full container width but constrained) */
.section > .container > .product-image {
    max-width: 900px;
    margin: 0 auto;
}

.hero-visual img {
    max-width: 400px;
    max-height: 400px;
    width: 100%;
    height: auto;
}

.screenshot-placeholder {
    max-width: 100%;
    aspect-ratio: 16/10;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.reference-badge img {
    max-width: 120px;
    height: auto;
}

/* ─── Lightbox ─────────────────────────────────────────────────────────── */
.lightbox {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.95);
    z-index: 10000;
    justify-content: center;
    align-items: center;
    padding: 20px;
    cursor: zoom-out;
}

.lightbox.active {
    display: flex;
}

.lightbox img {
    max-width: 95%;
    max-height: 95%;
    object-fit: contain;
    border-radius: 8px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
    animation: lightboxZoomIn 0.3s ease;
}

@keyframes lightboxZoomIn {
    from {
        transform: scale(0.8);
        opacity: 0;
    }
    to {
        transform: scale(1);
        opacity: 1;
    }
}

.lightbox-close {
    position: absolute;
    top: 20px;
    right: 30px;
    font-size: 40px;
    color: white;
    cursor: pointer;
    transition: color var(--transition-fast);
    z-index: 10001;
}

.lightbox-close:hover {
    color: var(--accent-orange);
}

/* ─── Responsive Images for Mobile ─────────────────────────────────────── */
@media (max-width: 768px) {
    .product-image {
        max-width: 100%;
        border-radius: 12px;
    }

    .section > .container > .product-image {
        max-width: 100%;
    }

    .products-grid .product-image {
        max-width: 280px;
        margin: 0 auto 24px;
    }

    .hero-visual img {
        max-width: 200px;
        max-height: 200px;
    }
}

@media (max-width: 480px) {
    .products-grid .product-image {
        max-width: 240px;
    }

    .hero-visual img {
        max-width: 150px;
        max-height: 150px;
    }

    .lightbox img {
        max-width: 100%;
        max-height: 80%;
    }

    .lightbox-close {
        top: 10px;
        right: 15px;
        font-size: 30px;
    }
}

.nav-logo img {
    max-height: 40px;
    width: auto;
}

.footer-brand img {
    max-height: 50px;
    width: auto;
}

/* ─── New Feature Badge ────────────────────────────────────────────────── */
.feature-badge-new {
    display: inline-block;
    padding: 2px 8px;
    background: linear-gradient(135deg, #22c55e 0%, #16a34a 100%);
    border-radius: 4px;
    font-size: 0.7rem;
    font-weight: 600;
    color: white;
    text-transform: uppercase;
    margin-left: 8px;
    vertical-align: middle;
}

.feature-badge-soon {
    display: inline-block;
    padding: 2px 8px;
    background: linear-gradient(135deg, #06b6d4 0%, #0891b2 100%);
    border-radius: 4px;
    font-size: 0.7rem;
    font-weight: 600;
    color: white;
    text-transform: uppercase;
    margin-left: 8px;
    vertical-align: middle;
}

/* ─── Print Styles ──────────────────────────────────────────────────────── */
@media print {
    .navbar,
    .footer,
    .btn {
        display: none;
    }

    body {
        background: white;
        color: black;
    }
}
