/**
 * Offre Pharmacie Page Styles
 * Template: offre-pharmacie.php
 * Following SafeSanté Theme Design System
 */

/* ==========================================================================
   0. CSS Variables
   ========================================================================== */
:root {
    --indigo-color: #202B6D;
    --electric-color: #2F4ACD;
    --primary-color: #202B6D;
    --sky-color: #A7DBEE;
    --yellow-color: #FEC400;
    --secondary-color: #FEC400;
    --glow-color: #F4F4F4;
    --ash-color: #4E585B;
    --white: #ffffff;
    --black: #000000;
    --coral-color: #ff6b5b;
    --coral-hover: #ff5445;
    --pink-light: #F5E6E0;
    --light-blue-bg: #E8F4FC;
    --gradient-brand: linear-gradient(135deg, #202B6D 0%, #2F4ACD 100%);
    --gradient-blue: linear-gradient(180deg, #202B6D 0%, #2F4ACD 100%);
    --font-primary: 'DM Sans', sans-serif;
    --shadow-sm: 0 5px 20px rgba(0, 0, 0, 0.08);
    --shadow-md: 0 10px 40px rgba(0, 0, 0, 0.08);
    --shadow-lg: 0 15px 35px rgba(0, 0, 0, 0.2);
    --transition-fast: 0.3s ease;
    --transition-base: 0.4s ease;
}

/* ==========================================================================
   1. Base Styles
   ========================================================================== */
* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

body.page-offre-pharmacie {
    font-family: var(--font-primary);
    color: var(--primary-color);
    line-height: 1.6;
    background: var(--white);
}

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

/* ==========================================================================
   2. Custom Header Styles (Same as condition-generales.php)
   ========================================================================== */
.op-page-header {
    position: sticky;
    top: 0;
    z-index: 1000;
    transition: transform 0.4s ease, opacity 0.4s ease;
}

/* Hide header when in product tour section */
.op-page-header.header-hidden {
    transform: translateY(-100%);
    opacity: 0;
    pointer-events: none;
}

.op-topbar {
    background: var(--pink-light);
    padding: 10px 20px;
    display: flex;
    justify-content: flex-start;
    align-items: center;
    gap: 30px;
}

.op-topbar-item {
    display: flex;
    align-items: center;
    gap: 8px;
    font-family: var(--font-primary);
    font-size: 14px;
    color: var(--indigo-color);
    text-decoration: none;
}

.op-topbar-item i {
    font-size: 14px;
    color: var(--indigo-color);
}

.op-topbar-item:hover {
    color: var(--coral-color);
}

.op-header {
    background: var(--indigo-color);
    padding: 20px 40px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.op-logo {
    display: flex;
    align-items: center;
    text-decoration: none;
}

.op-logo img {
    height: 45px;
    width: auto;
}

.op-nav {
    display: flex;
    align-items: center;
    gap: 40px;
}

.op-nav-link {
    font-family: var(--font-primary);
    font-size: 16px;
    font-weight: 500;
    color: var(--white);
    text-decoration: none;
    transition: color var(--transition-fast);
}

.op-nav-link:hover {
    color: var(--sky-color);
}

.op-cta-btn {
    font-family: var(--font-primary);
    font-size: 16px;
    font-weight: 600;
    color: var(--indigo-color);
    background: var(--yellow-color);
    padding: 14px 28px;
    border-radius: 50px;
    text-decoration: none;
    transition: all var(--transition-fast);
}

.op-cta-btn:hover {
    background: #e5b100;
    transform: translateY(-2px);
}

/* ==========================================================================
   3. Hero Section with Video Background
   ========================================================================== */
.op-hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: flex-end;
    justify-content: center;
    overflow: hidden;
    text-align: center;
}

/* Video Background */
.op-hero-video-wrapper {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.op-hero-video {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Floating Hexagon Icons */
.op-hero-floating-icons {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 2;
    pointer-events: none;
}

.op-hex-icon {
    position: absolute;
    width: 60px;
    height: 70px;
    background: var(--yellow-color);
    display: flex;
    align-items: center;
    justify-content: center;
    clip-path: polygon(50% 0%, 100% 25%, 100% 75%, 50% 100%, 0% 75%, 0% 25%);
    animation: float 4s ease-in-out infinite;
}

.op-hex-icon i {
    font-size: 22px;
    color: var(--indigo-color);
}

/* Sky blue hexagon variant */
.op-hex-icon.op-hex-4,
.op-hex-icon.op-hex-7 {
    background: var(--sky-color);
}

.op-hex-icon.op-hex-4 i,
.op-hex-icon.op-hex-7 i {
    color: var(--indigo-color);
}

/* Hexagon positions */
.op-hex-1 { top: 15%; left: 8%; animation-delay: 0s; }
.op-hex-2 { top: 35%; left: 5%; animation-delay: 0.5s; }
.op-hex-3 { top: 8%; right: 10%; animation-delay: 1s; }
.op-hex-4 { top: 25%; right: 3%; animation-delay: 1.5s; }
.op-hex-5 { top: 50%; right: 5%; animation-delay: 2s; }
.op-hex-6 { top: 55%; left: 3%; animation-delay: 2.5s; }
.op-hex-7 { top: 40%; left: 15%; animation-delay: 3s; }

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

.op-hero-container {
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 20px;
    position: relative;
    z-index: 3;
    width: 100%;
}

.op-hero-content {
    text-align: center;
    color: var(--white);
    padding: 20px 20px 40px;
    max-width: 900px;
    margin: 0 auto;
}

.op-hero-title {
    font-size: 2.5rem;
    font-weight: 700;
    line-height: 1.25;
    margin-bottom: 10px;
    color: var(--white);
}

.op-hero-description {
    font-size: 1.2rem;
    font-weight: 400;
    line-height: 1.5;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 20px;
}

.op-btn-yellow {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 16px 40px;
    background: var(--yellow-color);
    color: var(--indigo-color);
    border: none;
    border-radius: 50px;
    font-size: 16px;
    font-weight: 600;
    text-decoration: none;
    transition: all var(--transition-fast);
    cursor: pointer;
}

.op-btn-yellow:hover {
    background: #f5d000;
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(255, 214, 0, 0.3);
}

/* ==========================================================================
   4. Titulaire Section (Form Section)
   ========================================================================== */
.op-titulaire {
    background: var(--light-blue-bg);
    padding: 80px 20px;
}

.op-titulaire-container {
    max-width: 1100px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: stretch;
}

.op-titulaire-content h2 {
    font-size: 2.8rem;
    font-weight: 700;
    color: var(--indigo-color);
    margin-bottom: 25px;
    line-height: 1.1;
}

.op-titulaire-description {
    font-size: 1.05rem;
    color: var(--ash-color);
    line-height: 1.8;
    margin-bottom: 25px;
}

.op-titulaire-description .highlight {
    background: var(--yellow-color);
    padding: 2px 8px;
    font-weight: 600;
    color: var(--indigo-color);
}

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

.op-stat-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    gap: 15px;
    background: var(--white);
    padding: 30px 20px;
    border-radius: 16px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.06);
    aspect-ratio: 1 / 1;
    transition: all var(--transition-fast);
}

.op-stat-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
}

.op-stat-icon {
    width: 70px;
    height: 70px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.op-stat-icon img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.op-stat-icon i {
    font-size: 26px;
    color: var(--sky-color);
}

.op-stat-icon svg {
    width: 30px;
    height: 30px;
    fill: var(--sky-color);
}

.op-stat-text {
    font-size: 0.95rem;
    color: var(--indigo-color);
    font-weight: 600;
    line-height: 1.5;
}

/* Form Card */
.op-form-card {
    background: var(--white);
    border-radius: 20px;
    padding: 40px;
    box-shadow: var(--shadow-md);
    display: flex;
    flex-direction: column;
}

.op-form-header {
    background: var(--sky-color);
    color: var(--indigo-color);
    padding: 15px 25px;
    border-radius: 10px;
    margin-bottom: 30px;
    font-weight: 600;
    font-size: 1rem;
    text-align: center;
}

.op-form-group {
    margin-bottom: 20px;
}

.op-form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 600;
    color: var(--indigo-color);
    font-size: 0.9rem;
}

.op-form-group label .required {
    color: var(--coral-color);
}

.op-form-group input {
    width: 100%;
    padding: 14px 18px;
    border: 2px solid #E8EEF2;
    border-radius: 10px;
    font-family: var(--font-primary);
    font-size: 15px;
    transition: all var(--transition-fast);
    background: var(--white);
    color: var(--indigo-color);
}

.op-form-group input:focus {
    outline: none;
    border-color: var(--electric-color);
    box-shadow: 0 0 0 4px rgba(47, 74, 205, 0.1);
}

.op-form-group input::placeholder {
    color: #A0AEC0;
}

.op-consent-group {
    margin: 25px 0;
}

.op-consent-checkbox {
    display: flex;
    align-items: flex-start;
    gap: 12px;
}

.op-consent-checkbox input[type="checkbox"] {
    width: 18px;
    height: 18px;
    accent-color: var(--indigo-color);
    cursor: pointer;
    margin-top: 2px;
    flex-shrink: 0;
}

.op-consent-checkbox label {
    font-size: 0.9rem;
    color: var(--ash-color);
    cursor: pointer;
    line-height: 1.5;
}

.op-submit-btn {
    width: 100%;
    padding: 16px;
    background: var(--yellow-color);
    color: var(--indigo-color);
    border: none;
    border-radius: 50px;
    font-size: 1.05rem;
    font-weight: 600;
    cursor: pointer;
    transition: all var(--transition-fast);
    font-family: var(--font-primary);
}

.op-submit-btn:hover {
    background: #e5b100;
    transform: translateY(-3px);
    box-shadow: 0 12px 30px rgba(254, 196, 0, 0.4);
}

/* Form Error Styles */
.field-error {
    display: none;
    color: #dc3545;
    font-size: 0.8rem;
    font-weight: 500;
    margin-top: 6px;
}

.field-error.visible {
    display: block;
}

.consent-error {
    margin-left: 30px;
}

.input-error {
    border-color: #dc3545 !important;
    background: rgba(220, 53, 69, 0.03) !important;
}

.input-error:focus {
    box-shadow: 0 0 0 4px rgba(220, 53, 69, 0.1) !important;
}

/* ==========================================================================
   5. Kit Section
   ========================================================================== */
.op-kit {
    background: var(--gradient-brand);
    padding: 80px 20px;
    text-align: center;
}

.op-kit-container {
    max-width: 1380px;
    margin: 0 auto;
    padding: 0 20px;
}

.op-kit h2 {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 30px;
}

.op-kit-visual {
    position: relative;
    margin: 50px auto;
    max-width: 1000px;
    height: 600px;
}

#op-model-viewer {
    width: 100%;
    height: 100%;
    --poster-color: transparent;
    background: transparent;
    border: none;
    outline: none;
}

