@import url('https://fonts.googleapis.com/css2?family=Outfit:wght@300;400;500;600;700;800&family=Playfair+Display:ital,wght@0,400..900;1,400..900&display=swap');

/* ==========================================================================
   DESIGN SYSTEM & VARIABLES
   ========================================================================== */
:root {
    /* Color Palette */
    --primary: #2d363f;        /* RAL 7016 Gris Anthracite */
    --primary-rgb: 45, 54, 63;
    --primary-dark: #1f252b;
    --primary-light: #44515f;
    
    --accent: #d6001c;         /* Rouge Pergow dynamique */
    --accent-hover: #b00014;
    --accent-rgb: 214, 0, 28;
    
    --dark: #121417;           /* Noir profond premium */
    --light: #ffffff;
    --bg-light: #f8fafc;       /* Gris très clair moderne */
    --bg-card: rgba(255, 255, 255, 0.85);
    
    --text-dark: #1e293b;
    --text-muted: #64748b;
    --text-light: #f8fafc;
    
    /* Logo Colors Variables */
    --logo-text: var(--primary);
    --logo-sub: #5e6b7a;
    
    /* System Colors for Configurator RAL Chips */
    --ral-9016: #fbfbfd;       /* Blanc Pur */
    --ral-7016: #383e42;       /* Gris Anthracite */
    --ral-9005: #151515;       /* Noir Profond */
    
    /* Layout & Spacing */
    --container-width: 1280px;
    --header-height: 95px; /* Agrandissement qualitatif pour donner du souffle au logo */
    --transition-smooth: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    --transition-fast: all 0.2s ease;
    
    /* Glassmorphism & Shadows */
    --shadow-soft: 0 10px 30px -10px rgba(0, 0, 0, 0.08);
    --shadow-medium: 0 20px 40px -15px rgba(0, 0, 0, 0.12);
    --shadow-premium: 0 30px 60px -20px rgba(0, 0, 0, 0.25);
    --border-glass: rgba(255, 255, 255, 0.2);
    --bg-glass: rgba(255, 255, 255, 0.7);
    --backdrop-blur: blur(16px);
}

/* ==========================================================================
   RESET & BASE STYLES
   ========================================================================== */
*, *::before, *::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

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

body {
    font-family: 'Outfit', sans-serif;
    background-color: var(--bg-light);
    color: var(--text-dark);
    line-height: 1.6;
    overflow-x: hidden;
}

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

button, input, select, textarea {
    font-family: inherit;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

ul {
    list-style: none;
}

/* ==========================================================================
   TYPOGRAPHY
   ========================================================================== */
h1, h2, h3, h4, h5, h6 {
    font-weight: 700;
    line-height: 1.2;
    color: var(--primary);
}

h1 {
    font-size: 3.5rem;
    letter-spacing: -0.03em;
}

h2 {
    font-size: 2.5rem;
    letter-spacing: -0.02em;
    position: relative;
    padding-bottom: 15px;
}

h2.with-underline::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 4px;
    background-color: var(--accent);
    border-radius: 2px;
}

h2.align-left::after {
    left: 0;
    transform: none;
}

h3 {
    font-size: 1.75rem;
    letter-spacing: -0.01em;
}

.text-gradient {
    background: linear-gradient(135deg, var(--primary) 30%, var(--primary-light));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.subtitle {
    font-size: 1.15rem;
    color: var(--text-muted);
    font-weight: 400;
    max-width: 600px;
    margin: 10px auto 0 auto;
}

/* ==========================================================================
   LAYOUT CONTAINERS
   ========================================================================== */
.container {
    width: 100%;
    max-width: var(--container-width);
    margin: 0 auto;
    padding: 0 24px;
}

.section {
    padding: 100px 0;
    position: relative;
}

.section-dark {
    background-color: var(--primary);
    color: var(--text-light);
}

.section-dark h2, .section-dark h3 {
    color: var(--light);
}

.section-dark .subtitle {
    color: rgba(248, 250, 252, 0.7);
}

/* ==========================================================================
   BUTTONS & INTERACTIVE ELEMENTS
   ========================================================================== */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 14px 28px;
    font-size: 1rem;
    font-weight: 600;
    border-radius: 50px;
    border: none;
    cursor: pointer;
    transition: var(--transition-smooth);
    gap: 10px;
}

.btn-primary {
    background-color: var(--accent);
    color: var(--light);
    box-shadow: 0 4px 15px rgba(214, 0, 28, 0.3);
}

.btn-primary:hover {
    background-color: var(--accent-hover);
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(214, 0, 28, 0.4);
}

.btn-secondary {
    background-color: var(--primary);
    color: var(--light);
    box-shadow: 0 4px 15px rgba(45, 54, 63, 0.2);
}

.btn-secondary:hover {
    background-color: var(--primary-dark);
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(45, 54, 63, 0.3);
}

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

