/* ==========================================================================
   Uro Up Forte — Landing Page
   Stylesheet principale
   ==========================================================================
   Stile: serio, premium, medical soft, rassurant et moderne
   Mobile-first
   ========================================================================== */

/* --------------------------------------------------------------------------
   Variables CSS
   -------------------------------------------------------------------------- */
:root {
    /* Couleurs de marque */
    --color-base: #6E93A8;            /* Couleur de base (bleu-gris médical) */
    --color-base-dark: #4A6E82;
    --color-base-darker: #345166;
    --color-accent: #F71F1C;          /* Accent / CTA rouge */
    --color-accent-dark: #D11815;
    --color-bg: #EDF8FE;              /* Fond principal bleu très clair */
    --color-bg-alt: #F6FBFE;
    --color-white: #ffffff;
    --color-text: #1F2A33;
    --color-text-muted: #5C7180;
    --color-border: #DCE9F2;
    --color-success: #2E9B6C;
    --color-warning: #E3A62A;

    /* Typographie */
    --font-sans: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    --font-display: 'Playfair Display', Georgia, serif;

    /* Espacements */
    --space-xs: 0.5rem;
    --space-sm: 0.75rem;
    --space-md: 1rem;
    --space-lg: 1.5rem;
    --space-xl: 2.5rem;
    --space-2xl: 4rem;
    --space-3xl: 6rem;

    /* Arrondis */
    --radius-sm: 8px;
    --radius-md: 14px;
    --radius-lg: 24px;
    --radius-xl: 32px;
    --radius-full: 999px;

    /* Ombres */
    --shadow-sm: 0 1px 3px rgba(52, 81, 102, 0.06), 0 1px 2px rgba(52, 81, 102, 0.04);
    --shadow-md: 0 4px 12px rgba(52, 81, 102, 0.08), 0 2px 4px rgba(52, 81, 102, 0.04);
    --shadow-lg: 0 12px 32px rgba(52, 81, 102, 0.10), 0 4px 12px rgba(52, 81, 102, 0.06);
    --shadow-xl: 0 24px 48px rgba(52, 81, 102, 0.12), 0 8px 24px rgba(52, 81, 102, 0.08);
    --shadow-cta: 0 8px 20px rgba(247, 31, 28, 0.28);

    /* Transitions */
    --transition: 200ms ease;
    --transition-slow: 400ms ease;

    /* Layout */
    --container-width: 1200px;
    --container-narrow: 820px;
    --header-height: 72px;
}

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

html {
    scroll-behavior: smooth;
    scroll-padding-top: calc(var(--header-height) + 16px);
    -webkit-text-size-adjust: 100%;
}

body {
    font-family: var(--font-sans);
    font-size: 16px;
    line-height: 1.65;
    color: var(--color-text);
    background-color: var(--color-bg);
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    overflow-x: hidden;
}

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

a {
    color: var(--color-base-dark);
    text-decoration: none;
    transition: color var(--transition);
}

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

ul { list-style: none; }

h1, h2, h3, h4 {
    font-family: var(--font-display);
    color: var(--color-base-darker);
    line-height: 1.2;
    letter-spacing: -0.01em;
    font-weight: 700;
}

h1 { font-size: clamp(2rem, 5vw, 3.2rem); }
h2 { font-size: clamp(1.75rem, 4vw, 2.5rem); }
h3 { font-size: clamp(1.2rem, 2.5vw, 1.5rem); }
h4 { font-size: 1.05rem; font-family: var(--font-sans); font-weight: 600; }

p { margin-bottom: 1rem; }

small, .small { font-size: 0.875rem; color: var(--color-text-muted); }

/* --------------------------------------------------------------------------
   Layout
   -------------------------------------------------------------------------- */
.container {
    max-width: var(--container-width);
    margin: 0 auto;
    padding: 0 1.25rem;
    width: 100%;
}

.container-narrow { max-width: var(--container-narrow); }

.section {
    padding: var(--space-2xl) 0;
}

.section-alt { background: var(--color-bg-alt); }
.section-soft { background: linear-gradient(180deg, var(--color-bg-alt) 0%, #FFFFFF 100%); }

.section-head {
    margin-bottom: var(--space-xl);
    max-width: 760px;
}

.section-head.center {
    margin-left: auto;
    margin-right: auto;
    text-align: center;
}

.section-head h2 { margin-bottom: 0.75rem; }

.section-lead {
    font-size: 1.05rem;
    color: var(--color-text-muted);
    line-height: 1.6;
}

.eyebrow {
    display: inline-block;
    font-size: 0.78rem;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--color-base);
    background: rgba(110, 147, 168, 0.10);
    padding: 0.35rem 0.85rem;
    border-radius: var(--radius-full);
    margin-bottom: 1rem;
}

/* --------------------------------------------------------------------------
   Boutons
   -------------------------------------------------------------------------- */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 0.9rem 1.5rem;
    font-family: var(--font-sans);
    font-size: 0.95rem;
    font-weight: 600;
    line-height: 1.2;
    border: 2px solid transparent;
    border-radius: var(--radius-full);
    cursor: pointer;
    text-align: center;
    transition: all var(--transition);
    white-space: nowrap;
    user-select: none;
}