#op-model-viewer::part(default-progress-bar) {
    display: none;
}

#op-model-viewer::part(default-ar-button) {
    display: none;
}

/* Remove focus outline */
#op-model-viewer:focus {
    outline: none;
}

#op-model-viewer:focus-visible {
    outline: none;
}

/* ==========================================================================
   Product Tour Section
   ========================================================================== */
.op-product-tour {
    position: relative;
    height: 600px;
    overflow-y: scroll;
    overflow-x: hidden;
    scroll-snap-type: y mandatory;
    scroll-behavior: smooth;
    border-radius: 40px;
    margin: 50px auto;
    width: 100%;
    max-width: 1900px;
    background: rgba(32, 43, 109, 0.4);
    backdrop-filter: blur(40px);
    -webkit-backdrop-filter: blur(40px);
    border: 1px solid rgba(167, 219, 238, 0.2);
}

/* Hide scrollbar */
.op-product-tour::-webkit-scrollbar {
    width: 0;
    display: none;
}

.op-product-tour {
    -ms-overflow-style: none;
    scrollbar-width: none;
}

/* Step Indicator Fixed - Vertical Right Side (Outside Scroll Container) */
.op-step-indicator-fixed {
    position: fixed;
    top: 50%;
    right: 40px;
    transform: translateY(-50%);
    z-index: 1000;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s ease;
}

.op-step-indicator-fixed.visible {
    opacity: 1;
    pointer-events: auto;
}

.op-step-dots {
    display: flex;
    flex-direction: column;
    gap: 12px;
    align-items: center;
}

.op-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.2);
    border: 2px solid rgba(255, 255, 255, 0.3);
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
    padding: 0;
}

.op-dot:hover {
    background: rgba(255, 255, 255, 0.4);
    border-color: rgba(255, 255, 255, 0.6);
    transform: scale(1.2);
}

.op-dot.active {
    width: 14px;
    height: 14px;
    background: var(--yellow-color);
    border-color: var(--yellow-color);
    box-shadow: 0 0 15px var(--yellow-color), 0 0 30px rgba(254, 196, 0, 0.4);
}

.op-step-counter {
    font-size: 0.8rem;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.6);
    background: rgba(32, 43, 109, 0.8);
    padding: 8px 12px;
    border-radius: 20px;
    border: 1px solid rgba(167, 219, 238, 0.2);
}

.op-current-step {
    color: var(--yellow-color);
    font-size: 1rem;
    font-weight: 700;
}

/* Step Container */
.op-step-container {
    height: 600px;
    min-height: 600px;
    scroll-snap-align: start;
    scroll-snap-stop: always;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 15px;
}

/* Showcase Layout */
.op-showcase {
    display: flex;
    width: 100%;
    height: 100%;
    max-height: none;
    background: rgba(47, 74, 205, 0.15);
    backdrop-filter: blur(30px);
    -webkit-backdrop-filter: blur(30px);
    border-radius: 24px;
    border: 1px solid rgba(167, 219, 238, 0.2);
    overflow: hidden;
    box-shadow: 0 25px 80px rgba(0, 0, 0, 0.25);
}

/* 3D Showcase - fills container with 15px spacing */
.op-showcase.op-showcase-3d {
    width: 100%;
    max-width: none;
}

/* Sidebar */
.op-sidebar {
    flex: 0 0 30%;
    width: 30%;
    max-width: 30%;
    padding: 40px 30px;
    background: rgba(32, 43, 109, 0.4);
    border-right: 1px solid rgba(167, 219, 238, 0.1);
    display: flex;
    flex-direction: column;
}

.op-step-info {
    flex: 1;
}

.op-step-number {
    display: inline-block;
    font-size: 0.7rem;
    font-weight: 700;
    color: var(--yellow-color);
    letter-spacing: 2px;
    margin-bottom: 20px;
    padding: 6px 14px;
    background: rgba(254, 196, 0, 0.15);
    border-radius: 20px;
    border: 1px solid rgba(254, 196, 0, 0.3);
}

.op-step-title {
    font-size: 1.6rem;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 15px;
    line-height: 1.3;
}

.op-step-desc {
    font-size: 0.95rem;
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.7;
}

/* Toggle Container - Click to Switch Style */
.op-toggle-container {
    display: flex;
    flex-direction: column;
    gap: 0;
    margin-top: auto;
    padding-top: 30px;
}

/* Menu Item with Toggle */
.op-menu-item {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(167, 219, 238, 0.15);
    border-radius: 12px;
    overflow: hidden;
    transition: all 0.3s ease;
}

.op-menu-item:hover {
    background: rgba(255, 255, 255, 0.08);
    border-color: rgba(167, 219, 238, 0.25);
}

.op-menu-btn {
    width: 100%;
    display: flex;
    align-items: flex-start;
    gap: 14px;
    padding: 16px 18px;
    background: none;
    border: none;
    cursor: pointer;
    text-align: left;
    font-family: var(--font-primary);
}

.op-menu-indicator {
    width: 8px;
    height: 8px;
    background: var(--yellow-color);
    border-radius: 50%;
    margin-top: 6px;
    flex-shrink: 0;
    box-shadow: 0 0 10px var(--yellow-color);
}

.op-menu-content {
    flex: 1;
}

.op-menu-label {
    display: block;
    position: relative;
}

.op-menu-label span {
    display: none;
    font-size: 1rem;
    font-weight: 600;
    color: var(--white);
    letter-spacing: 0.02em;
}

.op-menu-label span.active {
    display: block;
}

.op-menu-description {
    display: block;
    margin-top: 8px;
    position: relative;
}

.op-menu-description span {
    display: none;
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.6);
    line-height: 1.5;
}

.op-menu-description span.active {
    display: block;
}

/* Toggle Indicator Button - Click to Switch */
.op-toggle-indicator {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    width: 100%;
    padding: 12px 16px;
    background: transparent;
    border: none;
    border-top: 1px dashed rgba(254, 196, 0, 0.3);
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.23, 1, 0.32, 1);
    font-family: var(--font-primary);
}

.op-toggle-indicator:hover {
    background: rgba(254, 196, 0, 0.1);
}

.op-toggle-indicator:active {
    transform: scale(0.98);
}

.op-toggle-icon {
    width: 16px;
    height: 16px;
    color: rgba(254, 196, 0, 0.8);
    flex-shrink: 0;
    transition: all 0.4s cubic-bezier(0.23, 1, 0.32, 1);
}