.btn-outline:hover {
    background-color: var(--primary);
    color: var(--light);
    transform: translateY(-2px);
}

.btn-outline-white {
    background-color: transparent;
    color: var(--light);
    border: 2px solid rgba(255, 255, 255, 0.4);
}

.btn-outline-white:hover {
    background-color: var(--light);
    color: var(--primary);
    border-color: var(--light);
    transform: translateY(-2px);
}

/* ==========================================================================
   HEADER / NAVIGATION (PREMIUM GLASSMORPHISM)
   ========================================================================== */
/* ==========================================================================
   HEADER / NAVIGATION (PREMIUM GLASSMORPHISM)
   ========================================================================== */
header {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: var(--header-height);
    z-index: 1000;
    background-color: transparent;
    border-bottom: 1px solid transparent;
    transition: var(--transition-smooth);
    display: flex;
    align-items: center;
}

header.scrolled {
    position: fixed;
    top: 0;
    background-color: var(--bg-glass);
    backdrop-filter: var(--backdrop-blur);
    border-bottom: 1px solid var(--border-glass);
    box-shadow: var(--shadow-soft);
    height: 70px;
    --logo-text: var(--primary) !important;
    --logo-sub: #5e6b7a !important;
}

header .container {
    height: 100%;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

/* Image Logo Styling */
.logo {
    display: inline-flex;
    align-items: center;
    text-decoration: none;
    background: transparent;
    padding: 0;
    box-shadow: none;
    border: none;
    transition: var(--transition-smooth);
}

.logo-img {
    height: 60px;
    width: auto;
    max-width: 100%;
    object-fit: contain;
    transition: var(--transition-smooth);
}

header.scrolled .logo {
    background: transparent;
    padding: 0;
    box-shadow: none;
}

header.scrolled .logo-img {
    height: 48px;
    content: url("../assets/logo.png");
}

footer .logo {
    display: inline-flex;
    margin-bottom: 20px;
    background: transparent;
    padding: 0;
    box-shadow: none;
}

footer .logo-img {
    height: 56px;
}

header.header-on-dark:not(.scrolled) .logo {
    background: transparent;
    padding: 0;
    box-shadow: none;
    border: none;
}

header.header-on-dark:not(.scrolled) .logo-img {
    height: 60px;
    content: url("../assets/logo_white.png");
    filter: none;
}

/* Header on dark background (transparent at top) */
header.header-on-dark:not(.scrolled) {
    background: linear-gradient(180deg, rgba(15, 23, 42, 0.6) 0%, rgba(15, 23, 42, 0) 100%);
    --logo-text: var(--light);
    --logo-sub: rgba(255, 255, 255, 0.6);
}

header.header-on-dark:not(.scrolled) .nav-link {
    color: rgba(255, 255, 255, 0.95);
}

header.header-on-dark:not(.scrolled) .nav-link:hover {
    color: var(--light);
}

header.header-on-dark:not(.scrolled) .menu-toggle span {
    background-color: var(--light);
}

/* Nav Menu */
.nav-menu {
    display: flex;
    align-items: center;
    gap: 36px;
}

.nav-link {
    font-size: 0.95rem;
    font-weight: 600;
    color: var(--primary);
    position: relative;
    padding: 8px 0;
    transition: var(--transition-fast);
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background-color: var(--accent);
    transition: var(--transition-fast);
}

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

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

header.header-on-dark:not(.scrolled) .nav-link.active::after {
    background-color: var(--light);
}

header.header-on-dark:not(.scrolled) .nav-link:hover::after {
    background-color: var(--light);
}

/* ==========================================================================
   DROPDOWN MENU - "NOS PRODUITS"
   ========================================================================== */
.nav-dropdown-wrapper {
    position: relative;
    display: inline-flex;
    align-items: center;
}

.nav-dropdown-trigger {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    cursor: pointer;
}

.dropdown-chevron {
    transition: transform 0.25s ease;
    flex-shrink: 0;
}

.nav-dropdown-wrapper:hover .dropdown-chevron {
    transform: rotate(180deg);
}

.nav-dropdown-menu {
    position: absolute;
    top: calc(100% + 4px);
    left: 50%;
    transform: translateX(-50%) translateY(8px);
    width: 320px;
    background: #ffffff;
    border-radius: 12px;
    padding: 8px;
    box-shadow: 0 16px 36px rgba(15, 23, 42, 0.16), 0 4px 12px rgba(0, 0, 0, 0.08);
    border: 1px solid rgba(15, 23, 42, 0.08);
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transition: opacity 0.2s cubic-bezier(0.16, 1, 0.3, 1), transform 0.2s cubic-bezier(0.16, 1, 0.3, 1), visibility 0.2s ease;
    z-index: 1050;
}

/* Pont de survol pour éviter la fermeture involontaire */
.nav-dropdown-menu::before {
    content: '';
    position: absolute;
    top: -12px;
    left: 0;
    width: 100%;
    height: 12px;
}

.nav-dropdown-wrapper:hover .nav-dropdown-menu,
.nav-dropdown-wrapper:focus-within .nav-dropdown-menu {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    transform: translateX(-50%) translateY(0);
}

.dropdown-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 10px 12px;
    border-radius: 8px;
    text-decoration: none;
    transition: background-color 0.2s ease, transform 0.2s ease;
    color: var(--primary) !important;
}