.btn-primary {
    background: var(--color-accent);
    color: var(--color-white);
    box-shadow: var(--shadow-cta);
}

.btn-primary:hover {
    background: var(--color-accent-dark);
    color: var(--color-white);
    transform: translateY(-1px);
    box-shadow: 0 12px 28px rgba(247, 31, 28, 0.36);
}

.btn-primary:active { transform: translateY(0); }

.btn-ghost {
    background: transparent;
    color: var(--color-base-darker);
    border-color: var(--color-border);
}

.btn-ghost:hover {
    border-color: var(--color-base);
    color: var(--color-base-dark);
    background: var(--color-white);
}

.btn-lg {
    padding: 1.1rem 2rem;
    font-size: 1rem;
}

.btn-sm {
    padding: 0.55rem 1.1rem;
    font-size: 0.85rem;
}

.btn-header {
    padding: 0.7rem 1.3rem;
    font-size: 0.9rem;
}

.arrow {
    display: inline-block;
    transition: transform var(--transition);
}

.btn:hover .arrow { transform: translateX(3px); }

/* --------------------------------------------------------------------------
   Header
   -------------------------------------------------------------------------- */
.site-header {
    position: sticky;
    top: 0;
    z-index: 100;
    background: rgba(255, 255, 255, 0.92);
    backdrop-filter: saturate(160%) blur(10px);
    -webkit-backdrop-filter: saturate(160%) blur(10px);
    border-bottom: 1px solid rgba(220, 233, 242, 0.7);
    height: var(--header-height);
    display: flex;
    align-items: center;
}

.header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
}

.logo {
    display: inline-flex;
    align-items: center;
    gap: 0.6rem;
    color: var(--color-base-darker);
    font-weight: 700;
}

.logo:hover { color: var(--color-base-darker); }

.logo-mark {
    position: relative;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 38px;
    height: 38px;
    background: linear-gradient(135deg, var(--color-base) 0%, var(--color-base-darker) 100%);
    color: var(--color-white);
    border-radius: 10px;
    font-family: var(--font-display);
    font-weight: 700;
    font-size: 1.1rem;
    box-shadow: var(--shadow-sm);
}

.logo-mark .dot {
    position: absolute;
    top: 8px;
    right: 8px;
    width: 6px;
    height: 6px;
    background: var(--color-accent);
    border-radius: 50%;
}

.logo-text {
    font-family: var(--font-display);
    font-size: 1.15rem;
    font-weight: 600;
}

.logo-text strong {
    color: var(--color-accent);
    font-weight: 700;
}

.main-nav ul {
    display: flex;
    gap: 2rem;
    align-items: center;
}

.main-nav a {
    color: var(--color-text);
    font-weight: 500;
    font-size: 0.95rem;
    position: relative;
    padding: 0.25rem 0;
}

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

.main-nav a:hover::after { width: 100%; }

.menu-toggle {
    display: none;
    flex-direction: column;
    gap: 4px;
    background: transparent;
    border: 0;
    padding: 8px;
    cursor: pointer;
}

.menu-toggle span {
    width: 24px;
    height: 2px;
    background: var(--color-base-darker);
    border-radius: 2px;
    transition: transform var(--transition);
}

.menu-toggle.open span:nth-child(1) { transform: translateY(6px) rotate(45deg); }
.menu-toggle.open span:nth-child(2) { opacity: 0; }
.menu-toggle.open span:nth-child(3) { transform: translateY(-6px) rotate(-45deg); }

/* --------------------------------------------------------------------------
   Hero section
   -------------------------------------------------------------------------- */
.hero {
    position: relative;
    padding: var(--space-xl) 0 0;
    background:
        radial-gradient(ellipse at top right, rgba(110, 147, 168, 0.12) 0%, transparent 50%),
        radial-gradient(ellipse at bottom left, rgba(247, 31, 28, 0.04) 0%, transparent 50%),
        var(--color-bg);
    overflow: hidden;
}

.hero-grid {
    display: grid;
    grid-template-columns: 1.05fr 1fr;
    gap: 3rem;
    align-items: center;
    padding: var(--space-xl) 1.25rem var(--space-2xl);
}

.hero-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: var(--color-white);
    padding: 0.45rem 1rem;
    border-radius: var(--radius-full);
    font-size: 0.85rem;
    font-weight: 500;
    color: var(--color-base-dark);
    box-shadow: var(--shadow-sm);
    border: 1px solid var(--color-border);
    margin-bottom: 1.25rem;
}

.hero-eyebrow .pulse {
    width: 8px;
    height: 8px;
    background: var(--color-success);
    border-radius: 50%;
    position: relative;
    animation: pulse 2.4s infinite;
}

@keyframes pulse {
    0%   { box-shadow: 0 0 0 0 rgba(46, 155, 108, 0.5); }
    70%  { box-shadow: 0 0 0 10px rgba(46, 155, 108, 0); }
    100% { box-shadow: 0 0 0 0 rgba(46, 155, 108, 0); }
}

.hero h1 {
    margin-bottom: 1.25rem;
}

.highlight {
    color: var(--color-accent);
    position: relative;
}

.hero-sub {
    font-size: 1.05rem;
    color: var(--color-text-muted);
    margin-bottom: 1.5rem;
    max-width: 560px;
}

.badges {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    margin-bottom: 1.5rem;
}