.op-toggle-indicator:hover .op-toggle-icon {
    color: var(--yellow-color);
    animation: op-icon-gentle-rotate 2s cubic-bezier(0.23, 1, 0.32, 1) infinite;
}

@keyframes op-icon-gentle-rotate {
    0%, 100% { transform: rotate(0deg); }
    50% { transform: rotate(180deg); }
}

.op-toggle-indicator.switching .op-toggle-icon {
    animation: op-icon-spin 0.55s cubic-bezier(0.23, 1, 0.32, 1);
}

@keyframes op-icon-spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

.op-toggle-hint {
    font-size: 0.75rem;
    font-weight: 500;
    color: rgba(254, 196, 0, 0.8);
    white-space: nowrap;
    letter-spacing: 0.02em;
    transition: color 0.3s ease;
}

.op-toggle-indicator:hover .op-toggle-hint {
    color: var(--yellow-color);
}

/* Media Wrapper */
.op-media-wrapper {
    flex: 0 0 70%;
    width: 70%;
    max-width: 70%;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.op-media-3d,
.op-media-video,
.op-media-assembled,
.op-media-separated {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: contain;
    object-position: center;
    opacity: 0;
    transition: opacity 0.5s ease;
    pointer-events: none;
}

.op-media-3d.active,
.op-media-video.active,
.op-media-assembled.active,
.op-media-separated.active {
    opacity: 1;
    pointer-events: auto;
}

/* Model Viewer Specific */
.op-media-3d,
.op-media-assembled {
    --poster-color: transparent;
    background: transparent;
    border: none;
    outline: none;
}

.op-media-3d::part(default-progress-bar),
.op-media-assembled::part(default-progress-bar) {
    display: none;
}

.op-media-3d::part(default-ar-button),
.op-media-assembled::part(default-ar-button) {
    display: none;
}

.op-media-3d:focus,
.op-media-3d:focus-visible,
.op-media-assembled:focus,
.op-media-assembled:focus-visible {
    outline: none;
}

/* Video Styles */
.op-media-video {
    background: transparent;
}

/* ==========================================================================
   Device Labels Styles (Updated for Product Tour - Matching Doc2uV2)
   ========================================================================== */
.op-device-labels {
    position: absolute;
    inset: 0;
    pointer-events: none;
    z-index: 2;
    opacity: 1;
    visibility: visible;
    transition: opacity 0.3s ease, visibility 0.3s ease;
}

.op-device-labels:not(.visible) {
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
}

.op-label-item {
    position: absolute;
    display: flex;
    align-items: center;
    gap: 0;
    opacity: 0;
    transition: opacity 0.5s ease, transform 0.5s cubic-bezier(0.34, 1.56, 0.64, 1);
    pointer-events: auto;
}

/* Left side labels */
.op-label-left {
    flex-direction: row;
    transform: translateX(-30px);
}

.op-label-left.visible {
    opacity: 1;
    transform: translateX(0);
}

/* Right side labels */
.op-label-right {
    flex-direction: row;
    transform: translateX(30px);
}

.op-label-right.visible {
    opacity: 1;
    transform: translateX(0);
}

/* Label Text */
.op-label-text {
    padding: 10px 20px;
    background: rgba(255, 255, 255, 0.95);
    color: var(--indigo-color);
    font-size: 14px;
    font-weight: 600;
    border-radius: 25px;
    white-space: nowrap;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
    border: 1px solid rgba(167, 219, 238, 0.3);
    transition: all 0.3s ease;
}

.op-label-item:hover .op-label-text {
    background: rgba(254, 196, 0, 0.95);
    color: var(--indigo-color);
    transform: scale(1.05);
    box-shadow: 0 6px 25px rgba(254, 196, 0, 0.4);
}

/* Label Line */
.op-label-line {
    width: var(--line-width, 60px);
    height: 2px;
    background: linear-gradient(90deg, rgba(167, 219, 238, 0.8), rgba(254, 196, 0, 0.6));
    position: relative;
    flex-shrink: 0;
}

.op-label-left .op-label-line {
    background: linear-gradient(90deg, rgba(254, 196, 0, 0.6), rgba(167, 219, 238, 0.8));
}

/* Vertical Line (garis utama vertikal untuk grouped labels) */
.op-vertical-line {
    position: absolute;
    width: 2px;
    background: linear-gradient(180deg, rgba(167, 219, 238, 0.8), rgba(254, 196, 0, 0.6));
    transform: rotate(var(--rotate, 0deg));
    transform-origin: top center;
    opacity: 0;
    transition: opacity 0.5s ease;
}

.op-vertical-line.visible {
    opacity: 1;
}

/* Elbow Connector Styles */
.op-label-line.op-line-elbow {
    position: relative;
    width: var(--line-width, 60px);
}

.op-label-line.op-line-elbow::after {
    content: '';
    position: absolute;
    width: 2px;
    height: var(--elbow-height, 50px);
    background: linear-gradient(180deg, rgba(167, 219, 238, 0.8), rgba(254, 196, 0, 0.6));
    left: 0;
    transform-origin: top center;
}

/* Elbow ke atas */
.op-label-line.op-line-elbow[data-elbow="up"]::after {
    bottom: 0;
    top: auto;
    transform-origin: bottom center;
}

/* Elbow ke bawah */
.op-label-line.op-line-elbow[data-elbow="down"]::after {
    top: 0;
    bottom: auto;
    transform-origin: top center;
}

/* Shared dot for grouped labels */
.op-shared-dot {
    position: absolute;
    width: 12px;
    height: 12px;
    background: rgba(254, 196, 0, 0.9);
    border: 2px solid rgba(255, 255, 255, 0.8);
    border-radius: 50%;
    box-shadow: 0 0 10px rgba(254, 196, 0, 0.5);
    opacity: 0;
    transition: opacity 0.5s ease;
    z-index: 3;
}

.op-shared-dot.visible {
    opacity: 1;
}

/* Label Dot */
.op-label-dot {
    width: 12px;
    height: 12px;
    background: rgba(254, 196, 0, 0.9);
    border: 2px solid rgba(255, 255, 255, 0.8);
    border-radius: 50%;
    box-shadow: 0 0 10px rgba(254, 196, 0, 0.5);
    flex-shrink: 0;
    position: relative;
}

/* Pulse animation for label dot */
.op-label-dot::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 100%;
    height: 100%;
    border-radius: 50%;
    background: rgba(254, 196, 0, 0.4);
    animation: labelDotPulse 2s ease-out infinite;
}

@keyframes labelDotPulse {
    0% {
        transform: translate(-50%, -50%) scale(1);
        opacity: 1;
    }
    100% {
        transform: translate(-50%, -50%) scale(2.5);
        opacity: 0;
    }
}

/* Animation delays for labels */
.op-label-item[data-label="stethoscope"] { transition-delay: 0.1s; }
.op-label-item[data-label="thermometer"] { transition-delay: 0.2s; }
.op-label-item[data-label="tensiometer"] { transition-delay: 0.15s; }
.op-label-item[data-label="otoscope"] { transition-delay: 0.25s; }
.op-label-item[data-label="dermatoscope"] { transition-delay: 0.3s; }
.op-label-item[data-label="tongue"] { transition-delay: 0.35s; }
.op-label-item[data-label="oximeter"] { transition-delay: 0.4s; }

/* Clickable Labels (Step 7) */
.op-label-clickable {
    cursor: pointer;
    background: none;
    border: none;
    padding: 0;
    font-family: var(--font-primary);
}

.op-label-clickable:hover .op-label-text {
    background: var(--yellow-color);
    color: var(--indigo-color);
    border-color: var(--yellow-color);
    transform: scale(1.05);
}

.op-label-clickable:hover .op-label-dot {
    transform: scale(1.5);
}

/* Interactive Labels Container */
.op-labels-interactive .op-label-item {
    pointer-events: auto;
}

.op-kit-labels {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
}

.op-kit-label {
    position: absolute;
    background: rgba(255, 255, 255, 0.15);
    border: 1px solid rgba(255, 255, 255, 0.3);
    color: var(--white);
    padding: 8px 20px;
    border-radius: 50px;
    font-size: 0.9rem;
    font-weight: 500;
    backdrop-filter: blur(5px);
    white-space: nowrap;
}

/* Kit Features Grid */
.op-kit-features {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
    margin-top: 60px;
    text-align: left;
}

.op-kit-feature {
    background: rgba(255, 255, 255, 0.1);
    border-left: 3px solid var(--sky-color);
    padding: 25px;
    border-radius: 0 15px 15px 0;
}

.op-kit-feature h3 {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 10px;
}