.dropdown-item:hover {
    background-color: #f8fafc;
    transform: translateX(3px);
}

.dropdown-item-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    border-radius: 8px;
    background: rgba(204, 85, 0, 0.08);
    color: var(--accent);
    flex-shrink: 0;
}

.dropdown-item-icon svg {
    width: 18px;
    height: 18px;
}

.dropdown-item-info {
    display: flex;
    flex-direction: column;
    text-align: left;
}

.dropdown-item-title {
    font-size: 0.9rem;
    font-weight: 700;
    color: var(--primary);
    line-height: 1.25;
}

.dropdown-item-desc {
    font-size: 0.74rem;
    color: var(--text-muted);
    margin-top: 2px;
    line-height: 1.3;
}

.dropdown-item:hover .dropdown-item-title {
    color: var(--accent);
}

.nav-cta {
    padding: 10px 22px;
    font-size: 0.9rem;
}

/* Mobile Toggle */
.menu-toggle {
    display: none;
    flex-direction: column;
    justify-content: space-between;
    width: 26px;
    height: 18px;
    background: transparent;
    border: none;
    cursor: pointer;
    z-index: 1010;
}

.menu-toggle span {
    display: block;
    width: 100%;
    height: 2.5px;
    background-color: var(--primary);
    border-radius: 4px;
    transition: var(--transition-smooth);
}

/* ==========================================================================
   FOOTER
   ========================================================================== */
footer {
    background-color: var(--dark);
    color: rgba(255, 255, 255, 0.7);
    padding: 80px 0 30px 0;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    --logo-text: var(--light);
    --logo-sub: rgba(255, 255, 255, 0.4);
}

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

.footer-info .logo-title {
    color: var(--light);
}

.footer-info .logo-subtitle {
    color: rgba(255, 255, 255, 0.4);
}

.footer-desc {
    margin: 20px 0 25px 0;
    font-size: 0.95rem;
    line-height: 1.6;
}