.badges li {
    background: var(--color-white);
    color: var(--color-base-dark);
    padding: 0.4rem 0.85rem;
    border-radius: var(--radius-full);
    font-size: 0.82rem;
    font-weight: 500;
    border: 1px solid var(--color-border);
    box-shadow: var(--shadow-sm);
}

.benefits-list {
    margin-bottom: 1.75rem;
}

.benefits-list li {
    display: flex;
    align-items: center;
    gap: 0.65rem;
    padding: 0.45rem 0;
    font-size: 0.95rem;
    color: var(--color-text);
}

.check {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 24px;
    height: 24px;
    background: rgba(46, 155, 108, 0.12);
    color: var(--color-success);
    border-radius: 50%;
    font-weight: 700;
    font-size: 0.8rem;
    flex-shrink: 0;
}

.hero-ctas {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
    margin-bottom: 1.5rem;
}

.rating-note {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.75rem 1rem;
    background: var(--color-white);
    border: 1px solid var(--color-border);
    border-radius: var(--radius-md);
    max-width: fit-content;
    box-shadow: var(--shadow-sm);
}

.stars {
    color: var(--color-warning);
    font-size: 1.05rem;
    letter-spacing: 1px;
    display: inline-flex;
}

.stars .half { opacity: 0.5; }

.rating-text { font-size: 0.9rem; color: var(--color-text-muted); }

/* Hero visual */
.hero-visual {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
}

.hero-visual-inner {
    position: relative;
    max-width: 340px;
    width: 100%;
    margin: 0 auto;
}

.hero-visual-inner::before {
    content: '';
    position: absolute;
    inset: -10% -10% -5% -10%;
    background: radial-gradient(ellipse at center, rgba(110, 147, 168, 0.20) 0%, transparent 60%);
    z-index: -1;
    filter: blur(24px);
}

.hero-product {
    width: 100%;
    max-width: 320px;
    margin: 0 auto;
    border-radius: var(--radius-lg);
    filter: drop-shadow(0 30px 40px rgba(52, 81, 102, 0.22));
    transition: transform var(--transition-slow);
}

.hero-product:hover { transform: translateY(-4px); }

.float-badge {
    position: absolute;
    background: var(--color-white);
    padding: 0.85rem 1rem;
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-md);
    display: flex;
    align-items: center;
    gap: 0.6rem;
    font-size: 0.82rem;
    font-weight: 600;
    color: var(--color-base-darker);
    z-index: 2;
    animation: float 4s ease-in-out infinite;
}

.float-badge.top-left { top: 8%; left: -5%; }
.float-badge.bottom-right { bottom: 10%; right: -5%; animation-delay: -2s; }

.float-icon {
    display: inline-flex;
    width: 32px;
    height: 32px;
    align-items: center;
    justify-content: center;
    background: rgba(110, 147, 168, 0.12);
    color: var(--color-base);
    border-radius: 8px;
    font-size: 1.1rem;
}

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

/* Trust strip */
.trust-strip {
    background: var(--color-white);
    border-top: 1px solid var(--color-border);
    padding: 1rem 0;
}

.trust-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1rem;
    align-items: center;
}

.trust-item {
    display: flex;
    align-items: center;
    gap: 0.6rem;
    font-size: 0.88rem;
    font-weight: 500;
    color: var(--color-base-darker);
    text-align: center;
    justify-content: center;
}

/* --------------------------------------------------------------------------
   Summary card
   -------------------------------------------------------------------------- */
.summary-card {
    display: grid;
    grid-template-columns: 280px 1fr;
    gap: 2rem;
    padding: 2rem;
    background: var(--color-white);
    border: 1px solid var(--color-border);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-md);
    max-width: 980px;
    margin: 0 auto;
}

.summary-left {
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--color-bg);
    border-radius: var(--radius-md);
    padding: 1.5rem;
    min-height: 280px;
}

.summary-img { max-width: 180px; }

.summary-list {
    display: grid;
    grid-template-columns: 180px 1fr;
    gap: 0.6rem 1.25rem;
    margin-bottom: 1.5rem;
}

.summary-list > div {
    display: contents;
}

.summary-list dt {
    font-weight: 600;
    color: var(--color-base-darker);
    font-size: 0.9rem;
    border-bottom: 1px dashed var(--color-border);
    padding-bottom: 0.6rem;
}

.summary-list dd {
    font-size: 0.95rem;
    color: var(--color-text);
    border-bottom: 1px dashed var(--color-border);
    padding-bottom: 0.6rem;
}

.summary-list small { display: block; margin-top: 2px; }

/* --------------------------------------------------------------------------
   Cards grid (bénéfices)
   -------------------------------------------------------------------------- */
.cards-grid {
    display: grid;
    gap: 1.5rem;
}

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

.benefit-card {
    background: var(--color-white);
    padding: 2rem 1.5rem;
    border-radius: var(--radius-lg);
    border: 1px solid var(--color-border);
    box-shadow: var(--shadow-sm);
    transition: all var(--transition);
}

.benefit-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-lg);
    border-color: rgba(110, 147, 168, 0.35);
}

.card-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 52px;
    height: 52px;
    background: linear-gradient(135deg, rgba(110, 147, 168, 0.10) 0%, rgba(110, 147, 168, 0.20) 100%);
    border-radius: var(--radius-md);
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