.op-kit-feature p {
    font-size: 0.95rem;
    color: rgba(255, 255, 255, 0.85);
    line-height: 1.6;
}

/* ==========================================================================
   6. Zero Euro Offer Section - Animated Counter Design
   ========================================================================== */
.op-zero-offer {
    background: var(--indigo-color);
    padding: 80px 20px;
    position: relative;
    overflow: hidden;
}

.op-zero-wrapper {
    max-width: 1000px;
    margin: 0 auto;
    position: relative;
}

/* Decorative Circles */
.op-zero-decoration {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    pointer-events: none;
    overflow: hidden;
}

.op-zero-circle {
    position: absolute;
    border-radius: 50%;
    border: 1px solid rgba(167, 219, 238, 0.15);
}

.op-zero-circle-1 {
    width: 300px;
    height: 300px;
    top: -100px;
    left: -100px;
    animation: floatCircle 8s ease-in-out infinite;
}

.op-zero-circle-2 {
    width: 200px;
    height: 200px;
    bottom: -50px;
    right: -50px;
    animation: floatCircle 6s ease-in-out infinite reverse;
}

.op-zero-circle-3 {
    width: 150px;
    height: 150px;
    top: 50%;
    right: 10%;
    animation: floatCircle 10s ease-in-out infinite;
}

@keyframes floatCircle {
    0%, 100% { transform: translate(0, 0); }
    50% { transform: translate(20px, -20px); }
}

/* Main Card */
.op-zero-card {
    background: linear-gradient(135deg, rgba(47, 74, 205, 0.5) 0%, rgba(32, 43, 109, 0.8) 100%);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid rgba(167, 219, 238, 0.2);
    border-radius: 30px;
    display: grid;
    grid-template-columns: auto 1fr;
    overflow: hidden;
    position: relative;
    box-shadow: 0 25px 80px rgba(0, 0, 0, 0.3);
}

/* Price Section */
.op-zero-price-section {
    background: linear-gradient(135deg, var(--electric-color) 0%, var(--indigo-color) 100%);
    padding: 50px 60px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
}

.op-zero-label {
    background: var(--yellow-color);
    color: var(--indigo-color);
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    padding: 6px 16px;
    border-radius: 20px;
    margin-bottom: 20px;
}

.op-zero-price-wrapper {
    display: flex;
    align-items: flex-start;
    line-height: 1;
}

/* Flip Card Container - Seamless Design */
.op-flip-container {
    perspective: 1000px;
}

.op-flip-card {
    position: relative;
    transform-style: preserve-3d;
    transition: transform 0.8s cubic-bezier(0.4, 0.2, 0.2, 1);
}

.op-flip-card.flipped {
    transform: rotateX(-180deg);
}

.op-flip-front,
.op-flip-back {
    display: flex;
    align-items: center;
    justify-content: center;
    backface-visibility: hidden;
    -webkit-backface-visibility: hidden;
}

.op-flip-front span,
.op-flip-back span {
    font-size: 8rem;
    font-weight: 800;
}

.op-flip-front span {
    color: rgba(255, 255, 255, 0.4);
}

.op-flip-back {
    position: absolute;
    top: 0;
    left: 0;
    transform: rotateX(180deg);
}

.op-flip-back span {
    color: var(--yellow-color);
}

.op-zero-price-currency {
    font-size: 4rem;
    font-weight: 700;
    color: var(--yellow-color);
    margin-left: 8px;
    align-self: flex-start;
    margin-top: 0.5rem;
}

.op-zero-price-subtitle {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.8);
    margin-top: 15px;
    text-align: center;
}

.op-zero-price-glow {
    display: none;
}

/* Content Section */
.op-zero-content-section {
    padding: 50px;
}

.op-zero-content-section h3 {
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 30px;
    line-height: 1.3;
}

/* Benefits List */
.op-zero-benefits {
    list-style: none;
    padding: 0;
    margin: 0 0 35px;
}

.op-benefit-item {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 12px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    opacity: 0;
    transform: translateX(-20px);
    transition: opacity 0.4s ease, transform 0.4s ease;
}

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

.op-benefit-item.visible {
    opacity: 1;
    transform: translateX(0);
}

.op-benefit-check {
    width: 28px;
    height: 28px;
    background: linear-gradient(135deg, var(--yellow-color) 0%, #ffd700 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    transform: scale(0);
    transition: transform 0.3s cubic-bezier(0.68, -0.55, 0.265, 1.55);
}

.op-benefit-item.visible .op-benefit-check {
    transform: scale(1);
}

.op-benefit-check i {
    font-size: 12px;
    color: var(--indigo-color);
}

.op-benefit-text {
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.5;
}

/* CTA Button */
.op-zero-cta {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 16px 35px;
    background: var(--yellow-color);
    color: var(--indigo-color);
    border: 2px solid var(--yellow-color);
    border-radius: 50px;
    font-size: 1rem;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.4s ease;
    box-shadow: 0 10px 30px rgba(255, 214, 0, 0.3);
}

.op-zero-cta:hover {
    background: #f5d000;
    border-color: #f5d000;
    transform: translateY(-4px);
    box-shadow: 0 15px 40px rgba(255, 214, 0, 0.4);
    gap: 18px;
}

.op-zero-cta i {
    transition: transform 0.3s ease;
}

.op-zero-cta:hover i {
    transform: translateX(5px);
}

/* Responsive */
@media (max-width: 768px) {
    .op-zero-offer {
        padding: 60px 20px;
    }

    .op-zero-card {
        grid-template-columns: 1fr;
    }

    .op-zero-price-section {
        padding: 40px;
    }

    .op-flip-front span,
    .op-flip-back span {
        font-size: 6rem;
    }

    .op-zero-price-currency {
        font-size: 2.5rem;
    }

    .op-zero-content-section {
        padding: 35px;
    }

    .op-zero-content-section h3 {
        font-size: 1.5rem;
    }
}

@media (max-width: 576px) {
    .op-zero-offer {
        padding: 50px 15px;
    }

    .op-zero-price-section {
        padding: 30px;
    }

    .op-flip-front span,
    .op-flip-back span {
        font-size: 5rem;
    }

    .op-zero-price-currency {
        font-size: 2rem;
    }

    .op-zero-content-section {
        padding: 25px;
    }

    .op-zero-content-section h3 {
        font-size: 1.3rem;
    }

    .op-benefit-text {
        font-size: 0.9rem;
    }

    .op-zero-cta {
        width: 100%;
        justify-content: center;
    }
}

.op-btn-coral {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 14px 30px;
    background: var(--yellow-color);
    color: var(--indigo-color);
    border: 2px solid var(--yellow-color);
    border-radius: 50px;
    font-size: 15px;
    font-weight: 600;
    text-decoration: none;
    transition: all var(--transition-fast);
    cursor: pointer;
}

.op-btn-coral:hover {
    background: #f5d000;
    border-color: #f5d000;
    color: var(--indigo-color);
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(255, 214, 0, 0.3);
}

/* ==========================================================================
   7. Visibility Section
   ========================================================================== */
.op-visibility {
    background: var(--white);
    padding: 80px 20px;
}

.op-visibility-container {
    max-width: 1100px;
    margin: 0 auto;
}

/* ==========================================================================
   Connected Nodes Design
   ========================================================================== */
.op-connected-nodes {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    position: relative;
    margin-bottom: 80px;
    padding: 40px 0;
}

/* Connection Lines Container */
.op-node-connections {
    position: absolute;
    top: 75px;
    left: 0;
    right: 0;
    height: 3px;
    z-index: 1;
}

.op-connection-line {
    position: absolute;
    height: 3px;
    background: linear-gradient(90deg, var(--sky-color) 0%, var(--electric-color) 100%);
    opacity: 0.3;
}

.op-line-1 {
    left: calc(16.66% + 40px);
    right: calc(50% + 40px);
}

.op-line-2 {
    left: calc(50% + 40px);
    right: calc(16.66% + 40px);
}

/* Animated Flow Dot */
.op-flow-dot {
    position: absolute;
    width: 12px;
    height: 12px;
    background: var(--yellow-color);
    border-radius: 50%;
    top: 50%;
    transform: translateY(-50%);
    box-shadow: 0 0 20px var(--yellow-color), 0 0 40px var(--yellow-color);
    animation: flowDot 3s ease-in-out infinite;
}

.op-line-1 .op-flow-dot {
    animation-delay: 0s;
}

.op-line-2 .op-flow-dot {
    animation-delay: 1.5s;
}

@keyframes flowDot {
    0% {
        left: -6px;
        opacity: 0;
    }
    10% {
        opacity: 1;
    }
    90% {
        opacity: 1;
    }
    100% {
        left: calc(100% - 6px);
        opacity: 0;
    }
}

/* Node Item */
.op-node-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    flex: 1;
    max-width: 280px;
    position: relative;
    z-index: 2;
}

