/* ===========================================
   LBQVC HOMEPAGE — Mars 2026
   =========================================== */
.hp { font-family: 'Montserrat', system-ui, sans-serif; color: #374151; }
.hp *, .hp *::before, .hp *::after { box-sizing: border-box; }
.hp img { max-width: 100%; height: auto; }
.hp a { text-decoration: none; }

/* ===========================================
   HERO — Full-bleed, polished
   =========================================== */
.hp-hero {
    position: relative;
    min-height: 460px;
    display: flex;
    align-items: stretch;
    overflow: hidden;
    background: #fff;
}

/* Image — right 55% */
.hp-hero__bg {
    position: absolute;
    right: 0;
    top: 0;
    bottom: 0;
    width: 58%;
    z-index: 1;
}

.hp-hero__bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

/* Curved white mask on the left edge of the image */
.hp-hero__bg::before {
    content: '';
    position: absolute;
    left: -1px;
    top: -5%;
    bottom: -5%;
    width: 120px;
    background: #fff;
    border-radius: 0 60% 60% 0 / 0 50% 50% 0;
    z-index: 3;
}

/* Subtle gradient fade for text readability */
.hp-hero__bg::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg, rgba(255,255,255,0.35) 0%, transparent 30%),
                linear-gradient(180deg, transparent 70%, rgba(255,255,255,0.4) 100%);
    z-index: 2;
}

/* Soft warm glow behind content */
.hp-hero__glow {
    position: absolute;
    border-radius: 50%;
    filter: blur(100px);
    z-index: 0;
    pointer-events: none;
}

.hp-hero__glow--orange {
    width: 400px;
    height: 400px;
    background: #fed7aa;
    bottom: -120px;
    left: 15%;
    opacity: 0.35;
}

.hp-hero__glow--blue { display: none; }

/* -- Countdown — floating right on image -- */
.hp-hero__cd {
    position: absolute;
    right: 5%;
    top: 50%;
    transform: translateY(-50%);
    z-index: 12;
    background: rgba(255,255,255,0.95);
    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);
    border-radius: 14px;
    padding: 18px 20px;
    text-align: center;
    box-shadow: 0 8px 32px rgba(0,0,0,0.12);
    animation: fadeUp 0.6s ease 0.3s both;
}
.hp-hero__cd-label {
    font-size: 0.6rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: #e8590c;
    margin-bottom: 12px;
}
.hp-hero__cd-blocks {
    display: flex;
    align-items: center;
    gap: 6px;
}
.hp-hero__cd-block {
    display: flex;
    flex-direction: column;
    align-items: center;
    min-width: 46px;
}
.hp-hero__cd-num {
    font-size: 1.8rem;
    font-weight: 900;
    color: #111827;
    line-height: 1;
    font-variant-numeric: tabular-nums;
}
.hp-hero__cd-unit {
    font-size: 0.5rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.8px;
    color: #9ca3af;
    margin-top: 4px;
}
.hp-hero__cd-sep {
    font-size: 1.3rem;
    font-weight: 700;
    color: #e8590c;
    margin-bottom: 14px;
}

/* Content wrapper */
.hp-hero__inner {
    position: relative;
    z-index: 3;
    max-width: 1400px;
    margin: 0 auto;
    padding: 80px 32px 72px;
    width: 100%;
    display: flex;
    align-items: center;
    gap: 48px;
}

.hp-hero__content {
    max-width: 520px;
    flex-shrink: 0;
}