.benefit-card h3 { margin-bottom: 0.6rem; font-size: 1.1rem; }

.benefit-card p {
    color: var(--color-text-muted);
    font-size: 0.95rem;
    margin-bottom: 0;
}

/* --------------------------------------------------------------------------
   Split section (Cos'è Uro Up Forte)
   -------------------------------------------------------------------------- */
.split-section {
    display: grid;
    grid-template-columns: 1.15fr 1fr;
    gap: 3rem;
    align-items: center;
}

.split-text .eyebrow { margin-bottom: 0.75rem; }
.split-text h2 { margin-bottom: 1.25rem; }

.split-text p {
    font-size: 1rem;
    color: var(--color-text);
    line-height: 1.7;
    margin-bottom: 1rem;
}

.note {
    background: var(--color-bg);
    padding: 0.85rem 1rem;
    border-radius: var(--radius-md);
    border-left: 3px solid var(--color-base);
    font-size: 0.9rem;
}

.visual-card {
    background: linear-gradient(140deg, var(--color-base) 0%, var(--color-base-darker) 100%);
    border-radius: var(--radius-xl);
    padding: 2.5rem;
    color: var(--color-white);
    position: relative;
    overflow: hidden;
    box-shadow: var(--shadow-xl);
}

.visual-card::before {
    content: '';
    position: absolute;
    top: -80px;
    right: -80px;
    width: 220px;
    height: 220px;
    background: rgba(255, 255, 255, 0.07);
    border-radius: 50%;
}

.visual-circle {
    background: rgba(255, 255, 255, 0.10);
    border-radius: var(--radius-lg);
    padding: 1.5rem;
    margin-bottom: 1.5rem;
    text-align: center;
}

.visual-circle img { max-width: 160px; margin: 0 auto; }

.visual-points li {
    padding: 0.5rem 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.15);
    font-weight: 500;
    font-size: 0.95rem;
}

.visual-points li:last-child { border-bottom: 0; }

/* --------------------------------------------------------------------------
   Target grid (Per chi è indicato)
   -------------------------------------------------------------------------- */
.target-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.target-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 1.5rem 1rem;
    background: var(--color-white);
    border-radius: var(--radius-md);
    border: 1px solid var(--color-border);
    box-shadow: var(--shadow-sm);
    transition: all var(--transition);
}

.target-item:hover {
    transform: translateY(-3px);
    border-color: var(--color-base);
    box-shadow: var(--shadow-md);
}

.t-icon {
    display: inline-flex;
    width: 52px;
    height: 52px;
    align-items: center;
    justify-content: center;
    background: rgba(110, 147, 168, 0.12);
    border-radius: 50%;
    font-size: 1.3rem;
    margin-bottom: 0.75rem;
}

.target-item p { font-size: 0.9rem; margin-bottom: 0; line-height: 1.45; }

.advisory-box {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    padding: 1.25rem 1.5rem;
    background: #FFF8E9;
    border: 1px solid #F3E1B9;
    border-radius: var(--radius-md);
    max-width: 820px;
    margin: 1.5rem auto 0;
}

.advisory-box.advisory-soft {
    background: var(--color-bg);
    border-color: var(--color-border);
}

.advisory-icon {
    font-size: 1.4rem;
    flex-shrink: 0;
    margin-top: 2px;
}

.advisory-box p {
    font-size: 0.95rem;
    margin-bottom: 0;
    line-height: 1.6;
}

/* --------------------------------------------------------------------------
   Product sheet
   -------------------------------------------------------------------------- */
.product-sheet {
    background: var(--color-white);
    border-radius: var(--radius-lg);
    border: 1px solid var(--color-border);
    box-shadow: var(--shadow-sm);
    overflow: hidden;
    max-width: 860px;
    margin: 0 auto;
}

.sheet-row {
    display: grid;
    grid-template-columns: 240px 1fr;
    padding: 1rem 1.5rem;
    border-bottom: 1px solid var(--color-border);
}

.sheet-row:last-child { border-bottom: 0; }

.sheet-row:nth-child(even) { background: var(--color-bg-alt); }

.sheet-label {
    font-weight: 600;
    color: var(--color-base-darker);
    font-size: 0.95rem;
}

.sheet-value { font-size: 0.95rem; color: var(--color-text); }
.sheet-value small { display: block; color: var(--color-text-muted); }

.sheet-row.warn { background: #FFF8E9 !important; border-top: 1px solid #F3E1B9; }

/* --------------------------------------------------------------------------
   Ingredients
   -------------------------------------------------------------------------- */
.ingredients-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.25rem;
    margin-bottom: 2.5rem;
}

.ingredient-card {
    background: var(--color-white);
    border: 1px solid var(--color-border);
    border-radius: var(--radius-lg);
    padding: 1.5rem;
    box-shadow: var(--shadow-sm);
    transition: all var(--transition);
}

.ingredient-card:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-md);
    border-color: rgba(110, 147, 168, 0.35);
}

.ing-header {
    display: flex;
    align-items: center;
    gap: 0.85rem;
    margin-bottom: 0.85rem;
}