/* Node Circle */
.op-node-circle {
    position: relative;
    width: 110px;
    height: 110px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 25px;
}

/* Pulse Animation */
.op-node-pulse {
    position: absolute;
    inset: 0;
    border-radius: 50%;
    border: 2px solid var(--sky-color);
    opacity: 0;
    animation: nodePulse 3s ease-out infinite;
}

.op-node-item:nth-child(2) .op-node-pulse {
    animation-delay: 1s;
}

.op-node-item:nth-child(3) .op-node-pulse {
    animation-delay: 2s;
}

@keyframes nodePulse {
    0% {
        transform: scale(1);
        opacity: 0.6;
    }
    100% {
        transform: scale(1.8);
        opacity: 0;
    }
}

/* Node Icon Container */
.op-node-icon {
    width: 90px;
    height: 90px;
    background: var(--gradient-brand);
    border: 3px solid var(--sky-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    transition: all 0.4s ease;
    box-shadow: 0 8px 30px rgba(32, 43, 109, 0.3);
}

.op-node-icon::before {
    content: '';
    position: absolute;
    inset: -8px;
    border-radius: 50%;
    border: 1px dashed var(--sky-color);
    opacity: 0.4;
    animation: rotateDashed 20s linear infinite;
}

@keyframes rotateDashed {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

.op-node-icon img {
    width: 48px;
    height: 48px;
    object-fit: contain;
    transition: transform 0.4s ease;
}

/* Hover Effects */
.op-node-item:hover .op-node-icon {
    transform: scale(1.1);
    border-color: var(--electric-color);
    box-shadow: 0 12px 40px rgba(47, 74, 205, 0.3);
}

.op-node-item:hover .op-node-icon img {
    transform: scale(1.1);
}

.op-node-item:hover .op-node-icon::before {
    opacity: 0.8;
    border-color: var(--electric-color);
}

/* Node Content */
.op-node-content {
    max-width: 220px;
}

.op-node-number {
    display: inline-block;
    font-size: 0.75rem;
    font-weight: 700;
    color: var(--electric-color);
    letter-spacing: 2px;
    margin-bottom: 10px;
    padding: 4px 12px;
    background: rgba(47, 74, 205, 0.08);
    border-radius: 20px;
}

.op-node-content p {
    font-size: 0.95rem;
    font-weight: 600;
    color: var(--indigo-color);
    line-height: 1.6;
    margin: 0;
}

/* Responsive - Connected Nodes */
@media (max-width: 992px) {
    .op-connected-nodes {
        flex-direction: column;
        align-items: center;
        gap: 50px;
    }

    .op-node-connections {
        display: none;
    }

    .op-node-item {
        max-width: 100%;
        flex-direction: row;
        text-align: left;
        gap: 25px;
    }

    .op-node-circle {
        margin-bottom: 0;
        flex-shrink: 0;
    }

    .op-node-content {
        max-width: none;
    }

    /* Vertical connection line for mobile */
    .op-node-item:not(:last-child)::after {
        content: '';
        position: absolute;
        left: 55px;
        top: 110px;
        width: 3px;
        height: 50px;
        background: linear-gradient(180deg, var(--sky-color) 0%, transparent 100%);
        opacity: 0.3;
    }
}

@media (max-width: 576px) {
    .op-node-circle {
        width: 80px;
        height: 80px;
    }

    .op-node-icon {
        width: 65px;
        height: 65px;
    }

    .op-node-icon img {
        width: 35px;
        height: 35px;
    }

    .op-node-item:not(:last-child)::after {
        left: 40px;
    }
}

/* Legacy - keeping old class for compatibility */
.op-visibility-icons {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
    margin-bottom: 60px;
    text-align: center;
}

.op-visibility-icon-item {
    padding: 20px;
}

.op-visibility-icon-item .icon {
    width: 60px;
    height: 60px;
    margin: 0 auto 20px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.op-visibility-icon-item .icon i {
    font-size: 40px;
    color: var(--sky-color);
}

.op-visibility-icon-item p {
    font-size: 1rem;
    font-weight: 600;
    color: var(--indigo-color);
    line-height: 1.5;
}

/* Vitrine Section */
.op-vitrine {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0;
    background: var(--indigo-color);
    border-radius: 25px;
    overflow: hidden;
}

.op-vitrine-image {
    position: relative;
    padding: 40px;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    min-height: 400px;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.op-vitrine-image::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 50%;
    background: linear-gradient(to bottom, var(--sky-color) 0%, var(--sky-color) 30%, transparent 100%);
    z-index: 1;
}

.op-vitrine-image-overlay {
    display: none;
}

.op-vitrine-image h3 {
    position: relative;
    z-index: 2;
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--indigo-color);
    margin: 0;
    line-height: 1.4;
}

.op-vitrine-content {
    background: var(--sky-color);
    padding: 40px;
}

.op-vitrine-block {
    margin-bottom: 35px;
}

.op-vitrine-block:last-child {
    margin-bottom: 0;
}

.op-vitrine-block h4 {
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--indigo-color);
    margin-bottom: 15px;
}

.op-vitrine-block p {
    font-size: 0.95rem;
    color: var(--ash-color);
    line-height: 1.8;
}

.op-vitrine-block .highlight {
    color: var(--electric-color);
    font-weight: 600;
    text-decoration: underline;
}

.op-vitrine-block .highlight-yellow {
    background: var(--yellow-color);
    padding: 2px 6px;
    color: var(--indigo-color);
    font-weight: 600;
}

.op-vitrine-block-header {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 18px;
}

.op-vitrine-block-header h4 {
    margin-bottom: 0;
}

.op-diamond-icon {
    width: 18px;
    height: 18px;
    background: var(--yellow-color);
    transform: rotate(45deg);
    flex-shrink: 0;
}

.op-vitrine-item {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    margin-bottom: 15px;
}

.op-vitrine-item p {
    margin: 0;
}

.op-vitrine-item-icon {
    width: 32px;
    height: 32px;
    min-width: 32px;
    background: rgba(167, 219, 238, 0.2);
    border-radius: 6px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 2px;
}

.op-vitrine-item-icon i {
    font-size: 14px;
    color: var(--electric-color);
}

.highlight-underline {
    color: var(--electric-color);
    font-weight: 500;
    text-decoration: underline;
    text-underline-offset: 3px;
}

.text-link-accent {
    color: var(--electric-color);
    font-weight: 700;
    cursor: pointer;
    transition: color 0.3s ease;
}

.text-link-accent:hover {
    color: var(--coral-color);
    text-decoration: underline;
}

/* Capsule Glassmorphism Grid */
.op-capsule-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-top: 30px;
    padding-top: 25px;
    border-top: 1px solid rgba(32, 43, 109, 0.15);
    justify-content: center;
}

.op-capsule-item {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 10px 20px;
    background: rgba(255, 255, 255, 0.25);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.4);
    border-radius: 50px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(32, 43, 109, 0.1);
}

.op-capsule-item:hover {
    background: rgba(255, 255, 255, 0.45);
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(32, 43, 109, 0.15);
}

.op-capsule-item i {
    width: 28px;
    height: 28px;
    background: var(--indigo-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 12px;
    color: var(--white);
    flex-shrink: 0;
}

.op-capsule-item span {
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--indigo-color);
    white-space: nowrap;
}

/* Legacy - Vitrine Icons Grid (keeping for compatibility) */
.op-vitrine-icons-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 15px;
    margin-top: 30px;
    padding-top: 25px;
    border-top: 1px solid var(--glow-color);
}

.op-vitrine-icon-item {
    display: flex;
    align-items: center;
    gap: 10px;
}

.op-vitrine-icon-item i {
    width: 28px;
    height: 28px;
    background: rgba(167, 219, 238, 0.15);
    border-radius: 6px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 12px;
    color: var(--ash-color);
}

.op-vitrine-icon-item span {
    font-size: 0.85rem;
    font-weight: 500;
    color: var(--ash-color);
}

/* ==========================================================================
   8. Team & Why Section
   ========================================================================== */
.op-team {
    background: var(--indigo-color);
    padding: 80px 20px;
}

.op-team-container {
    max-width: 1100px;
    margin: 0 auto;
}

.op-team-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 50px;
}

.op-team-header h2 {
    font-size: 2rem;
    font-weight: 700;
    color: var(--white);
    max-width: 500px;
    line-height: 1.3;
}