.qualicoat-badge-footer {
    display: flex;
    align-items: center;
    gap: 12px;
    background-color: #ffffff;
    border: 1px solid rgba(255, 255, 255, 0.2);
    padding: 8px 14px;
    border-radius: 10px;
    width: fit-content;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.qualicoat-badge-footer img {
    height: 28px;
    width: auto;
    object-fit: contain;
}

.qualicoat-text {
    font-size: 0.68rem;
    line-height: 1.25;
    color: #334155;
    font-weight: 600;
}

.qualicoat-text span {
    display: block;
    font-weight: 800;
    color: #1e3a8a; /* Bleu officiel Qualicoat */
}

.footer-title {
    color: var(--light);
    font-size: 1.15rem;
    font-weight: 600;
    margin-bottom: 25px;
    position: relative;
}

.footer-links {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.footer-link {
    font-size: 0.95rem;
    transition: var(--transition-fast);
}

.footer-link:hover {
    color: var(--light);
    transform: translateX(4px);
}

.footer-contact-list {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.footer-contact-item {
    display: flex;
    align-items: flex-start;
    gap: 15px;
    font-size: 0.95rem;
}

.footer-contact-item svg {
    width: 20px;
    height: 20px;
    color: var(--accent);
    flex-shrink: 0;
    margin-top: 3px;
}

.footer-contact-text span {
    display: block;
    color: var(--light);
    font-weight: 500;
}

.footer-phone-list {
    display: flex;
    flex-direction: column;
    gap: 6px;
    margin-top: 6px;
}

.footer-phone-list a {
    color: #94a3b8;
    font-weight: 600;
    font-size: 0.92rem;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    transition: var(--transition-fast);
}

.footer-phone-list a:hover {
    color: var(--accent);
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    padding-top: 30px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    font-size: 0.85rem;
}

.footer-copy {
    color: rgba(255, 255, 255, 0.4);
}

.footer-legal-links {
    display: flex;
    gap: 24px;
}

.footer-legal-link:hover {
    color: var(--light);
}

/* ==========================================================================
   COMMON COMPONENTS
   ========================================================================== */
/* Section Headers */
.section-header {
    text-align: center;
    margin-bottom: 60px;
}

/* Contact Badges for Direct CTA */
.whatsapp-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background-color: #25D366;
    color: white;
    padding: 10px 20px;
    border-radius: 30px;
    font-weight: 600;
    font-size: 0.9rem;
    transition: var(--transition-smooth);
    box-shadow: 0 4px 10px rgba(37, 211, 102, 0.2);
}

.whatsapp-btn:hover {
    background-color: #128C7E;
    transform: translateY(-2px);
    box-shadow: 0 6px 15px rgba(37, 211, 102, 0.3);
    color: white;
}

/* Micro-animations / Scroll reveal classes */
.reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.8s ease, transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

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

/* ==========================================================================
   RESPONSIVENESS (MEDIA QUERIES)
   ========================================================================== */
@media (max-width: 1024px) {
    h1 {
        font-size: 2.75rem;
    }
    h2 {
        font-size: 2rem;
    }
    .footer-grid {
        grid-template-columns: 1fr 1fr;
        gap: 40px;
    }
}

@media (max-width: 768px) {
    :root {
        --header-height: 78px; /* Hauteur de header ajustée pour le confort visuel */
    }
    
    .logo svg {
        height: 58px !important; /* Agrandissement qualitatif sur mobile également */
    }
    
    .section {
        padding: 60px 0;
    }
    
    /* Header menu mobile toggle */
    .menu-toggle {
        display: flex;
    }
    
    .nav-menu {
        position: fixed;
        top: 0;
        right: -100%;
        width: 85%;
        max-width: 320px;
        height: 100vh;
        background-color: #ffffff;
        flex-direction: column;
        justify-content: flex-start;
        align-items: center;
        gap: 18px;
        box-shadow: -10px 0 30px rgba(0, 0, 0, 0.2);
        transition: var(--transition-smooth);
        z-index: 1000;
        padding: 50px 20px;
        overflow-y: auto;
    }
    
    .nav-menu.active {
        right: 0;
    }
    
    /* Force high contrast dark text on white mobile drawer */
    .nav-menu .nav-link,
    header.header-on-dark:not(.scrolled) .nav-menu .nav-link {
        color: var(--primary) !important;
        font-size: 1.2rem;
        font-weight: 700;
        padding: 6px 0;
    }
    
    .nav-menu .nav-link:hover,
    .nav-menu .nav-link.active,
    header.header-on-dark:not(.scrolled) .nav-menu .nav-link:hover,
    header.header-on-dark:not(.scrolled) .nav-menu .nav-link.active {
        color: var(--accent) !important;
    }
    
    .nav-menu .nav-link::after,
    header.header-on-dark:not(.scrolled) .nav-menu .nav-link::after {
        background-color: var(--accent) !important;
    }

    /* Mobile Dropdown adapt */
    .nav-dropdown-wrapper {
        flex-direction: column;
        width: 100%;
        align-items: center;
    }

    .nav-dropdown-trigger {
        font-size: 1.2rem;
        font-weight: 700;
        padding: 6px 0;
        color: var(--primary) !important;
    }

    .dropdown-chevron {
        display: none;
    }

    .nav-dropdown-menu {
        position: static;
        transform: none !important;
        opacity: 1;
        visibility: visible;
        pointer-events: auto;
        box-shadow: none;
        border: 1px solid #e2e8f0;
        background: #f8fafc;
        border-radius: 10px;
        width: 100%;
        max-width: 270px;
        padding: 4px;
        margin-top: 4px;
    }

    .nav-dropdown-menu::before {
        display: none;
    }

    .dropdown-item {
        padding: 8px 10px;
        gap: 10px;
    }

    .dropdown-item-icon {
        width: 30px;
        height: 30px;
    }

    .dropdown-item-icon svg {
        width: 15px;
        height: 15px;
    }

    .dropdown-item-title {
        font-size: 0.85rem;
    }

    .dropdown-item-desc {
        display: none;
    }

    /* Force dark color for burger 'X' close button on white mobile drawer */
    .menu-toggle.active span,
    header.header-on-dark:not(.scrolled) .menu-toggle.active span {
        background-color: var(--primary) !important;
    }
    
    .menu-toggle.active span:nth-child(1) {
        transform: rotate(45deg) translate(5px, 6px);
    }
    
    .menu-toggle.active span:nth-child(2) {
        opacity: 0;
    }
    
    .menu-toggle.active span:nth-child(3) {
        transform: rotate(-45deg) translate(5px, -6px);
    }

    /* Backdrop overlay for mobile menu */
    .nav-menu-backdrop {
        position: fixed;
        top: 0;
        left: 0;
        width: 100vw;
        height: 100vh;
        background-color: rgba(0, 0, 0, 0.5);
        backdrop-filter: blur(4px);
        -webkit-backdrop-filter: blur(4px);
        z-index: 999;
        opacity: 0;
        pointer-events: none;
        transition: opacity 0.3s ease;
    }

    .nav-menu-backdrop.active {
        opacity: 1;
        pointer-events: all;
    }
    
    .footer-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .footer-bottom {
        flex-direction: column;
        gap: 15px;
        text-align: center;
    }
    
    .footer-legal-links {
        justify-content: center;
    }
}

/* ==========================================================================
   SMS OTP VERIFICATION MODAL & UI STYLES
   ========================================================================== */
.phone-info-badge {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 0.78rem;
    color: var(--text-muted);
    margin-top: 6px;
    font-weight: 500;
}

.phone-info-badge svg {
    width: 13px;
    height: 13px;
    color: var(--text-muted);
    flex-shrink: 0;
}

.otp-modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background-color: rgba(18, 20, 23, 0.65);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    z-index: 3000;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    pointer-events: none;
    transition: var(--transition-smooth);
}

.otp-modal-overlay.active {
    opacity: 1;
    pointer-events: all;
}

.otp-modal {
    background-color: var(--light);
    width: 90%;
    max-width: 460px;
    border-radius: 24px;
    padding: 35px;
    box-shadow: var(--shadow-premium);
    border: 1px solid rgba(255, 255, 255, 0.2);
    position: relative;
    transform: translateY(40px);
    transition: var(--transition-smooth);
    display: flex;
    flex-direction: column;
}

.otp-modal-overlay.active .otp-modal {
    transform: translateY(0);
}

.close-otp-modal-btn {
    position: absolute;
    top: 20px;
    right: 20px;
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background-color: rgba(45, 54, 63, 0.05);
    border: none;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    font-weight: 300;
    transition: var(--transition-fast);
    color: var(--primary);
}

.close-otp-modal-btn:hover {
    background-color: var(--accent);
    color: var(--light);
}

.otp-shield-icon {
    width: 56px;
    height: 56px;
    background-color: rgba(214, 0, 28, 0.07);
    color: var(--accent);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 5px auto 18px auto;
}

.otp-shield-icon svg {
    width: 28px;
    height: 28px;
}

.otp-modal-title {
    text-align: center;
    font-size: 1.4rem;
    font-weight: 800;
    color: var(--primary);
    margin-bottom: 8px;
    letter-spacing: -0.02em;
}

.otp-modal-subtitle {
    text-align: center;
    font-size: 0.85rem;
    color: var(--text-muted);
    line-height: 1.5;
    margin-bottom: 22px;
    padding: 0 5px;
}

.otp-number-display {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 12px;
    background-color: var(--bg-light);
    border: 1px solid #e2e8f0;
    padding: 8px 16px;
    border-radius: 30px;
    font-size: 0.85rem;
    margin-bottom: 24px;
    align-self: center;
}

.otp-number-display strong {
    color: var(--primary);
}

.otp-edit-btn {
    border: none;
    background: transparent;
    color: var(--accent);
    font-weight: 700;
    cursor: pointer;
    font-size: 0.8rem;
    transition: var(--transition-fast);
    padding: 2px 6px;
    border-radius: 4px;
}

.otp-edit-btn:hover {
    background-color: rgba(214, 0, 28, 0.05);
    color: var(--accent-hover);
}

.otp-digits-container {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-bottom: 12px;
}

.otp-digit {
    width: 44px;
    height: 52px;
    border-radius: 12px;
    border: 2px solid #cbd5e1;
    text-align: center;
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--primary);
    background-color: var(--bg-light);
    transition: var(--transition-fast);
}