/* -- Hero trust strip (bottom bar) -- */
.hp-hero__trust {
    position: absolute;
    bottom: 0; left: 0; right: 0;
    z-index: 10;
    background: linear-gradient(180deg, transparent, rgba(255,255,255,0.92) 30%);
    padding: 32px 0 14px;
}
.hp-hero__trust-row {
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 24px;
    display: flex;
    justify-content: center;
    gap: 32px;
    flex-wrap: wrap;
}
.hp-hero__trust-item {
    display: flex;
    align-items: center;
    gap: 10px;
    white-space: nowrap;
}
.hp-hero__trust-icon {
    width: 36px; height: 36px;
    border-radius: 10px;
    display: flex; align-items: center; justify-content: center;
    font-size: 1rem;
    flex-shrink: 0;
}
.hp-hero__trust-icon--fire { background: #fef2f2; color: #dc2626; }
.hp-hero__trust-icon--euro { background: #f0fdf4; color: #16a34a; }
.hp-hero__trust-icon--truck { background: #eff6ff; color: #2563eb; }
.hp-hero__trust-icon--leaf { background: #fefce8; color: #ca8a04; }
.hp-hero__trust-label {
    font-size: 0.82rem;
    font-weight: 700;
    color: #1e293b;
    line-height: 1.2;
}
.hp-hero__trust-label small {
    display: block;
    font-weight: 500;
    font-size: 0.68rem;
    color: #64748b;
}

@keyframes fadeUp {
    from { opacity: 0; transform: translateY(18px); }
    to { opacity: 1; transform: translateY(0); }
}

@keyframes shimmer {
    0% { background-position: -200% center; }
    100% { background-position: 200% center; }
}

.hp-hero__badge {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    background: linear-gradient(135deg, #e8590c, #f97316);
    color: #fff;
    padding: 7px 16px;
    border-radius: 50px;
    font-size: 0.72rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 22px;
    animation: fadeUp 0.5s ease both;
    box-shadow: 0 2px 12px rgba(232,89,12,0.2);
}

.hp-hero__badge svg { width: 13px; height: 13px; }

.hp-hero__title {
    font-size: clamp(2.4rem, 5.5vw, 3.6rem);
    font-weight: 900;
    color: #111827;
    line-height: 1.06;
    margin: 0 0 22px;
    letter-spacing: -0.03em;
    animation: fadeUp 0.5s ease 0.08s both;
}

.hp-hero__title em {
    font-style: normal;
    background: linear-gradient(90deg, #e8590c, #f97316, #e8590c);
    background-size: 200% auto;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: shimmer 4s linear infinite;
}

.hp-hero__desc {
    font-size: 1.05rem;
    color: #4b5563;
    line-height: 1.7;
    margin: 0 0 28px;
    max-width: 480px;
    animation: fadeUp 0.5s ease 0.16s both;
}

.hp-hero__desc strong { color: #111827; font-weight: 700; }

/* Price bar */
.hp-hero__price-bar {
    display: inline-flex;
    align-items: center;
    gap: 18px;
    background: #fff;
    border: 2px solid #e5e7eb;
    border-radius: 16px;
    padding: 18px 28px;
    margin-bottom: 28px;
    animation: fadeUp 0.5s ease 0.24s both;
    box-shadow: 0 4px 20px rgba(0,0,0,0.06);
}

.hp-hero__price-main { display: flex; align-items: baseline; gap: 4px; }

.hp-hero__price-val {
    font-size: 2.8rem;
    font-weight: 900;
    color: #e8590c;
    line-height: 1;
}

.hp-hero__price-unit {
    font-size: 0.92rem;
    font-weight: 700;
    color: #6b7280;
}

.hp-hero__price-divider {
    width: 1px;
    height: 42px;
    background: #e5e7eb;
}

.hp-hero__price-info { display: flex; flex-direction: column; gap: 3px; }

.hp-hero__price-detail {
    font-size: 0.78rem;
    color: #6b7280;
    font-weight: 600;
}

.hp-hero__price-old {
    font-size: 0.78rem;
    color: #ef4444;
    font-weight: 700;
}

.hp-hero__price-save {
    display: inline-flex;
    align-items: center;
    gap: 4px;
    background: #16a34a;
    color: #fff;
    padding: 4px 12px;
    border-radius: 6px;
    font-size: 0.68rem;
    font-weight: 800;
    margin-top: 2px;
}

/* CTA */
.hp-hero__cta {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
    align-items: center;
    margin-bottom: 22px;
    animation: fadeUp 0.5s ease 0.32s both;
}

.hp-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 15px 32px;
    border-radius: 10px;
    font-size: 0.95rem;
    font-weight: 700;
    text-decoration: none;
    transition: all 0.2s;
    cursor: pointer;
    border: none;
}

.hp-btn svg { flex-shrink: 0; }

.hp-btn--primary {
    background: linear-gradient(135deg, #e8590c, #f97316);
    color: #fff;
    box-shadow: 0 4px 16px rgba(232,89,12,0.35);
}

.hp-btn--primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 24px rgba(232,89,12,0.5);
    color: #fff;
}

.hp-btn--glass {
    background: #fff;
    color: #374151;
    border: 2px solid #e5e7eb;
}

.hp-btn--glass:hover {
    border-color: #e8590c;
    color: #e8590c;
    background: #fff7ed;
}

.hp-btn--outline {
    background: transparent;
    color: #1e293b;
    border: 2px solid #e5e7eb;
}

.hp-btn--outline:hover {
    border-color: #e8590c;
    color: #e8590c;
    background: #fff7ed;
}

.hp-hero__social {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.82rem;
    color: #6b7280;
    animation: fadeUp 0.5s ease 0.4s both;
}

.hp-hero__stars { color: #f59e0b; letter-spacing: -1px; font-size: 0.95rem; }
.hp-hero__social strong { color: #111827; }

/* ===========================================
   TARIFS — Premium tabbed pricing
   =========================================== */
.hp-tarifs {
    padding: 40px 0 50px;
    background: linear-gradient(180deg, #ffffff 0%, #f8fafc 100%);
    position: relative;
}

.hp-tarifs__wrap {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 24px;
}

.hp-tarifs__body {
    display: flex !important;
    gap: 20px;
    align-items: flex-start;
}

.hp-tarifs__tables {
    flex: 1;
    min-width: 0;
    overflow: hidden;
}

.hp-tarifs__body > .hp-sim {
    flex: 0 0 300px;
    width: 300px;
}

.hp-tarifs__header {
    text-align: center;
    margin-bottom: 28px;
}

.hp-tarifs__badge {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: linear-gradient(135deg, #e8590c, #f97316);
    color: #fff;
    padding: 5px 16px;
    border-radius: 50px;
    font-size: 0.62rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 1.2px;
    margin-bottom: 12px;
    box-shadow: 0 2px 10px rgba(232,89,12,0.2);
}

.hp-tarifs__header h2 {
    font-size: clamp(1.8rem, 4vw, 2.6rem);
    font-weight: 900;
    color: #111827;
    margin: 0 0 10px;
    letter-spacing: -0.04em;
    line-height: 1.1;
}

.hp-tarifs__header h2 span { color: #e8590c; }

.hp-tarifs__header p {
    font-size: 0.9rem;
    color: #6b7280;
    margin: 0 0 20px;
    line-height: 1.5;
}

.hp-tarifs__tabs {
    display: inline-flex;
    gap: 4px;
    background: #f1f5f9;
    border-radius: 14px;
    padding: 4px;
}

.hp-tarifs__tab {
    padding: 12px 32px;
    border-radius: 11px;
    font-size: 0.85rem;
    font-weight: 700;
    color: #64748b;
    background: transparent;
    border: none;
    cursor: pointer;
    transition: all 0.25s cubic-bezier(0.4, 0, 0.2, 1);
    white-space: nowrap;
    position: relative;
}

.hp-tarifs__tab:hover { color: #334155; background: rgba(255,255,255,0.5); }

.hp-tarifs__tab.active {
    background: #fff;
    color: #111827;
    box-shadow: 0 1px 4px rgba(0,0,0,0.08), 0 4px 12px rgba(0,0,0,0.04);
}

.hp-tarifs__tab.active::after {
    content: '';
    position: absolute;
    bottom: -1px;
    left: 50%;
    transform: translateX(-50%);
    width: 24px;
    height: 3px;
    border-radius: 3px;
    background: #e8590c;
}

.hp-tarifs__tab.active[data-tab="vrac"]::after {
    background: #16a34a;
}

.hp-tarifs__tab.active[data-tab="misec"]::after {
    background: #b45309;
}

.hp-tarifs__panel {
    display: none;
    animation: tarifFadeIn 0.3s ease;
}

.hp-tarifs__panel.active { display: block; }

@keyframes tarifFadeIn {
    from { opacity: 0; transform: translateY(6px); }
    to { opacity: 1; transform: translateY(0); }
}

.hp-tarifs__card {
    background: #fff;
    border-radius: 18px;
    overflow: hidden;
    box-shadow: 0 1px 2px rgba(0,0,0,0.03), 0 4px 16px rgba(0,0,0,0.06), 0 12px 40px rgba(0,0,0,0.04);
    border: 1px solid rgba(0,0,0,0.06);
}

.hp-tarifs__card .tablepress-scroll-wrapper { overflow-x: auto; -webkit-overflow-scrolling: touch; }

.hp-tarifs__card .tablepress {
    --head-bg-color: #111827;
    --head-text-color: #fff;
    --odd-bg-color: #fff;
    --even-bg-color: #fafbfc;
    --hover-bg-color: #f1f5f9;
    --border-color: #f1f5f9;
    --text-color: #374151;
    width: 100%;
    border-collapse: separate;
    border-spacing: 0;
    border: none !important;
    margin: 0 !important;
}

.hp-tarifs__card .tablepress caption,
.hp-tarifs__card .tablepress-table-name { display: none !important; }

.hp-tarifs__card .tablepress thead th {
    padding: 16px 14px !important;
    font-size: 0.7rem !important;
    font-weight: 800 !important;
    color: #fff !important;
    text-transform: uppercase;
    letter-spacing: 0.8px;
    text-align: center !important;
    border: none !important;
    background: #111827 !important;
}

.hp-tarifs__card .tablepress thead th:first-child {
    text-align: left !important;
    padding-left: 28px !important;
    color: #e2e8f0 !important;
    font-size: 0.65rem !important;
}

.hp-tarifs__card .tablepress thead th:nth-child(2) {
    text-align: center !important;
    color: #fff !important;
    font-size: 0.72rem !important;
}

.hp-tarifs__panel--palette .hp-tarifs__card .tablepress thead th:last-child {
    background: #e8590c !important;
    color: #fff !important;
    position: relative;
    font-size: 0.72rem !important;
}

.hp-tarifs__panel--palette .hp-tarifs__card .tablepress thead th:last-child::after {
    content: 'MEILLEUR PRIX';
    position: absolute;
    top: -22px;
    left: 50%;
    transform: translateX(-50%);
    background: #e8590c;
    color: #fff;
    padding: 4px 14px;
    border-radius: 8px 8px 0 0;
    font-size: 0.5rem;
    font-weight: 800;
    letter-spacing: 1px;
    white-space: nowrap;
}

.hp-tarifs__panel--vrac .hp-tarifs__card .tablepress thead th:last-child {
    background: #16a34a !important;
    color: #fff !important;
    position: relative;
    font-size: 0.72rem !important;
}

.hp-tarifs__panel--vrac .hp-tarifs__card .tablepress thead th:last-child::after {
    content: 'MEILLEUR PRIX';
    position: absolute;
    top: -22px;
    left: 50%;
    transform: translateX(-50%);
    background: #16a34a;
    color: #fff;
    padding: 4px 14px;
    border-radius: 8px 8px 0 0;
    font-size: 0.5rem;
    font-weight: 800;
    letter-spacing: 1px;
    white-space: nowrap;
}

.hp-tarifs__panel--misec .hp-tarifs__card .tablepress thead th:last-child {
    background: #b45309 !important;
    color: #fff !important;
    position: relative;
    font-size: 0.72rem !important;
}

.hp-tarifs__panel--misec .hp-tarifs__card .tablepress thead th:last-child::after {
    content: 'MEILLEUR PRIX';
    position: absolute;
    top: -22px;
    left: 50%;
    transform: translateX(-50%);
    background: #b45309;
    color: #fff;
    padding: 4px 14px;
    border-radius: 8px 8px 0 0;
    font-size: 0.5rem;
    font-weight: 800;
    letter-spacing: 1px;
    white-space: nowrap;
}

.hp-tarifs__card .tablepress tbody td {
    padding: 18px 14px;
    text-align: center;
    font-size: 0.95rem;
    font-weight: 700;
    color: #374151;
    border: none;
    border-bottom: 1px solid #f1f5f9;
    background: #fff !important;
    transition: all 0.15s;
}

.hp-tarifs__card .tablepress tbody td:first-child {
    text-align: left;
    padding-left: 28px;
    font-size: 0.65rem;
    font-weight: 700;
    color: #94a3b8;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.hp-tarifs__card .tablepress tbody td:nth-child(2) {
    font-weight: 900;
    color: #0f172a;
    text-align: center;
    font-size: 0.95rem;
}

.hp-tarifs__card .tablepress tbody tr:last-child td { border-bottom: none; }
.hp-tarifs__card .tablepress tbody tr:hover td { background: #f8fafc !important; }

.hp-tarifs__panel--palette .hp-tarifs__card .tablepress tbody td:last-child {
    background: #fff7ed !important;
    color: #e8590c !important;
    font-weight: 900;
    font-size: 1rem;
}

.hp-tarifs__panel--palette .hp-tarifs__card .tablepress tbody tr:hover td:last-child { background: #ffedd5 !important; }

.hp-tarifs__panel--vrac .hp-tarifs__card .tablepress tbody td:last-child {
    background: #f0fdf4 !important;
    color: #16a34a !important;
    font-weight: 900;
    font-size: 1rem;
}

.hp-tarifs__panel--vrac .hp-tarifs__card .tablepress tbody tr:hover td:last-child { background: #dcfce7 !important; }

.hp-tarifs__panel--misec .hp-tarifs__card .tablepress tbody td:last-child {
    background: #fffbeb !important;
    color: #b45309 !important;
    font-weight: 900;
    font-size: 1rem;
}

.hp-tarifs__panel--misec .hp-tarifs__card .tablepress tbody tr:hover td:last-child { background: #fef3c7 !important; }

.hp-tarifs__card .tablepress tbody tr:nth-child(even) td {
    background: #fafbfc !important;
}

.hp-tarifs__card .tablepress tbody tr:nth-child(even):hover td { background: #f1f5f9 !important; }
.hp-tarifs__card .tablepress tbody tr:nth-child(even) td:last-child { background: inherit !important; }

.hp-tarifs__panel--palette .hp-tarifs__card .tablepress tbody tr:nth-child(even) td:last-child { background: #fff1e6 !important; }
.hp-tarifs__panel--vrac .hp-tarifs__card .tablepress tbody tr:nth-child(even) td:last-child { background: #ecfdf5 !important; }
.hp-tarifs__panel--misec .hp-tarifs__card .tablepress tbody tr:nth-child(even) td:last-child { background: #fef9e7 !important; }

.hp-tarifs__card .tablepress-table-description,
.hp-tarifs__card .dataTables_wrapper .dataTables_filter,
.hp-tarifs__card .dataTables_wrapper .dataTables_info,
.hp-tarifs__card .dataTables_wrapper .dataTables_paginate,
.hp-tarifs__card .dataTables_wrapper .dataTables_length { display: none !important; }

.hp-tarifs__footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    padding: 18px 28px;
    background: linear-gradient(180deg, #f8fafc, #f1f5f9);
    border-top: 1px solid #e2e8f0;
    flex-wrap: wrap;
}

.hp-tarifs__footer-info {
    display: flex;
    align-items: center;
    gap: 14px;
    flex-wrap: wrap;
    font-size: 0.8rem;
    color: #64748b;
    font-weight: 600;
}

.hp-tarifs__footer-info s {
    color: #ef4444;
    font-weight: 700;
}

.hp-tarifs__toggle-wrap {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    margin-bottom: 8px;
}

.hp-tarifs__toggle-label {
    font-size: 0.82rem;
    font-weight: 700;
    color: #64748b;
    cursor: pointer;
    transition: color 0.2s;
}

.hp-tarifs__toggle-label.active { color: #111827; }

.hp-tarifs__toggle {
    position: relative;
    width: 48px;
    height: 26px;
    background: #e8590c;
    border-radius: 13px;
    cursor: pointer;
    transition: background 0.3s;
    border: none;
    padding: 0;
}

.hp-tarifs__toggle.off { background: #94a3b8; }

.hp-tarifs__toggle::after {
    content: '';
    position: absolute;
    top: 3px;
    left: 3px;
    width: 20px;
    height: 20px;
    background: #fff;
    border-radius: 50%;
    transition: transform 0.3s;
    box-shadow: 0 1px 3px rgba(0,0,0,0.15);
}

.hp-tarifs__toggle.off::after {
    transform: translateX(22px);
}

.hp-tarifs__savings {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 10px 20px;
    background: linear-gradient(135deg, #ecfdf5, #d1fae5);
    font-size: 0.82rem;
    font-weight: 800;
    color: #065f46;
    border-bottom: 1px solid #a7f3d0;
}

.hp-tarifs__savings svg { flex-shrink: 0; }

.hp-tarifs__panel .hp-tarifs__card--hors {
    display: none;
    position: relative;
}

.hp-tarifs__panel .hp-tarifs__card--hors .tablepress tbody td {
    color: #9ca3af !important;
}

.hp-tarifs__panel .hp-tarifs__card--hors .tablepress tbody td:last-child {
    background: #f1f5f9 !important;
    color: #64748b !important;
}

.hp-tarifs__panel .hp-tarifs__card--hors .tablepress thead th {
    background: #64748b !important;
}

.hp-tarifs__panel .hp-tarifs__card--hors .tablepress thead th:last-child {
    background: #94a3b8 !important;
}

.hp-tarifs__panel .hp-tarifs__card--hors .tablepress thead th:last-child::after {
    display: none;
}

.hp-tarifs__card--hors .hp-tarifs__savings {
    background: linear-gradient(135deg, #fef2f2, #fecaca);
    color: #991b1b;
    border-bottom-color: #fca5a5;
}

.hp-tarifs__perks {
    display: flex;
    justify-content: center;
    gap: 24px;
    margin-top: 18px;
    flex-wrap: wrap;
}

.hp-tarifs__perk {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.84rem;
    color: #334155;
    font-weight: 700;
}

.hp-tarifs__perk-check {
    width: 22px;
    height: 22px;
    background: linear-gradient(135deg, #dcfce7, #bbf7d0);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

/* ===========================================
   PRICE SIMULATOR — Compact sidebar
   =========================================== */
.hp-sim {
    background: #fff;
    border-radius: 16px;
    border: 2px solid #e5e7eb;
    padding: 18px 18px 16px;
    position: sticky;
    top: 90px;
    box-shadow: 0 4px 24px rgba(0,0,0,0.06);
}

.hp-sim__title {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 14px;
}

.hp-sim__title-icon {
    width: 30px;
    height: 30px;
    border-radius: 8px;
    background: linear-gradient(135deg, #e8590c, #f97316);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.hp-sim__title-icon svg { width: 15px; height: 15px; }

.hp-sim__title h3 {
    font-size: 0.88rem;
    font-weight: 800;
    color: #111827;
    margin: 0;
    line-height: 1.15;
}

.hp-sim__title h3 small {
    display: block;
    font-size: 0.64rem;
    font-weight: 500;
    color: #6b7280;
    margin-top: 1px;
}

.hp-sim__field { margin-bottom: 12px; }

.hp-sim__label {
    font-size: 0.62rem;
    font-weight: 700;
    color: #374151;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 5px;
    display: block;
}

.hp-sim__pills { display: flex; gap: 5px; }

.hp-sim__pill {
    flex: 1;
    padding: 7px 0;
    border-radius: 8px;
    font-size: 0.76rem;
    font-weight: 700;
    color: #6b7280;
    background: #f9fafb;
    border: 1.5px solid #e5e7eb;
    cursor: pointer;
    transition: all 0.2s;
    text-align: center;
}

.hp-sim__pill:hover { border-color: #e8590c; color: #e8590c; background: #fff7ed; }

.hp-sim__pill.active {
    background: #fff7ed;
    color: #e8590c;
    border-color: #e8590c;
    box-shadow: 0 0 0 2px rgba(232,89,12,0.1);
}

.hp-sim__qty-row { display: flex; align-items: center; }

.hp-sim__qty-btns {
    display: flex;
    align-items: center;
    background: #f9fafb;
    border-radius: 8px;
    border: 1.5px solid #e5e7eb;
    overflow: hidden;
    flex: 1;
}

.hp-sim__qty-btn {
    width: 36px;
    height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: none;
    border: none;
    cursor: pointer;
    font-size: 1.1rem;
    font-weight: 700;
    color: #374151;
    transition: all 0.15s;
    flex-shrink: 0;
}

.hp-sim__qty-btn:hover { background: #e8590c; color: #fff; }
.hp-sim__qty-btn:active { transform: scale(0.92); }

.hp-sim__qty-val {
    flex: 1;
    text-align: center;
    font-size: 0.95rem;
    font-weight: 900;
    color: #111827;
    user-select: none;
}

.hp-sim__qty-val small { font-size: 0.65rem; font-weight: 600; color: #6b7280; }

.hp-sim__slider-track { margin-top: 6px; }

.hp-sim__slider {
    -webkit-appearance: none;
    appearance: none;
    width: 100%;
    height: 4px;
    border-radius: 4px;
    background: linear-gradient(to right, #e8590c var(--val, 83%), #f1f5f9 var(--val, 83%));
    outline: none;
    cursor: pointer;
}

.hp-sim__slider::-webkit-slider-thumb {
    -webkit-appearance: none;
    width: 18px;
    height: 18px;
    border-radius: 50%;
    background: #fff;
    box-shadow: 0 1px 6px rgba(0,0,0,0.15), 0 0 0 2px rgba(232,89,12,0.2);
    cursor: grab;
    border: 2.5px solid #e8590c;
}

.hp-sim__slider::-moz-range-thumb {
    width: 18px;
    height: 18px;
    border-radius: 50%;
    background: #fff;
    box-shadow: 0 1px 6px rgba(0,0,0,0.15), 0 0 0 2px rgba(232,89,12,0.2);
    cursor: grab;
    border: 2.5px solid #e8590c;
}

.hp-sim__divider { height: 1px; background: #e5e7eb; margin: 12px 0; }

.hp-sim__price { text-align: center; margin-bottom: 10px; }

.hp-sim__price-label {
    font-size: 0.6rem;
    font-weight: 600;
    color: #6b7280;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 2px;
}

.hp-sim__price-big {
    font-size: 1.9rem;
    font-weight: 900;
    color: #111827;
    line-height: 1;
    letter-spacing: -0.03em;
}

.hp-sim__price-big small { font-size: 0.75rem; font-weight: 700; color: #6b7280; vertical-align: super; }

.hp-sim__price-detail { font-size: 0.72rem; color: #6b7280; margin-top: 2px; }
.hp-sim__price-detail strong { color: #111827; font-weight: 800; }

.hp-sim__savings {
    display: flex;
    align-items: center;
    gap: 8px;
    background: linear-gradient(135deg, #dcfce7, #f0fdf4);
    border: 1px solid #86efac;
    border-radius: 8px;
    padding: 8px 10px;
    margin-bottom: 10px;
}

.hp-sim__savings-icon {
    width: 22px;
    height: 22px;
    border-radius: 50%;
    background: #16a34a;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.hp-sim__savings-icon svg { width: 11px; height: 11px; }

.hp-sim__savings-text { font-size: 0.68rem; color: #166534; font-weight: 600; line-height: 1.25; }
.hp-sim__savings-text strong { font-weight: 800; color: #15803d; }

.hp-sim__cta {
    display: block;
    width: 100%;
    text-align: center;
    padding: 11px 16px;
    background: linear-gradient(135deg, #e8590c, #f97316);
    color: #fff;
    font-size: 0.8rem;
    font-weight: 800;
    border-radius: 10px;
    text-decoration: none;
    transition: all 0.2s;
    box-shadow: 0 3px 12px rgba(232,89,12,0.25);
}

.hp-sim__cta:hover { transform: translateY(-1px); box-shadow: 0 5px 18px rgba(232,89,12,0.35); color: #fff; }
.hp-sim__cta:active { transform: translateY(0); }
.hp-sim__cta small { display: block; font-size: 0.62rem; font-weight: 600; opacity: 0.85; margin-top: 1px; }

/* ===========================================
   SECTION HEADERS
   =========================================== */
.hp-sh { text-align: center; margin-bottom: 48px; }

.hp-sh__tag {
    display: inline-block;
    background: #fff7ed;
    color: #e8590c;
    padding: 6px 14px;
    border-radius: 6px;
    font-size: 0.7rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 1.2px;
    margin-bottom: 12px;
}

.hp-sh__title {
    font-size: clamp(1.6rem, 3.2vw, 2.2rem);
    font-weight: 800;
    color: #111827;
    margin: 0 0 12px;
    line-height: 1.2;
    letter-spacing: -0.02em;
}

.hp-sh__title span { color: #e8590c; }

.hp-sh__desc {
    font-size: 0.95rem;
    color: #6b7280;
    max-width: 540px;
    margin: 0 auto;
    line-height: 1.7;
}

/* ===========================================
   PRODUCT SECTIONS + VIDEO + CTA
   =========================================== */
.hp-section { padding: 65px 0; }
.hp-section--white { background: #fff; }
.hp-section--gray { background: #f9fafb; }

.hp-section .container { max-width: 1340px; margin: 0 auto; padding: 0 20px; }

.hp-section .section-header { text-align: center; margin-bottom: 36px; }
.hp-section .section-header h2 { font-size: clamp(1.3rem, 2.5vw, 1.8rem) !important; font-weight: 800 !important; color: #111827 !important; margin-bottom: 8px !important; letter-spacing: -0.02em; }
.hp-section .section-header .sub-title, .hp-section .section-header p { font-size: 0.92rem !important; color: #6b7280 !important; max-width: 540px; margin: 0 auto !important; line-height: 1.7; }

.hp-prod-layout { display: grid; grid-template-columns: 5fr 7fr; gap: 28px; align-items: center; }
.hp-prod-layout--reverse { grid-template-columns: 7fr 5fr; }

.hp-vid {
    position: relative;
    border-radius: 14px;
    overflow: hidden;
    aspect-ratio: 4/3;
    cursor: pointer;
    border: 1px solid #e5e7eb;
    transition: transform 0.2s, box-shadow 0.2s;
}
.hp-vid:hover { transform: translateY(-3px); box-shadow: 0 8px 24px rgba(0,0,0,0.08); }
.hp-vid .video-wrap { width: 100%; height: 100%; background-size: cover; background-position: center; min-height: 250px; }

.hp-vid__play {
    position: absolute; top: 50%; left: 50%; transform: translate(-50%, -50%);
    width: 60px; height: 60px; background: #fff; border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    box-shadow: 0 4px 16px rgba(0,0,0,0.12); transition: all 0.2s; z-index: 2;
}
.hp-vid__play svg { fill: #e8590c; }
.hp-vid:hover .hp-vid__play { transform: translate(-50%, -50%) scale(1.08); box-shadow: 0 6px 24px rgba(232,89,12,0.2); }

.hp-cta { padding: 50px 0; background: #111827; text-align: center; }
.hp-cta__title { font-size: clamp(1.3rem, 2.8vw, 1.8rem); font-weight: 800; color: #fff; margin: 0 0 8px; }
.hp-cta__desc { font-size: 0.95rem; color: rgba(255,255,255,0.6); margin: 0 0 22px; }

.hp-reviews { padding: 65px 0; background: #f9fafb; }

.hp-reviews__top { display: flex; align-items: center; justify-content: center; gap: 12px; margin-bottom: 36px; }

.hp-reviews__badge { display: flex; align-items: center; gap: 10px; background: #fff; border: 1px solid #e5e7eb; border-radius: 12px; padding: 12px 20px; }
.hp-reviews__badge img { width: 48px; height: 48px; border-radius: 50%; object-fit: cover; }
.hp-reviews__badge-info { display: flex; flex-direction: column; }
.hp-reviews__badge-stars { color: #f59e0b; font-size: 1rem; letter-spacing: 1px; }
.hp-reviews__badge-text { font-size: 0.85rem; font-weight: 700; color: #111827; }
.hp-reviews__badge-count { font-size: 0.72rem; color: #6b7280; font-weight: 600; }

.hp-certs { padding: 55px 0; background: #fff; }
.hp-certs .item_certif { padding: 12px; display: flex; align-items: center; justify-content: center; }
.hp-certs .item_certif img { height: 65px; width: auto; object-fit: contain; filter: grayscale(40%); opacity: 0.75; transition: all 0.2s; }
.hp-certs .item_certif img:hover { filter: grayscale(0%); opacity: 1; transform: scale(1.05); }

.hp-seo { padding: 45px 0; background: #f9fafb; }
.hp-seo .container { max-width: 780px; }
.hp-seo h2, .hp-seo h3 { color: #111827; font-weight: 800; }
.hp-seo p { color: #374151; line-height: 1.8; font-size: 0.92rem; }

.hp-faq { padding: 65px 0; background: #fff; }
.hp-faq .accordion-item { background: #f9fafb !important; border: 1px solid #e5e7eb !important; border-radius: 8px !important; margin-bottom: 8px !important; overflow: hidden; }
.hp-faq .accordion-button { background: #f9fafb !important; color: #111827 !important; font-weight: 700 !important; font-size: 0.9rem !important; padding: 15px 18px !important; border-radius: 8px !important; box-shadow: none !important; }
.hp-faq .accordion-button:not(.collapsed) { background: #fff7ed !important; color: #e8590c !important; }
.hp-faq .accordion-body { padding: 0 18px 16px !important; color: #374151; line-height: 1.75; font-size: 0.88rem; }

.hp .modal-content { border-radius: 14px; overflow: hidden; border: none; box-shadow: 0 24px 80px rgba(0,0,0,0.25); }

/* ===========================================
   RESPONSIVE
   =========================================== */
@media (max-width: 1100px) {
    .hp-prod-layout, .hp-prod-layout--reverse { grid-template-columns: 1fr; }
}

@media (max-width: 900px) {
    .hp-tarifs__body { gap: 14px; }
    .hp-tarifs__body > .hp-sim { flex: 0 0 260px; width: 260px; }
    .hp-sim { position: static; }
    .hp-hero { min-height: 440px; }
    .hp-hero__bg { width: 48%; }
    .hp-hero__bg::before { width: 90px; }
    .hp-hero__inner { padding: 70px 24px 60px; gap: 32px; }
    .hp-hero__content { max-width: 460px; }
    .hp-hero__trust-row { gap: 20px; }
    .hp-hero__trust-label { font-size: 0.75rem; }
    .hp-hero__trust-label small { font-size: 0.62rem; }
    .hp-hero__trust-icon { width: 32px; height: 32px; font-size: 0.9rem; }
    .hp-hero__cd { right: 3%; padding: 14px 16px; border-radius: 12px; }
    .hp-hero__cd-num { font-size: 1.4rem; }
    .hp-hero__cd-block { min-width: 38px; }
    .hp-hero__cd-label { font-size: 0.52rem; margin-bottom: 8px; }
    .hp-hero__cd-sep { font-size: 1rem; margin-bottom: 10px; }
}

@media (max-width: 768px) {
    /* ── HERO ── */
    .hp-hero { min-height: auto; flex-direction: column; }
    .hp-hero__bg { position: relative; width: 100%; height: 260px; }
    .hp-hero__bg::before {
        left: 0; right: 0; top: auto; bottom: -1px;
        width: 100%; height: 60px;
        border-radius: 50% 50% 0 0 / 100% 100% 0 0;
    }
    .hp-hero__bg::after { background: linear-gradient(180deg, transparent 50%, rgba(255,255,255,0.3) 100%); }
    .hp-hero__inner { padding: 0 20px 44px; flex-direction: column; align-items: center; margin-top: -30px; }
    .hp-hero__content { max-width: 100%; text-align: center; }
    .hp-hero__title { font-size: 2rem; }
    .hp-hero__desc { font-size: 0.95rem; margin-left: auto; margin-right: auto; }
    .hp-hero__price-bar { padding: 14px 20px; gap: 14px; width: 100%; justify-content: center; flex-direction: column; align-items: center; text-align: center; }
    .hp-hero__price-main { justify-content: center; }
    .hp-hero__price-divider { width: 60px; height: 1px; }
    .hp-hero__price-info { align-items: center; }
    .hp-hero__price-val { font-size: 2.2rem; }
    .hp-hero__cta { justify-content: center; }
    .hp-hero__social { justify-content: center; }
    .hp-hero__trust { position: relative; background: #f8fafc; border-top: 1px solid #e5e7eb; padding: 14px 0; }
    .hp-hero__trust-row { gap: 16px; flex-wrap: wrap; justify-content: center; }
    .hp-hero__trust-item { gap: 8px; }
    .hp-hero__trust-label small { display: none; }

    /* ── Countdown — centered at top of hero ── */
    .hp-hero__cd {
        position: absolute !important;
        top: 12px !important;
        bottom: auto !important;
        left: 50% !important;
        right: auto !important;
        transform: translateX(-50%) !important;
        display: flex;
        flex-direction: row;
        align-items: center;
        justify-content: center;
        padding: 10px 18px;
        border-radius: 40px;
        gap: 10px;
        background: rgba(255,255,255,0.95);
        box-shadow: 0 4px 20px rgba(0,0,0,0.12);
        white-space: nowrap;
        z-index: 20;
    }
    .hp-hero__cd-label { margin-bottom: 0; font-size: 0.55rem; white-space: nowrap; }
    .hp-hero__cd-blocks { display: flex; align-items: center; gap: 6px; }
    .hp-hero__cd-block { min-width: auto; flex-direction: row; gap: 4px; align-items: baseline; }
    .hp-hero__cd-num { font-size: 1.1rem; line-height: 1; }
    .hp-hero__cd-unit { font-size: 0.45rem; margin-top: 0; }
    .hp-hero__cd-sep { font-size: 0.9rem; margin-bottom: 0; line-height: 1; }

    /* ── TARIFS — stacked on mobile ── */
    .hp-tarifs { padding: 30px 0 40px; }
    .hp-tarifs__wrap { padding: 0 16px; }
    .hp-tarifs__body { flex-direction: column !important; flex-wrap: wrap !important; gap: 20px; }
    .hp-tarifs__body > .hp-sim { flex: none !important; width: 100% !important; }
    .hp-tarifs__tables { width: 100%; }
    .hp-tarifs__header h2 { font-size: 1.8rem; }

    /* Tabs — scrollable on mobile */
    .hp-tarifs__tabs {
        display: flex;
        overflow-x: auto;
        -webkit-overflow-scrolling: touch;
        scrollbar-width: none;
        width: 100%;
    }
    .hp-tarifs__tabs::-webkit-scrollbar { display: none; }
    .hp-tarifs__tab { padding: 10px 20px; font-size: 0.8rem; flex-shrink: 0; }

    /* Toggle */
    .hp-tarifs__toggle-wrap { flex-wrap: wrap; justify-content: center; gap: 8px; }
    .hp-tarifs__toggle-label { font-size: 0.75rem; }

    /* Table — readable on mobile */
    .hp-tarifs__card { border-radius: 12px; }
    .hp-tarifs__card .tablepress-scroll-wrapper { overflow-x: auto; }
    .hp-tarifs__card .tablepress { min-width: 500px; }
    .hp-tarifs__card .tablepress thead th { font-size: 0.6rem; padding: 12px 8px; letter-spacing: 0.3px; }
    .hp-tarifs__card .tablepress thead th:first-child { padding-left: 12px; }
    .hp-tarifs__card .tablepress tbody td { font-size: 0.82rem; padding: 12px 8px; }
    .hp-tarifs__card .tablepress tbody td:first-child { padding-left: 12px; }
    .hp-tarifs__card .tablepress thead th:last-child::after { display: none; }
    .hp-tarifs__footer { flex-direction: column; text-align: center; gap: 14px; padding: 16px; }
    .hp-tarifs__footer-info { font-size: 0.75rem; gap: 6px; justify-content: center; }
    .hp-tarifs__savings { font-size: 0.75rem; padding: 10px 14px; }

    /* Sim — full width, comfortable sizes */
    .hp-sim { padding: 20px 18px; position: static; }
    .hp-sim__title h3 { font-size: 0.95rem; }
    .hp-sim__title h3 small { font-size: 0.7rem; }
    .hp-sim__label { font-size: 0.75rem; }
    .hp-sim__pill { font-size: 0.85rem; padding: 8px 0; }
    .hp-sim__qty-btn { width: 36px; height: 36px; font-size: 1.1rem; }
    .hp-sim__qty-val { font-size: 1rem; }
    .hp-sim__price-label { font-size: 0.7rem; }
    .hp-sim__price-big { font-size: 2rem; }
    .hp-sim__price-detail { font-size: 0.85rem; }
    .hp-sim__savings-text { font-size: 0.78rem; }
    .hp-sim__cta { font-size: 0.9rem; padding: 12px 18px; }
    .hp-tarifs__perks { gap: 16px; flex-wrap: wrap; justify-content: center; }

    .hp-sh__title { font-size: 1.4rem; }
    .hp-section { padding: 45px 0; }
    .hp-cta { padding: 36px 0; }
    .hp-reviews { padding: 45px 0; }
    .hp-faq { padding: 42px 0; }
}

@media (max-width: 480px) {
    /* ── HERO ── */
    .hp-hero__bg { height: 200px; }
    .hp-hero__bg::before { height: 45px; }
    .hp-hero__inner { padding: 0 14px 30px; gap: 16px; margin-top: -20px; }
    .hp-hero__trust-row { gap: 10px; }
    .hp-hero__trust-icon { width: 28px; height: 28px; font-size: 0.8rem; border-radius: 7px; }
    .hp-hero__trust-label { font-size: 0.68rem; }
    .hp-hero__badge { font-size: 0.62rem; padding: 5px 12px; }
    .hp-hero__title { font-size: 1.5rem; margin-bottom: 12px; }
    .hp-hero__desc { font-size: 0.85rem; margin-bottom: 16px; }
    .hp-hero__price-bar { flex-direction: column; gap: 8px; text-align: center; padding: 12px; }
    .hp-hero__price-divider { width: 60px; height: 1px; }
    .hp-hero__price-main { justify-content: center; }
    .hp-hero__price-val { font-size: 1.9rem; }
    .hp-hero__cta { flex-direction: column; }
    .hp-btn { width: 100%; max-width: 300px; justify-content: center; }

    /* Countdown */
    .hp-hero__cd { padding: 8px 14px; gap: 8px; top: 10px; border-radius: 30px; }
    .hp-hero__cd-label { font-size: 0.48rem; }
    .hp-hero__cd-num { font-size: 0.95rem; }
    .hp-hero__cd-sep { font-size: 0.75rem; }
    .hp-hero__cd-unit { font-size: 0.35rem; }

    /* ── TARIFS ── */
    .hp-tarifs { padding: 20px 0 30px; }
    .hp-tarifs__wrap { padding: 0 12px; }
    .hp-tarifs__header h2 { font-size: 1.4rem; }
    .hp-tarifs__badge { font-size: 0.55rem; padding: 4px 12px; }
    .hp-tarifs__tab { padding: 8px 16px; font-size: 0.75rem; }
    .hp-tarifs__card .tablepress { min-width: 440px; }
    .hp-tarifs__card .tablepress thead th { font-size: 0.52rem; padding: 10px 6px; }
    .hp-tarifs__card .tablepress tbody td { font-size: 0.75rem; padding: 10px 6px; }
    .hp-tarifs__footer { padding: 12px; gap: 10px; }
    .hp-tarifs__footer-info { font-size: 0.65rem; }
    .hp-tarifs__savings { font-size: 0.68rem; padding: 8px 12px; }
    .hp-tarifs__perks { flex-direction: column; gap: 10px; align-items: center; }
    .hp-tarifs__perk { font-size: 0.78rem; }

    /* Sim — still full-width */
    .hp-sim { padding: 16px 14px; border-radius: 12px; }
    .hp-sim__title h3 { font-size: 0.85rem; }
    .hp-sim__title h3 small { font-size: 0.62rem; }
    .hp-sim__label { font-size: 0.68rem; }
    .hp-sim__pill { font-size: 0.78rem; padding: 7px 0; }
    .hp-sim__qty-btn { width: 32px; height: 32px; font-size: 1rem; }
    .hp-sim__qty-val { font-size: 0.9rem; }
    .hp-sim__price-big { font-size: 1.7rem; }
    .hp-sim__price-detail { font-size: 0.78rem; }
    .hp-sim__savings-text { font-size: 0.7rem; }
    .hp-sim__cta { font-size: 0.82rem; padding: 10px 14px; }

    .hp-sh__title { font-size: 1.2rem; }
    .hp-sh__desc { font-size: 0.82rem; }
    .hp-vid__play { width: 48px; height: 48px; }
    .hp-vid__play svg { width: 18px; height: 18px; }
    .hp-section .section-header h2 { font-size: 1.15rem !important; }
    .hp-faq .accordion-button { font-size: 0.8rem !important; padding: 12px 14px !important; }
    .hp-faq .accordion-body { font-size: 0.8rem; padding: 0 14px 14px !important; }
}

@media (max-width: 360px) {
    .hp-hero__title { font-size: 1.3rem; }
    .hp-hero__price-val { font-size: 1.6rem; }
    .hp-hero__cd { padding: 6px 10px; gap: 6px; }
    .hp-hero__cd-label { display: none; }
    .hp-hero__cd-num { font-size: 0.85rem; }
    .hp-hero__cd-sep { font-size: 0.7rem; }
    .hp-tarifs__header h2 { font-size: 1.25rem; }
    .hp-tarifs__tab { padding: 7px 12px; font-size: 0.68rem; }
    .hp-tarifs__card .tablepress { min-width: 380px; }
    .hp-tarifs__card .tablepress thead th { font-size: 0.46rem; padding: 8px 4px; }
    .hp-tarifs__card .tablepress tbody td { font-size: 0.65rem; padding: 8px 4px; }
    .hp-sim__price-big { font-size: 1.5rem; }
}