.op-btn-outline {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 14px 30px;
    background: var(--yellow-color);
    color: var(--indigo-color);
    border: 2px solid var(--yellow-color);
    border-radius: 50px;
    font-size: 15px;
    font-weight: 600;
    text-decoration: none;
    transition: all var(--transition-fast);
}

.op-btn-outline:hover {
    background: #f5d000;
    border-color: #f5d000;
    color: var(--indigo-color);
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(255, 214, 0, 0.3);
}

/* Why Choose Section */
.op-why-card {
    background: var(--white);
    border-radius: 25px;
    overflow: hidden;
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 0;
}

.op-why-content {
    padding: 50px;
}

.op-why-content h3 {
    font-size: 2.2rem;
    font-weight: 700;
    color: var(--indigo-color);
    margin-bottom: 25px;
    line-height: 1.2;
}

.op-why-content p {
    font-size: 1rem;
    color: var(--ash-color);
    line-height: 1.8;
    margin-bottom: 30px;
}

.op-why-image {
    position: relative;
}

.op-why-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* ==========================================================================
   9. Offer Coverflow Section
   ========================================================================== */
.op-offer-section {
    background: var(--indigo-color);
    padding: 80px 20px;
    overflow: hidden;
}

.op-offer-container {
    max-width: 1200px;
    margin: 0 auto;
}

.op-offer-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 60px;
}

.op-offer-header h2 {
    font-size: 2rem;
    font-weight: 700;
    color: var(--white);
}

/* Coverflow Wrapper */
.op-coverflow-wrapper {
    position: relative;
    padding: 40px 0 80px;
}

.op-coverflow {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 420px;
    perspective: 1000px;
    position: relative;
}

/* Coverflow Items */
.op-coverflow-item {
    position: absolute;
    width: 320px;
    transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1),
                opacity 0.5s cubic-bezier(0.4, 0, 0.2, 1),
                filter 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    cursor: pointer;
}

.op-coverflow-card {
    background: var(--white);
    border-radius: 24px;
    padding: 40px 30px;
    text-align: center;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
    transition: box-shadow 0.5s ease;
}

.op-coverflow-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 25px;
}

.op-coverflow-icon img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.op-coverflow-card h3 {
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--indigo-color);
    margin-bottom: 15px;
    line-height: 1.4;
}

.op-coverflow-card p {
    font-size: 0.9rem;
    color: var(--ash-color);
    line-height: 1.7;
}

/* Reflection Effect */
.op-coverflow-reflection {
    height: 80px;
    background: linear-gradient(to bottom, rgba(255, 255, 255, 0.15) 0%, transparent 100%);
    border-radius: 0 0 24px 24px;
    transform: scaleY(-1) translateY(-1px);
    mask-image: linear-gradient(to bottom, rgba(0, 0, 0, 0.3) 0%, transparent 100%);
    -webkit-mask-image: linear-gradient(to bottom, rgba(0, 0, 0, 0.3) 0%, transparent 100%);
    opacity: 0.4;
}

/* Coverflow Positions */
.op-coverflow-item[data-position="center"] {
    transform: translateX(0) scale(1) rotateY(0deg);
    z-index: 5;
    opacity: 1;
    filter: blur(0) brightness(1);
}

.op-coverflow-item[data-position="center"] .op-coverflow-card {
    box-shadow: 0 25px 80px rgba(0, 0, 0, 0.5), 0 0 80px rgba(254, 196, 0, 0.25);
}

.op-coverflow-item[data-position="left-1"] {
    transform: translateX(-260px) scale(0.75) rotateY(45deg);
    z-index: 4;
    opacity: 0.25;
    filter: blur(3px) brightness(0.6);
}

.op-coverflow-item[data-position="left-2"] {
    transform: translateX(-420px) scale(0.6) rotateY(55deg);
    z-index: 3;
    opacity: 0.1;
    filter: blur(5px) brightness(0.4);
}

.op-coverflow-item[data-position="right-1"] {
    transform: translateX(260px) scale(0.75) rotateY(-45deg);
    z-index: 4;
    opacity: 0.25;
    filter: blur(3px) brightness(0.6);
}

.op-coverflow-item[data-position="right-2"] {
    transform: translateX(420px) scale(0.6) rotateY(-55deg);
    z-index: 3;
    opacity: 0.1;
    filter: blur(5px) brightness(0.4);
}

.op-coverflow-item[data-position="far-left"] {
    transform: translateX(-550px) scale(0.5) rotateY(60deg);
    z-index: 1;
    opacity: 0;
    filter: blur(8px) brightness(0.3);
    pointer-events: none;
}

.op-coverflow-item[data-position="far-right"] {
    transform: translateX(550px) scale(0.5) rotateY(-60deg);
    z-index: 1;
    opacity: 0;
    filter: blur(8px) brightness(0.3);
    pointer-events: none;
}

.op-coverflow-item[data-position="hidden"] {
    transform: translateX(0) scale(0.5) rotateY(0deg);
    z-index: 1;
    opacity: 0;
    filter: blur(8px) brightness(0.3);
    pointer-events: none;
}

/* Navigation Arrows */
.op-coverflow-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: var(--white);
    border: none;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.2);
    transition: all 0.3s ease;
    z-index: 10;
}

.op-coverflow-nav:hover {
    background: var(--yellow-color);
    transform: translateY(-50%) scale(1.1);
}

.op-coverflow-nav i {
    font-size: 1.2rem;
    color: var(--indigo-color);
}

.op-coverflow-prev {
    left: 20px;
}

.op-coverflow-next {
    right: 20px;
}

/* Dots Navigation */
.op-coverflow-dots {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-top: 40px;
}

.op-coverflow-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.3);
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
}

.op-coverflow-dot:hover {
    background: rgba(255, 255, 255, 0.5);
}

.op-coverflow-dot.active {
    background: var(--yellow-color);
    transform: scale(1.2);
}

/* Auto-slide progress bar */
.op-coverflow-progress {
    position: absolute;
    bottom: 60px;
    left: 50%;
    transform: translateX(-50%);
    width: 200px;
    height: 3px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 3px;
    overflow: hidden;
}

.op-coverflow-progress-bar {
    height: 100%;
    background: var(--yellow-color);
    width: 0%;
    transition: width 0.1s linear;
}

/* Responsive Coverflow */
@media (max-width: 992px) {
    .op-coverflow-item {
        width: 280px;
    }

    .op-coverflow-item[data-position="left-1"] {
        transform: translateX(-220px) scale(0.8) rotateY(35deg);
    }

    .op-coverflow-item[data-position="right-1"] {
        transform: translateX(220px) scale(0.8) rotateY(-35deg);
    }

    .op-coverflow-item[data-position="left-2"],
    .op-coverflow-item[data-position="right-2"] {
        opacity: 0;
        pointer-events: none;
    }
}

@media (max-width: 768px) {
    .op-offer-header {
        flex-direction: column;
        gap: 20px;
        text-align: center;
    }

    .op-coverflow {
        height: 380px;
    }

    .op-coverflow-item {
        width: 260px;
    }

    .op-coverflow-card {
        padding: 30px 25px;
    }

    .op-coverflow-item[data-position="left-1"],
    .op-coverflow-item[data-position="right-1"] {
        opacity: 0.4;
        transform: translateX(-180px) scale(0.75) rotateY(40deg);
    }

    .op-coverflow-item[data-position="right-1"] {
        transform: translateX(180px) scale(0.75) rotateY(-40deg);
    }

    .op-coverflow-nav {
        width: 40px;
        height: 40px;
    }

    .op-coverflow-prev {
        left: 10px;
    }

    .op-coverflow-next {
        right: 10px;
    }
}

@media (max-width: 576px) {
    .op-coverflow {
        height: 360px;
    }

    .op-coverflow-item {
        width: 240px;
    }

    .op-coverflow-card h3 {
        font-size: 1.1rem;
    }

    .op-coverflow-card p {
        font-size: 0.85rem;
    }

    .op-coverflow-item[data-position="left-1"],
    .op-coverflow-item[data-position="right-1"] {
        opacity: 0;
    }
}

/* ==========================================================================
   10. Quality Section
   ========================================================================== */
.op-quality {
    background: var(--light-blue-bg);
    padding: 80px 20px;
}

.op-quality-container {
    max-width: 1100px;
    margin: 0 auto;
}

.op-quality-card {
    background: var(--indigo-color);
    border-radius: 25px;
    overflow: hidden;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0;
}

.op-quality-image {
    position: relative;
}

.op-quality-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.op-quality-content {
    padding: 50px;
    color: var(--white);
}

.op-quality-content h2 {
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 25px;
    line-height: 1.3;
    color: var(--white);
}