.ing-emoji {
    display: inline-flex;
    width: 48px;
    height: 48px;
    align-items: center;
    justify-content: center;
    background: var(--color-bg);
    border-radius: var(--radius-md);
    font-size: 1.5rem;
    flex-shrink: 0;
}

.ing-header h3 { font-size: 1.1rem; margin-bottom: 2px; }

.ing-tag {
    display: inline-block;
    font-size: 0.72rem;
    font-weight: 600;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--color-base);
}

.ingredient-card p {
    font-size: 0.92rem;
    color: var(--color-text-muted);
    line-height: 1.6;
    margin-bottom: 0;
}

/* --------------------------------------------------------------------------
   Tables
   -------------------------------------------------------------------------- */
.table-wrapper {
    background: var(--color-white);
    border: 1px solid var(--color-border);
    border-radius: var(--radius-lg);
    padding: 2rem;
    box-shadow: var(--shadow-sm);
    overflow-x: auto;
}

.table-title {
    font-family: var(--font-sans);
    font-size: 1.1rem;
    margin-bottom: 1rem;
    color: var(--color-base-darker);
}

.data-table {
    width: 100%;
    border-collapse: collapse;
    font-size: 0.93rem;
}

.data-table thead th {
    text-align: left;
    background: var(--color-bg);
    color: var(--color-base-darker);
    font-weight: 600;
    padding: 0.9rem 1rem;
    border-bottom: 2px solid var(--color-border);
    font-size: 0.88rem;
    letter-spacing: 0.02em;
}

.data-table tbody td {
    padding: 0.85rem 1rem;
    border-bottom: 1px solid var(--color-border);
    vertical-align: middle;
}

.data-table tbody tr:last-child td { border-bottom: 0; }

.data-table tbody tr:hover { background: rgba(237, 248, 254, 0.6); }

.highlight-col {
    background: rgba(247, 31, 28, 0.06) !important;
    color: var(--color-accent) !important;
    border-bottom-color: rgba(247, 31, 28, 0.2) !important;
}

.data-table .ok,
.data-table .no,
.data-table .maybe,
.data-table .stars-cell {
    text-align: center;
    font-weight: 700;
    font-size: 1.05rem;
}

.data-table .ok { color: var(--color-success); }
.data-table .no { color: #C0443F; }
.data-table .maybe { color: var(--color-warning); }
.data-table .stars-cell { color: var(--color-warning); letter-spacing: 1px; }

.table-note { margin-top: 1rem; }

/* --------------------------------------------------------------------------
   Usage steps
   -------------------------------------------------------------------------- */
.usage-steps {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
    margin-bottom: 1.5rem;
}

.usage-step {
    background: var(--color-white);
    border: 1px solid var(--color-border);
    border-radius: var(--radius-lg);
    padding: 1.75rem 1.5rem;
    text-align: left;
    position: relative;
    box-shadow: var(--shadow-sm);
}

.step-num {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 38px;
    height: 38px;
    background: linear-gradient(135deg, var(--color-base) 0%, var(--color-base-darker) 100%);
    color: var(--color-white);
    border-radius: 50%;
    font-family: var(--font-display);
    font-size: 1.1rem;
    font-weight: 700;
    margin-bottom: 0.85rem;
    box-shadow: var(--shadow-sm);
}

.usage-step h3 { font-size: 1.1rem; margin-bottom: 0.6rem; }

.usage-step p {
    font-size: 0.92rem;
    color: var(--color-text-muted);
    line-height: 1.6;
    margin-bottom: 0;
}

/* --------------------------------------------------------------------------
   Reviews
   -------------------------------------------------------------------------- */
.reviews-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
    margin-bottom: 2.5rem;
}

.review-card {
    background: var(--color-white);
    border: 1px solid var(--color-border);
    border-radius: var(--radius-lg);
    padding: 1.75rem;
    box-shadow: var(--shadow-sm);
    position: relative;
}

.review-card::before {
    content: '"';
    position: absolute;
    top: 12px;
    right: 24px;
    font-family: var(--font-display);
    font-size: 4rem;
    color: rgba(110, 147, 168, 0.18);
    line-height: 1;
}

.review-head {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1rem;
}

.avatar {
    width: 44px;
    height: 44px;
    background: linear-gradient(135deg, var(--color-base) 0%, var(--color-base-darker) 100%);
    color: var(--color-white);
    font-weight: 700;
    font-size: 0.85rem;
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.review-head > div:nth-child(2) {
    display: flex;
    flex-direction: column;
    line-height: 1.3;
}

.review-head strong { color: var(--color-base-darker); font-size: 0.95rem; }

.review-head .stars { margin-left: auto; }

.review-card p {
    font-size: 0.95rem;
    color: var(--color-text);
    font-style: italic;
    line-height: 1.6;
    margin-bottom: 0;
}

/* --------------------------------------------------------------------------
   Long review article
   -------------------------------------------------------------------------- */
.long-article {
    background: var(--color-white);
    border: 1px solid var(--color-border);
    border-radius: var(--radius-lg);
    padding: clamp(1.5rem, 4vw, 3rem);
    box-shadow: var(--shadow-sm);
}

.long-article h3 {
    font-family: var(--font-display);
    font-size: 1.35rem;
    color: var(--color-base-darker);
    margin: 2rem 0 0.85rem;
    padding-bottom: 0.6rem;
    border-bottom: 2px solid var(--color-bg);
    position: relative;
}

.long-article h3:first-child { margin-top: 0; }

.long-article h3::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: -2px;
    width: 44px;
    height: 2px;
    background: var(--color-accent);
    border-radius: 2px;
}