.otp-digit:focus {
    outline: none;
    border-color: var(--accent);
    background-color: var(--light);
    box-shadow: 0 0 0 4px rgba(214, 0, 28, 0.1);
}

.otp-digit.error {
    border-color: #ef4444;
    background-color: #fef2f2;
    color: #ef4444;
}

.otp-error-message {
    text-align: center;
    color: #ef4444;
    font-size: 0.82rem;
    font-weight: 600;
    display: none;
    margin-bottom: 15px;
    animation: otp-shake 0.35s cubic-bezier(.36,.07,.19,.97) both;
}

.otp-timer-section {
    text-align: center;
    font-size: 0.82rem;
    color: var(--text-muted);
    margin-bottom: 22px;
    min-height: 24px;
}

.otp-resend-btn {
    border: none;
    background: transparent;
    color: var(--primary);
    font-weight: 700;
    cursor: pointer;
    font-size: 0.82rem;
    text-decoration: underline;
    transition: var(--transition-fast);
}

.otp-resend-btn:hover {
    color: var(--accent);
}

.otp-privacy-notice {
    display: flex;
    gap: 10px;
    background-color: rgba(45, 54, 63, 0.03);
    padding: 12px 16px;
    border-radius: 12px;
    font-size: 0.72rem;
    line-height: 1.45;
    color: var(--text-muted);
    border: 1px solid rgba(45, 54, 63, 0.04);
}