.op-quality-content p {
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.8;
    margin-bottom: 20px;
}

/* ==========================================================================
   11. Installations Section
   ========================================================================== */
.op-installations {
    background: var(--white);
    padding: 80px 20px;
}

.op-installations-container {
    max-width: 1100px;
    margin: 0 auto;
}

.op-installations-header {
    text-align: center;
    margin-bottom: 50px;
}

.op-installations-header .label {
    color: var(--electric-color);
    font-size: 0.95rem;
    font-weight: 600;
    margin-bottom: 10px;
    text-decoration: underline;
}

.op-installations-header h2 {
    font-size: 2.2rem;
    font-weight: 700;
    color: var(--indigo-color);
    margin-bottom: 20px;
}

.op-installations-header p {
    font-size: 1rem;
    color: var(--ash-color);
    line-height: 1.8;
    max-width: 700px;
    margin: 0 auto;
}

/* Grid Hover Expand */
.op-expand-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

.op-expand-card {
    background: var(--white);
    border-radius: 16px;
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

/* When hovering on grid, non-hovered cards shrink */
.op-expand-grid:hover .op-expand-card {
    transform: scale(0.95);
    opacity: 0.6;
    filter: blur(1px);
}

/* Hovered card expands */
.op-expand-grid .op-expand-card:hover {
    transform: scale(1.08);
    opacity: 1;
    filter: blur(0);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.2);
    z-index: 10;
}

/* Card Image */
.op-expand-image {
    width: 100%;
    height: 180px;
    overflow: hidden;
}

.op-expand-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.op-expand-card:hover .op-expand-image img {
    transform: scale(1.1);
}

/* Card Info */
.op-expand-info {
    padding: 20px;
}

.op-expand-info h3 {
    font-size: 1.05rem;
    font-weight: 700;
    color: var(--indigo-color);
    margin-bottom: 10px;
    line-height: 1.3;
}

.op-expand-info .location {
    font-size: 0.9rem;
    color: var(--ash-color);
    margin-bottom: 5px;
    display: flex;
    align-items: center;
    gap: 6px;
}

.op-expand-info .location i {
    color: var(--coral-color);
    font-size: 0.85rem;
}

.op-expand-info .date {
    font-size: 0.85rem;
    color: var(--indigo-color);
    font-weight: 500;
}

/* Responsive */
@media (max-width: 992px) {
    .op-expand-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 18px;
    }

    .op-expand-image {
        height: 160px;
    }
}

@media (max-width: 576px) {
    .op-expand-grid {
        grid-template-columns: 1fr;
        gap: 15px;
    }

    .op-expand-grid:hover .op-expand-card {
        transform: scale(1);
        opacity: 1;
        filter: none;
    }

    .op-expand-grid .op-expand-card:hover {
        transform: translateY(-5px);
    }

    .op-expand-image {
        height: 180px;
    }

    .op-expand-info {
        padding: 15px;
    }

    .op-expand-info h3 {
        font-size: 1rem;
    }
}

/* ==========================================================================
   12. Testimonials Section
   ========================================================================== */
.op-testimonials {
    background: var(--light-blue-bg);
    padding: 80px 20px;
}

.op-testimonials-container {
    max-width: 1200px;
    margin: 0 auto;
}

.op-testimonials-header {
    text-align: center;
    margin-bottom: 50px;
}

.op-testimonials-header .label {
    color: var(--electric-color);
    font-size: 0.95rem;
    font-weight: 600;
    margin-bottom: 10px;
}

.op-testimonials-header h2 {
    font-size: 2rem;
    font-weight: 700;
    color: var(--indigo-color);
    margin-bottom: 10px;
}

.op-testimonials-header p {
    font-size: 1.05rem;
    color: var(--ash-color);
}

.op-testimonials-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 25px;
}

.op-testimonial-card {
    background: var(--white);
    border-radius: 20px;
    padding: 30px 25px;
    box-shadow: var(--shadow-sm);
    transition: all var(--transition-fast);
    display: flex;
    flex-direction: column;
}

.op-testimonial-card:hover {
    box-shadow: var(--shadow-md);
    transform: translateY(-5px);
}

.op-testimonial-avatar {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    overflow: hidden;
    margin-bottom: 15px;
}

.op-testimonial-avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.op-testimonial-author {
    margin-bottom: 10px;
}

.op-testimonial-author h4 {
    font-size: 1rem;
    font-weight: 700;
    color: var(--indigo-color);
    margin-bottom: 3px;
}

.op-testimonial-author span {
    font-size: 0.8rem;
    color: #000000;
    text-transform: uppercase;
    font-weight: 600;
    letter-spacing: 0.5px;
}

.op-testimonial-text {
    font-size: 0.9rem;
    color: var(--ash-color);
    line-height: 1.7;
    font-style: italic;
    flex-grow: 1;
    margin-bottom: 20px;
}

.op-testimonial-link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 10px 20px;
    background: var(--indigo-color);
    color: var(--white);
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 600;
    text-decoration: none;
    transition: all var(--transition-fast);
}

.op-testimonial-link:hover {
    background: var(--electric-color);
}

/* ==========================================================================
   Product Tour Responsive Styles
   ========================================================================== */
@media (max-width: 1200px) {
    .op-product-tour {
        height: 580px;
        margin: 40px auto;
    }

    .op-step-container {
        height: 580px;
        min-height: 580px;
        padding: 12px;
    }

    .op-showcase {
        max-height: none;
        border-radius: 22px;
    }

    .op-sidebar {
        flex: 0 0 30%;
        width: 30%;
        max-width: 30%;
        padding: 30px 25px;
    }

    .op-media-wrapper {
        flex: 0 0 70%;
        width: 70%;
        max-width: 70%;
    }

    .op-media-3d,
    .op-media-video,
    .op-media-assembled,
    .op-media-separated {
        inset: 0;
    }

    .op-device-labels {
        inset: 0;
    }

    .op-step-title {
        font-size: 1.4rem;
    }

    .op-step-indicator-fixed {
        right: 25px;
    }
}

@media (max-width: 992px) {
    .op-product-tour {
        height: 550px;
        border-radius: 25px;
    }

    .op-step-container {
        height: 550px;
        min-height: 550px;
        padding: 10px;
    }

    .op-showcase {
        flex-direction: column;
        max-height: none;
        border-radius: 20px;
    }

    .op-sidebar {
        flex: 0 0 auto;
        width: 100%;
        max-width: 100%;
        flex-direction: row;
        align-items: center;
        justify-content: space-between;
        padding: 20px 25px;
        border-right: none;
        border-bottom: 1px solid rgba(167, 219, 238, 0.15);
    }

    .op-step-info {
        flex: 1;
    }

    .op-step-number {
        margin-bottom: 8px;
    }

    .op-step-title {
        font-size: 1.2rem;
        margin-bottom: 8px;
    }

    .op-step-desc {
        display: none;
    }

    .op-toggle-container {
        flex: none;
        padding-top: 0;
        margin-top: 0;
    }

    .op-menu-item {
        padding: 0;
    }

    .op-menu-btn {
        display: none;
    }

    .op-toggle-indicator {
        border-top: none;
        border: 1px dashed rgba(254, 196, 0, 0.4);
        border-radius: 8px;
        padding: 10px 14px;
    }

    .op-media-wrapper {
        flex: 1 1 auto;
        width: 100%;
        max-width: 100%;
        min-height: 350px;
    }

    .op-media-3d,
    .op-media-video,
    .op-media-assembled,
    .op-media-separated {
        inset: 0;
    }

    .op-device-labels {
        display: none;
    }

    .op-step-indicator-fixed {
        right: 15px;
        gap: 15px;
    }

    .op-step-dots {
        gap: 10px;
    }

    .op-dot {
        width: 10px;
        height: 10px;
    }

    .op-dot.active {
        width: 12px;
        height: 12px;
    }
}

@media (max-width: 768px) {
    .op-product-tour {
        height: 500px;
        margin: 30px auto;
        border-radius: 20px;
    }

    .op-step-container {
        height: 500px;
        min-height: 500px;
        padding: 8px;
    }

    .op-step-indicator-fixed {
        right: 12px;
        gap: 12px;
    }

    .op-step-dots {
        gap: 8px;
    }

    .op-dot {
        width: 8px;
        height: 8px;
    }

    .op-dot.active {
        width: 10px;
        height: 10px;
    }

    .op-step-counter {
        font-size: 0.7rem;
        padding: 6px 10px;
    }

    .op-showcase {
        border-radius: 15px;
        max-height: none;
    }

    .op-sidebar {
        padding: 15px 20px;
    }

    .op-step-number {
        font-size: 0.65rem;
        padding: 4px 10px;
        margin-bottom: 10px;
    }

    .op-step-title {
        font-size: 1rem;
        margin-bottom: 5px;
    }

    .op-toggle-indicator {
        padding: 8px 12px;
    }

    .op-toggle-hint {
        font-size: 0.7rem;
    }

    .op-media-wrapper {
        min-height: 300px;
    }

    .op-media-3d,
    .op-media-video,
    .op-media-assembled,
    .op-media-separated {
        inset: 0;
    }

    .op-3d-loading {
        border-radius: 20px;
    }
}