.long-article p {
    font-size: 1rem;
    line-height: 1.75;
    color: var(--color-text);
    margin-bottom: 1rem;
}

.bullet-list {
    margin: 0.5rem 0 1.25rem;
    padding-left: 1.25rem;
}

.bullet-list li {
    position: relative;
    padding-left: 1.25rem;
    margin-bottom: 0.5rem;
    line-height: 1.65;
}

.bullet-list li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0.65em;
    width: 7px;
    height: 7px;
    background: var(--color-base);
    border-radius: 50%;
}

.inline-cta {
    margin-top: 2rem;
    padding: 1.5rem;
    background: var(--color-bg);
    border-radius: var(--radius-md);
    text-align: center;
}

.inline-cta p { margin-bottom: 1rem; font-size: 1.05rem; }

/* --------------------------------------------------------------------------
   Purchase card
   -------------------------------------------------------------------------- */
.purchase-card {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 3rem;
    padding: clamp(2rem, 5vw, 3.5rem);
    background: linear-gradient(135deg, var(--color-base) 0%, var(--color-base-darker) 100%);
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-xl);
    color: var(--color-white);
    position: relative;
    overflow: hidden;
    align-items: center;
}

.purchase-card::before {
    content: '';
    position: absolute;
    top: -60px;
    right: -60px;
    width: 280px;
    height: 280px;
    background: rgba(255, 255, 255, 0.06);
    border-radius: 50%;
}

.purchase-content .eyebrow {
    background: rgba(255, 255, 255, 0.15);
    color: var(--color-white);
}

.purchase-content h2 {
    color: var(--color-white);
    margin-bottom: 1rem;
}

.purchase-content p {
    color: rgba(255, 255, 255, 0.88);
    font-size: 1rem;
    margin-bottom: 1.25rem;
}

.purchase-checks {
    margin-bottom: 1.5rem;
}

.purchase-checks li {
    padding: 0.4rem 0;
    color: var(--color-white);
    font-weight: 500;
}

.purchase-content .small {
    color: rgba(255, 255, 255, 0.65);
    margin-top: 1rem;
    margin-bottom: 0;
}

.purchase-visual {
    position: relative;
    text-align: center;
}

.purchase-visual img {
    max-width: 300px;
    margin: 0 auto;
    filter: drop-shadow(0 20px 40px rgba(0, 0, 0, 0.28));
}

/* --------------------------------------------------------------------------
   FAQ
   -------------------------------------------------------------------------- */
.faq-list {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.faq-item {
    background: var(--color-white);
    border: 1px solid var(--color-border);
    border-radius: var(--radius-md);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    transition: all var(--transition);
}

.faq-item[open] {
    border-color: var(--color-base);
    box-shadow: var(--shadow-md);
}

.faq-item summary {
    cursor: pointer;
    padding: 1.15rem 1.5rem;
    font-weight: 600;
    font-size: 1rem;
    color: var(--color-base-darker);
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    list-style: none;
    transition: color var(--transition);
}

.faq-item summary::-webkit-details-marker { display: none; }

.faq-item summary::after {
    content: '+';
    font-weight: 400;
    font-size: 1.5rem;
    color: var(--color-base);
    transition: transform var(--transition);
    flex-shrink: 0;
}

.faq-item[open] summary::after {
    transform: rotate(45deg);
    color: var(--color-accent);
}

.faq-item summary:hover { color: var(--color-accent); }

.faq-answer {
    padding: 0 1.5rem 1.25rem;
    font-size: 0.95rem;
    line-height: 1.7;
    color: var(--color-text);
}

.faq-answer p { margin-bottom: 0; }

/* --------------------------------------------------------------------------
   Final CTA
   -------------------------------------------------------------------------- */
.final-cta {
    padding: var(--space-2xl) 0;
    background:
        radial-gradient(ellipse at top, rgba(247, 31, 28, 0.08) 0%, transparent 60%),
        var(--color-bg);
    text-align: center;
}

.final-cta-inner {
    max-width: 620px;
    margin: 0 auto;
    padding: 2.5rem;
    background: var(--color-white);
    border-radius: var(--radius-xl);
    border: 1px solid var(--color-border);
    box-shadow: var(--shadow-lg);
}

.final-cta-inner h2 { margin-bottom: 0.75rem; }

.final-cta-inner p { font-size: 1.1rem; color: var(--color-text-muted); margin-bottom: 1.5rem; }

.final-note {
    font-size: 0.82rem;
    color: var(--color-text-muted);
    margin-top: 1.25rem;
    margin-bottom: 0;
}

/* --------------------------------------------------------------------------
   Footer
   -------------------------------------------------------------------------- */
.site-footer {
    background: #1B2A35;
    color: rgba(255, 255, 255, 0.78);
    padding: var(--space-2xl) 0 2rem;
}

.site-footer a {
    color: rgba(255, 255, 255, 0.78);
    font-size: 0.92rem;
}

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

.footer-grid {
    display: grid;
    grid-template-columns: 1.4fr repeat(3, 1fr);
    gap: 2.5rem;
    padding-bottom: var(--space-xl);
    border-bottom: 1px solid rgba(255, 255, 255, 0.12);
}

.footer-brand .logo { color: var(--color-white); margin-bottom: 1rem; }
.footer-brand .logo-text { color: var(--color-white); }
.footer-brand .small { color: rgba(255, 255, 255, 0.6); }

.footer-col h4 {
    color: var(--color-white);
    margin-bottom: 1rem;
    font-size: 0.95rem;
    font-weight: 600;
}

.footer-col ul li {
    padding: 0.3rem 0;
}

.footer-notes {
    padding: 2rem 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.12);
}