.otp-privacy-notice svg {
    width: 14px;
    height: 14px;
    color: var(--text-muted);
    flex-shrink: 0;
    margin-top: 1px;
}

@keyframes otp-shake {
    10%, 90% { transform: translate3d(-1px, 0, 0); }
    20%, 80% { transform: translate3d(2px, 0, 0); }
    30%, 50%, 70% { transform: translate3d(-4px, 0, 0); }
    40%, 60% { transform: translate3d(4px, 0, 0); }
}

@media (max-width: 480px) {
    .otp-modal {
        padding: 25px 20px;
    }
    .otp-digit {
        width: 36px;
        height: 46px;
        font-size: 1.3rem;
        border-radius: 8px;
    }
    .otp-digits-container {
        gap: 6px;
    }
}

/* ==========================================================================
   ENTERPRISE MARKETING & REASSURANCE STYLES
   ========================================================================== */

/* ==========================================================================
   ENTERPRISE MARKETING, TRUSTPILOT & REASSURANCE STYLES
   ========================================================================== */

/* Trustpilot Header Top Bar */
.trustpilot-top-bar {
    background-color: #ffffff;
    border-bottom: 1px solid #e2e8f0;
    font-size: 0.82rem;
    padding: 6px 0;
    color: var(--primary);
    position: relative;
    z-index: 1002;
    height: 38px;
    box-sizing: border-box;
}

.trustpilot-top-bar .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 15px;
}

.trustpilot-brand {
    display: flex;
    align-items: center;
    gap: 10px;
    flex-wrap: wrap;
}

.trustpilot-star-box {
    background-color: #00b67a;
    color: #ffffff;
    padding: 4px 8px;
    border-radius: 4px;
    display: inline-flex;
    align-items: center;
    gap: 4px;
    font-size: 0.78rem;
    font-weight: 800;
}

.trustpilot-star-box svg {
    width: 14px;
    height: 14px;
    fill: currentColor;
}

.trustpilot-score {
    font-weight: 800;
    color: var(--primary);
}

.trustpilot-stars-green {
    color: #00b67a;
    letter-spacing: 2px;
    font-size: 1rem;
}

.trustpilot-count {
    color: var(--text-muted);
    font-size: 0.8rem;
}

.trustpilot-top-contact {
    display: flex;
    align-items: center;
    gap: 18px;
}

.trustpilot-top-contact a {
    color: var(--primary);
    font-weight: 700;
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 0.82rem;
}

.trustpilot-top-contact a:hover {
    color: var(--accent);
}

/* Certifications & Trust Strip */
.trust-strip {
    background-color: #ffffff;
    border-top: 1px solid #e2e8f0;
    border-bottom: 1px solid #e2e8f0;
    padding: 30px 0;
}

.trust-strip-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 20px;
    align-items: center;
}

.trust-strip-item {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 10px 15px;
    border-right: 1px solid #f1f5f9;
}

.trust-strip-item:last-child {
    border-right: none;
}

.trust-strip-icon {
    width: 44px;
    height: 44px;
    border-radius: 12px;
    background-color: rgba(45, 54, 63, 0.06);
    color: var(--primary);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.trust-strip-icon svg {
    width: 22px;
    height: 22px;
}

.trust-strip-title {
    font-size: 0.9rem;
    font-weight: 700;
    color: var(--primary);
    line-height: 1.2;
}

.trust-strip-desc {
    font-size: 0.78rem;
    color: var(--text-muted);
    margin-top: 2px;
}

/* Process Section */
.process-section {
    background-color: var(--bg-light);
    padding: 90px 0;
}

.process-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 25px;
    margin-top: 50px;
    position: relative;
}

.process-card {
    background: var(--light);
    border-radius: 20px;
    padding: 35px 25px;
    position: relative;
    border: 1px solid rgba(0, 0, 0, 0.04);
    box-shadow: var(--shadow-soft);
    display: flex;
    flex-direction: column;
    gap: 15px;
    transition: var(--transition-smooth);
}

.process-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-medium);
}

.process-step-num {
    width: 40px;
    height: 40px;
    background-color: var(--primary);
    color: var(--light);
    border-radius: 50%;
    font-weight: 800;
    font-size: 1.1rem;
    display: flex;
    align-items: center;
    justify-content: center;
}

.process-card-title {
    font-size: 1.2rem;
    font-weight: 700;
}

.process-card-desc {
    font-size: 0.9rem;
    color: var(--text-muted);
    line-height: 1.5;
}

/* Trustpilot Reviews Section */
.reviews-section {
    padding: 90px 0;
    background-color: var(--light);
}

.reviews-header-badges {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
    margin-bottom: 20px;
    flex-wrap: wrap;
}

.rating-badge-trustpilot {
    background: #f8fafc;
    border: 1px solid #e2e8f0;
    border-radius: 30px;
    padding: 10px 24px;
    display: inline-flex;
    align-items: center;
    gap: 12px;
    font-size: 0.95rem;
    font-weight: 700;
    box-shadow: var(--shadow-soft);
}

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