@media (max-width: 576px) {
    .op-product-tour {
        height: 480px;
        margin: 20px auto;
        border-radius: 15px;
    }

    .op-step-container {
        height: 480px;
        min-height: 480px;
        padding: 6px;
    }

    .op-step-indicator-fixed {
        right: 10px;
        gap: 10px;
    }

    .op-step-dots {
        gap: 6px;
    }

    .op-dot {
        width: 7px;
        height: 7px;
    }

    .op-showcase {
        border-radius: 12px;
        max-height: none;
    }

    .op-sidebar {
        padding: 12px 15px;
    }

    .op-step-title {
        font-size: 0.95rem;
    }

    .op-toggle-container {
        width: auto;
        justify-content: center;
    }

    .op-media-wrapper {
        min-height: 300px;
    }

    .op-media-3d,
    .op-media-video,
    .op-media-assembled,
    .op-media-separated {
        inset: 0;
    }

    .op-3d-loading {
        border-radius: 15px;
    }
}

/* ==========================================================================
   13. Responsive Styles
   ========================================================================== */
@media (max-width: 1200px) {
    .op-hero-title {
        font-size: 2.5rem;
    }

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

@media (max-width: 992px) {
    .op-header {
        padding: 15px 20px;
        flex-wrap: wrap;
        gap: 15px;
    }

    .op-nav {
        gap: 20px;
    }

    .op-logo img {
        height: 38px;
    }

    .op-hero-title {
        font-size: 2.2rem;
    }

    .op-titulaire-container {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .op-kit-visual {
        height: 550px;
    }

    .op-device-labels {
        display: none;
    }

    .op-kit-features {
        grid-template-columns: 1fr;
    }

    .op-zero-container {
        flex-direction: column;
        text-align: center;
    }

    .op-visibility-icons {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .op-vitrine {
        grid-template-columns: 1fr;
    }

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

    .op-why-card {
        grid-template-columns: 1fr;
    }

    .op-why-image {
        height: 300px;
    }

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

    .op-offer-header {
        flex-direction: column;
        gap: 20px;
        text-align: center;
    }

    .op-quality-card {
        grid-template-columns: 1fr;
    }

    .op-quality-image {
        height: 300px;
    }

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

    .op-team-header {
        flex-direction: column;
        gap: 20px;
        text-align: center;
    }
}

@media (max-width: 768px) {
    .op-topbar {
        flex-wrap: wrap;
        gap: 15px;
        justify-content: center;
    }

    .op-header {
        flex-direction: column;
        text-align: center;
    }

    .op-nav {
        flex-wrap: wrap;
        justify-content: center;
        gap: 15px;
    }

    .op-cta-btn {
        padding: 12px 24px;
        font-size: 14px;
    }

    .op-hero {
        min-height: 80vh;
    }

    .op-hero-container {
        padding: 0 15px;
    }

    .op-hero-title {
        font-size: 1.8rem;
    }

    .op-hero-description {
        font-size: 1.1rem;
        margin-bottom: 25px;
    }

    .op-kit-visual {
        height: 450px;
    }

    .op-hex-icon {
        width: 45px;
        height: 52px;
    }

    .op-hex-icon i {
        font-size: 16px;
    }

    .op-hex-1 { top: 10%; left: 5%; }
    .op-hex-2 { top: 25%; left: 2%; }
    .op-hex-3 { top: 5%; right: 5%; }
    .op-hex-4 { top: 18%; right: 2%; }
    .op-hex-5 { top: 35%; right: 3%; }
    .op-hex-6 { top: 40%; left: 2%; }
    .op-hex-7 { display: none; }

    .op-titulaire-content h2 {
        font-size: 2rem;
    }

    .op-stat-item {
        padding: 25px 15px;
    }

    .op-stat-icon {
        width: 55px;
        height: 55px;
    }

    .op-stat-text {
        font-size: 0.85rem;
    }

    .op-form-card {
        padding: 30px 25px;
    }

    .op-kit h2 {
        font-size: 1.8rem;
    }

    .op-zero-price {
        font-size: 4rem;
    }

    .op-zero-content h3 {
        font-size: 1.3rem;
    }

    .op-offer-grid {
        grid-template-columns: 1fr;
    }

    .op-installations-grid {
        grid-template-columns: 1fr;
    }

    .op-testimonials-grid {
        grid-template-columns: 1fr;
    }

    .op-vitrine-image,
    .op-vitrine-content,
    .op-why-content,
    .op-quality-content {
        padding: 30px;
    }

    .op-vitrine-image h3,
    .op-why-content h3 {
        font-size: 1.6rem;
    }

    .op-vitrine-icons-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 12px;
    }

    .op-vitrine-icon-item span {
        font-size: 0.8rem;
    }

    .op-quality-content h2 {
        font-size: 1.6rem;
    }
}

@media (max-width: 576px) {
    .section-container {
        padding: 0 15px;
    }

    .op-hero-title {
        font-size: 1.5rem;
    }

    .op-titulaire,
    .op-kit,
    .op-visibility,
    .op-team,
    .op-offer-section,
    .op-quality,
    .op-installations,
    .op-testimonials {
        padding: 60px 15px;
    }

    .op-titulaire-content h2 {
        font-size: 1.7rem;
    }

    .op-kit-visual {
        height: 350px;
    }

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

    .op-stat-item {
        padding: 20px 15px;
        aspect-ratio: auto;
    }

    .op-offer-header h2,
    .op-team-header h2,
    .op-installations-header h2,
    .op-testimonials-header h2 {
        font-size: 1.5rem;
    }

    .op-vitrine-content {
        padding: 25px 20px;
    }

    .op-vitrine-block-header h4 {
        font-size: 1.1rem;
    }

    .op-vitrine-icons-grid {
        grid-template-columns: 1fr 1fr;
        gap: 10px;
    }

    .op-vitrine-icon-item {
        gap: 8px;
    }

    .op-vitrine-icon-item i {
        width: 24px;
        height: 24px;
        font-size: 10px;
    }

    .op-vitrine-icon-item span {
        font-size: 0.75rem;
    }
}

/* ==========================================================================
   14. Reveal Animations
   ========================================================================== */

/* Base reveal - slide up */
.reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

.reveal.active {
    opacity: 1;
    transform: translateY(0);
}

/* Reveal from left */
.reveal-left {
    opacity: 0;
    transform: translateX(-40px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

.reveal-left.active {
    opacity: 1;
    transform: translateX(0);
}

/* Reveal from right */
.reveal-right {
    opacity: 0;
    transform: translateX(40px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

.reveal-right.active {
    opacity: 1;
    transform: translateX(0);
}

/* Reveal scale */
.reveal-scale {
    opacity: 0;
    transform: scale(0.9);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

.reveal-scale.active {
    opacity: 1;
    transform: scale(1);
}

/* Reveal fade only */
.reveal-fade {
    opacity: 0;
    transition: opacity 0.8s ease;
}

.reveal-fade.active {
    opacity: 1;
}

/* Stagger children animation */
.reveal-stagger > * {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.5s ease, transform 0.5s ease;
}

.reveal-stagger.active > *:nth-child(1) { transition-delay: 0.1s; }
.reveal-stagger.active > *:nth-child(2) { transition-delay: 0.2s; }
.reveal-stagger.active > *:nth-child(3) { transition-delay: 0.25s; }
.reveal-stagger.active > *:nth-child(4) { transition-delay: 0.3s; }
.reveal-stagger.active > *:nth-child(5) { transition-delay: 0.35s; }
.reveal-stagger.active > *:nth-child(6) { transition-delay: 0.4s; }

.reveal-stagger.active > * {
    opacity: 1;
    transform: translateY(0);
}

/* Delay modifiers - works with all reveal types */
.reveal-delay-1 { transition-delay: 0.1s; }
.reveal-delay-2 { transition-delay: 0.2s; }
.reveal-delay-3 { transition-delay: 0.3s; }
.reveal-delay-4 { transition-delay: 0.4s; }
.reveal-delay-5 { transition-delay: 0.5s; }
.reveal-delay-6 { transition-delay: 0.6s; }