.footer-notes p {
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.58);
    line-height: 1.6;
    margin-bottom: 0.85rem;
}

.footer-notes p:last-child { margin-bottom: 0; }

.footer-notes strong { color: rgba(255, 255, 255, 0.85); }

.footer-bottom {
    padding-top: 1.5rem;
    text-align: center;
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.55);
}

.footer-bottom p { margin-bottom: 0; }

/* --------------------------------------------------------------------------
   Sticky CTA mobile
   -------------------------------------------------------------------------- */
.sticky-cta-mobile {
    display: none;
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 50;
    padding: 0.75rem 1rem calc(0.75rem + env(safe-area-inset-bottom, 0));
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border-top: 1px solid var(--color-border);
    box-shadow: 0 -6px 20px rgba(52, 81, 102, 0.10);
}

.sticky-cta-mobile .btn {
    width: 100%;
    padding: 1rem 1.25rem;
    font-size: 0.98rem;
}

/* --------------------------------------------------------------------------
   Modals
   -------------------------------------------------------------------------- */
.modal-wrapper {
    position: fixed;
    inset: 0;
    z-index: 200;
    display: none;
    align-items: center;
    justify-content: center;
    padding: 1rem;
}

.modal-wrapper.open { display: flex; }

.modal-backdrop {
    position: absolute;
    inset: 0;
    background: rgba(27, 42, 53, 0.55);
    backdrop-filter: blur(3px);
    -webkit-backdrop-filter: blur(3px);
    animation: fadeIn 200ms ease;
}

.modal {
    position: relative;
    display: none;
    flex-direction: column;
    background: var(--color-white);
    width: 100%;
    max-width: 620px;
    max-height: 85vh;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-xl);
    animation: scaleIn 220ms cubic-bezier(0.22, 1, 0.36, 1);
    overflow: hidden;
}

.modal.open { display: flex; }

@keyframes fadeIn  { from { opacity: 0; } to { opacity: 1; } }
@keyframes scaleIn { from { opacity: 0; transform: scale(0.95) translateY(12px); } to { opacity: 1; transform: scale(1) translateY(0); } }

.modal-head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1.25rem 1.5rem;
    border-bottom: 1px solid var(--color-border);
}

.modal-head h3 {
    margin: 0;
    font-family: var(--font-sans);
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--color-base-darker);
}

.modal-close {
    background: var(--color-bg);
    border: 0;
    width: 34px;
    height: 34px;
    border-radius: 50%;
    font-size: 1.3rem;
    color: var(--color-base-darker);
    cursor: pointer;
    transition: all var(--transition);
    line-height: 1;
}

.modal-close:hover { background: var(--color-accent); color: var(--color-white); }

.modal-body {
    padding: 1.5rem;
    overflow-y: auto;
    font-size: 0.95rem;
    line-height: 1.65;
}

.modal-body p { margin-bottom: 0.85rem; }
.modal-body p:last-child { margin-bottom: 0; }
.modal-body ul { padding-left: 1rem; margin-bottom: 0.85rem; }
.modal-body ul li { list-style: disc; padding: 0.15rem 0; }

/* --------------------------------------------------------------------------
   Cookie banner
   -------------------------------------------------------------------------- */
.cookie-banner {
    position: fixed;
    bottom: 1rem;
    left: 1rem;
    right: 1rem;
    z-index: 60;
    background: var(--color-white);
    border: 1px solid var(--color-border);
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-lg);
    padding: 1rem 1.25rem;
    max-width: 720px;
    margin: 0 auto;
    transform: translateY(120%);
    transition: transform 300ms ease;
}

.cookie-banner.visible { transform: translateY(0); }

.cookie-inner {
    display: flex;
    align-items: center;
    gap: 1rem;
    flex-wrap: wrap;
}

.cookie-inner p {
    font-size: 0.88rem;
    color: var(--color-text);
    margin-bottom: 0;
    flex: 1 1 280px;
    line-height: 1.5;
}

.cookie-inner a {
    color: var(--color-base);
    text-decoration: underline;
}

/* --------------------------------------------------------------------------
   Responsive — Tablet
   -------------------------------------------------------------------------- */