.review-card {
    background-color: var(--bg-light);
    border: 1px solid #e2e8f0;
    border-radius: 20px;
    padding: 28px;
    display: flex;
    flex-direction: column;
    gap: 15px;
    position: relative;
    transition: var(--transition-smooth);
}

.review-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-medium);
    border-color: #cbd5e1;
}

.review-top-stars {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.review-trust-stars {
    color: #00b67a;
    letter-spacing: 2px;
    font-size: 1.1rem;
}

.review-date {
    font-size: 0.78rem;
    color: var(--text-muted);
}

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

.review-avatar {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background-color: var(--primary);
    color: var(--light);
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 0.9rem;
}

.review-name {
    font-weight: 700;
    font-size: 0.95rem;
    color: var(--primary);
}

.review-location {
    font-size: 0.8rem;
    color: var(--text-muted);
}

.review-title {
    font-weight: 700;
    font-size: 1rem;
    color: var(--primary);
}

.review-text {
    font-size: 0.9rem;
    color: var(--text-dark);
    line-height: 1.55;
}

.review-verified {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    color: #00b67a;
    font-size: 0.78rem;
    font-weight: 700;
    background: rgba(0, 182, 122, 0.08);
    padding: 4px 10px;
    border-radius: 20px;
    width: fit-content;
}

/* FAQ Accordion Section */
.faq-section {
    padding: 90px 0;
    background-color: var(--bg-light);
}

.faq-container {
    max-width: 800px;
    margin: 40px auto 0 auto;
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.faq-item {
    background: var(--light);
    border-radius: 16px;
    border: 1px solid #e2e8f0;
    overflow: hidden;
    transition: var(--transition-fast);
}

.faq-question {
    width: 100%;
    padding: 22px 25px;
    background: none;
    border: none;
    text-align: left;
    font-size: 1.05rem;
    font-weight: 700;
    color: var(--primary);
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
}

.faq-question svg {
    width: 20px;
    height: 20px;
    transition: transform 0.3s ease;
}

.faq-item.active .faq-question svg {
    transform: rotate(180deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.35s ease, padding 0.35s ease;
    padding: 0 25px;
    color: var(--text-muted);
    font-size: 0.95rem;
    line-height: 1.6;
}

.faq-item.active .faq-answer {
    max-height: 300px;
    padding: 0 25px 22px 25px;
}

/* ==========================================================================
   ORGANIZED FLOATING CONTACT LAUNCHER WIDGET
   ========================================================================== */
.floating-widget-container {
    position: fixed;
    bottom: 25px;
    left: 25px;
    z-index: 9999;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 12px;
}

.floating-widget-menu {
    display: flex;
    flex-direction: column;
    gap: 10px;
    align-items: flex-start;
    opacity: 0;
    visibility: hidden;
    transform: translateY(15px) scale(0.95);
    transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
    pointer-events: none;
}

.floating-widget-container.active .floating-widget-menu,
.floating-widget-container:hover .floating-widget-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0) scale(1);
    pointer-events: auto;
}

.floating-menu-item {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    background: #ffffff;
    color: var(--primary);
    padding: 10px 20px;
    border-radius: 30px;
    font-size: 0.88rem;
    font-weight: 700;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.12);
    border: 1px solid rgba(0, 0, 0, 0.06);
    transition: all 0.2s ease;
    text-decoration: none;
    cursor: pointer;
}

.floating-menu-item:hover {
    transform: translateX(5px);
    box-shadow: 0 14px 35px rgba(0, 0, 0, 0.18);
    background-color: var(--bg-light);
}

.floating-menu-item-icon {
    width: 34px;
    height: 34px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #ffffff;
    flex-shrink: 0;
}

.floating-menu-item-icon.whatsapp { background-color: #25d366; }
.floating-menu-item-icon.phone { background-color: var(--primary); }
.floating-menu-item-icon.catalogue { background-color: var(--accent); }

.floating-launcher-btn {
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
    color: #ffffff;
    padding: 14px 24px;
    border-radius: 40px;
    display: flex;
    align-items: center;
    gap: 12px;
    font-weight: 700;
    font-size: 0.92rem;
    box-shadow: 0 12px 35px rgba(45, 54, 63, 0.35);
    border: 1px solid rgba(255, 255, 255, 0.18);
    cursor: pointer;
    transition: all 0.3s ease;
}

.floating-launcher-btn:hover {
    transform: scale(1.04);
    box-shadow: 0 15px 40px rgba(45, 54, 63, 0.45);
}

.floating-launcher-badge {
    width: 10px;
    height: 10px;
    background-color: #10b981;
    border-radius: 50%;
    box-shadow: 0 0 0 3px rgba(16, 185, 129, 0.3);
    animation: pulse-online 2s infinite;
}

@keyframes pulse-online {
    0% { box-shadow: 0 0 0 0 rgba(16, 185, 129, 0.6); }
    70% { box-shadow: 0 0 0 8px rgba(16, 185, 129, 0); }
    100% { box-shadow: 0 0 0 0 rgba(16, 185, 129, 0); }
}

/* Modals */
.marketing-modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(18, 20, 23, 0.7);
    backdrop-filter: blur(8px);
    z-index: 10000;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s ease;
}

.marketing-modal-overlay.active {
    opacity: 1;
    pointer-events: auto;
}

.marketing-modal-content {
    background: var(--light);
    border-radius: 24px;
    max-width: 500px;
    width: 100%;
    padding: 35px;
    position: relative;
    box-shadow: var(--shadow-premium);
    transform: translateY(20px);
    transition: transform 0.3s ease;
}

.marketing-modal-overlay.active .marketing-modal-content {
    transform: translateY(0);
}

.marketing-modal-close {
    position: absolute;
    top: 20px;
    right: 20px;
    background: none;
    border: none;
    font-size: 1.5rem;
    cursor: pointer;
    color: var(--text-muted);
}

.marketing-modal-title {
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--primary);
    margin-bottom: 10px;
}

.marketing-modal-desc {
    font-size: 0.9rem;
    color: var(--text-muted);
    margin-bottom: 25px;
}

.marketing-form-group {
    margin-bottom: 15px;
}

.marketing-form-group label {
    display: block;
    font-size: 0.85rem;
    font-weight: 600;
    margin-bottom: 6px;
    color: var(--primary);
}

.marketing-form-group input,
.marketing-form-group select {
    width: 100%;
    padding: 12px 16px;
    border-radius: 10px;
    border: 1px solid #cbd5e1;
    font-size: 0.95rem;
}

.marketing-form-group input:focus,
.marketing-form-group select:focus {
    outline: none;
    border-color: var(--primary);
    box-shadow: 0 0 0 3px rgba(45, 54, 63, 0.1);
}

@media (max-width: 1024px) {
    .trust-strip-grid { grid-template-columns: repeat(3, 1fr); gap: 15px; }
    .process-grid { grid-template-columns: repeat(2, 1fr); }
    .reviews-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 640px) {
    .top-notice-items { display: none; }
    .top-notice-bar .container { justify-content: center; }
    .trust-strip-grid { grid-template-columns: 1fr; }
    .process-grid { grid-template-columns: 1fr; }
    .reviews-grid { grid-template-columns: 1fr; }
    .trust-strip-item { border-right: none; border-bottom: 1px solid #f1f5f9; }
}

/* ==========================================================================
   TRUSTPILOT CUSTOMER REVIEWS SECTION (Screenshot Replica Style)
   ========================================================================== */
.tp-reviews-section {
    padding: 70px 0;
    background-color: #ffffff;
    border-top: 1px solid #f1f5f9;
    border-bottom: 1px solid #f1f5f9;
}

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

.tp-reviews-title {
    font-size: 2.2rem;
    font-weight: 800;
    color: #1e293b;
    margin-bottom: 10px;
    letter-spacing: -0.02em;
}

.tp-reviews-subtitle {
    font-size: 1.05rem;
    color: #475569;
    font-weight: 400;
}

.tp-reviews-slider-wrapper {
    width: 100%;
    position: relative;
}

.tp-reviews-slider {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}

@media (max-width: 1100px) {
    .tp-reviews-slider {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 640px) {
    .tp-reviews-slider {
        grid-template-columns: 1fr;
    }
}

.tp-review-card {
    background: #ffffff;
    border: 1px solid #e2e8f0;
    border-radius: 12px;
    padding: 24px;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.03);
    transition: transform 0.25s ease, box-shadow 0.25s ease;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.tp-review-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 28px rgba(0, 0, 0, 0.08);
}

.tp-stars-row {
    display: flex;
    gap: 3px;
    margin-bottom: 16px;
}

.tp-star-box {
    background-color: #00b67a;
    color: #ffffff;
    width: 22px;
    height: 22px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 12px;
    font-weight: bold;
    border-radius: 2px;
}

.tp-card-title {
    font-size: 1.05rem;
    font-weight: 700;
    color: #1e293b;
    margin: 0 0 10px 0;
    line-height: 1.35;
}

.tp-card-body {
    font-size: 0.92rem;
    color: #64748b;
    margin: 0 0 20px 0;
    line-height: 1.55;
}

.tp-card-footer {
    font-size: 0.85rem;
    color: #94a3b8;
    font-weight: 500;
    display: flex;
    align-items: center;
    gap: 6px;
    border-top: 1px solid #f1f5f9;
    padding-top: 14px;
}

.tp-author {
    color: #334155;
    font-weight: 600;
}