@media (max-width: 1024px) {
    .hero-grid { grid-template-columns: 1fr; gap: 2.5rem; text-align: left; }
    .hero-visual { order: -1; max-width: 360px; margin: 0 auto; }
    .hero-visual-inner { max-width: 360px; }

    .grid-3 { grid-template-columns: repeat(2, 1fr); }
    .grid-4 { grid-template-columns: repeat(2, 1fr); }
    .ingredients-grid { grid-template-columns: repeat(2, 1fr); }
    .usage-steps { grid-template-columns: repeat(2, 1fr); }
    .target-grid { grid-template-columns: repeat(3, 1fr); }
    .trust-grid { grid-template-columns: repeat(2, 1fr); gap: 0.75rem; }

    .summary-card { grid-template-columns: 220px 1fr; gap: 1.5rem; padding: 1.5rem; }
    .split-section { grid-template-columns: 1fr; gap: 2rem; }
    .purchase-card { grid-template-columns: 1fr; gap: 2rem; text-align: center; }
    .purchase-checks { text-align: left; max-width: 320px; margin: 0 auto 1.5rem; }

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

/* --------------------------------------------------------------------------
   Responsive — Mobile
   -------------------------------------------------------------------------- */
@media (max-width: 768px) {
    :root {
        --space-2xl: 3rem;
        --space-3xl: 4rem;
    }

    body { padding-bottom: 80px; /* espace pour sticky CTA mobile */ }

    .main-nav { display: none; }
    .btn-header { display: none; }
    .menu-toggle { display: flex; }

    .main-nav.open {
        display: block;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: var(--color-white);
        border-top: 1px solid var(--color-border);
        box-shadow: var(--shadow-md);
        padding: 1rem 1.25rem;
    }

    .main-nav.open ul {
        flex-direction: column;
        gap: 0;
        align-items: stretch;
    }

    .main-nav.open ul li {
        border-bottom: 1px solid var(--color-border);
    }

    .main-nav.open ul li:last-child { border-bottom: 0; }

    .main-nav.open a {
        display: block;
        padding: 0.85rem 0;
    }

    .hero { padding-top: 1rem; }
    .hero-grid { padding: 1.5rem 1.25rem 2.5rem; gap: 2rem; }
    .hero h1 { font-size: 2rem; }
    .hero-sub { font-size: 1rem; }

    .hero-ctas .btn { width: 100%; }
    .hero-ctas { flex-direction: column; }

    .float-badge.top-left { top: 0; left: 0; font-size: 0.75rem; padding: 0.6rem 0.75rem; }
    .float-badge.bottom-right { bottom: 0; right: 0; font-size: 0.75rem; padding: 0.6rem 0.75rem; }
    .float-icon { width: 26px; height: 26px; font-size: 0.95rem; }

    .summary-card {
        grid-template-columns: 1fr;
        padding: 1.25rem;
    }

    .summary-list {
        grid-template-columns: 1fr;
        gap: 0.2rem;
    }

    .summary-list dt {
        border-bottom: 0;
        padding-bottom: 0.1rem;
        font-size: 0.82rem;
        color: var(--color-text-muted);
        text-transform: uppercase;
        letter-spacing: 0.05em;
    }

    .summary-list dd {
        padding-bottom: 0.8rem;
        margin-bottom: 0.2rem;
    }

    .summary-left { min-height: 200px; }

    .grid-3 { grid-template-columns: 1fr; }
    .grid-4 { grid-template-columns: 1fr; }
    .ingredients-grid { grid-template-columns: 1fr; }
    .usage-steps { grid-template-columns: 1fr; }
    .reviews-grid { grid-template-columns: 1fr; }
    .target-grid { grid-template-columns: repeat(2, 1fr); }
    .trust-grid { grid-template-columns: 1fr; }

    .trust-item { justify-content: flex-start; }

    .sheet-row {
        grid-template-columns: 1fr;
        gap: 4px;
        padding: 0.85rem 1rem;
    }

    .sheet-label {
        font-size: 0.78rem;
        text-transform: uppercase;
        letter-spacing: 0.05em;
        color: var(--color-text-muted);
    }

    .table-wrapper { padding: 1rem; }

    .data-table thead th,
    .data-table tbody td {
        padding: 0.65rem 0.5rem;
        font-size: 0.85rem;
    }

    .footer-grid { grid-template-columns: 1fr; gap: 1.5rem; }

    .final-cta-inner { padding: 1.75rem 1.25rem; }

    .purchase-card { padding: 1.75rem 1.25rem; }
    .purchase-visual img { max-width: 220px; }

    .sticky-cta-mobile { display: block; }

    .cookie-banner { left: 0.5rem; right: 0.5rem; bottom: 0.5rem; padding: 0.85rem; }
    .cookie-banner.visible ~ body,
    body.has-cookie-banner { padding-bottom: 160px; }

    .review-head { flex-wrap: wrap; }
    .review-head .stars { margin-left: 0; width: 100%; }

    .modal { max-height: 90vh; }

    .logo-text { font-size: 1rem; }
}

@media (max-width: 480px) {
    .target-grid { grid-template-columns: 1fr; }
    .badges li { font-size: 0.78rem; padding: 0.3rem 0.7rem; }
    .hero-product { max-width: 280px; margin: 0 auto; }
}

/* --------------------------------------------------------------------------
   Accessibility — focus visible
   -------------------------------------------------------------------------- */
a:focus-visible,
button:focus-visible,
summary:focus-visible,
.btn:focus-visible {
    outline: 3px solid rgba(247, 31, 28, 0.4);
    outline-offset: 3px;
}

/* Reduce motion */
@media (prefers-reduced-motion: reduce) {
    *, *::before, *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
        scroll-behavior: auto !important;
    }
}
