/* ================================================================
   ZE SEO Theme — main.css
   CSS complet basé sur le design system de ze-seo.fr
   ================================================================ */

/* ── CSS Custom Properties ──────────────────────────── */
:root {
    --pq-white: #ffffff;
    --pq-off: #fafaf8;
    --pq-off2: #f4f2ee;
    --pq-ink: #141210;
    --pq-ink2: #2a2520;
    --pq-muted: #7a7168;
    --pq-border: rgba(20, 18, 16, 0.1);
    --pq-border2: rgba(20, 18, 16, 0.06);
    --pq-teal: #0d7c6e;
    --pq-teal-dark: #0a6459;
    --pq-teal-light: #e6f5f2;
    --pq-font-display: 'Playfair Display', Georgia, serif;
    --pq-font-body: 'Epilogue', -apple-system, BlinkMacSystemFont, sans-serif;
}

/* ── Gutenberg block overrides ───────────────────────── */

/* Make inner-container transparent to layout */
.wp-block-group__inner-container {
    display: contents !important;
}

/* ── RESET: kill WP layout defaults (zero specificity) ── */

/* :where() = zero specificity, so our .ez-* margins override naturally */
:where([class*="is-layout-"]) > * {
    margin-top: 0;
    margin-bottom: 0;
}

:where([class*="is-layout-"]) {
    gap: 0;
}

/* Remove WP flex layout on columns — we control layout */
[class*="wp-container-core-columns"] {
    display: grid !important;
}

/* Reset block margins/padding — :where() for zero specificity */
:where(.wp-block-group),
:where(.wp-block-columns),
:where(.wp-block-column),
:where(.wp-block-buttons),
:where(.wp-block-button),
:where(.wp-block-image),
:where(.wp-block-quote),
:where(.wp-block-heading),
:where(figure.wp-block-image) {
    margin: 0;
    padding: 0;
    max-width: none;
    box-sizing: border-box;
}

/* wp-block-column: reset WP flex defaults */
.wp-block-column {
    flex-basis: auto !important;
    flex-grow: 1 !important;
    min-width: 0 !important;
}

/* Remove WP default button styles */
.wp-block-button__link.wp-element-button {
    all: unset;
    cursor: pointer;
    display: inline-block;
}

/* ── Gutenberg columns → our grid layouts ───────────── */
.wp-block-columns.ez-pourqui__grid {
    display: grid !important;
    grid-template-columns: repeat(3, 1fr) !important;
    gap: 1.5rem !important;
}

.wp-block-columns.ez-why__grid {
    display: grid !important;
    grid-template-columns: 1fr 1fr !important;
    gap: 5vw !important;
}

.wp-block-columns.ez-process__grid {
    display: grid !important;
    grid-template-columns: 1fr 1fr !important;
    gap: 5vw !important;
}

.wp-block-columns.ez-faq__cols {
    display: grid !important;
    grid-template-columns: 1fr 1fr !important;
    gap: 0 4rem !important;
}

.wp-block-columns.ez-livrables__header {
    display: grid !important;
    grid-template-columns: 1fr 1fr !important;
    gap: 4rem !important;
    align-items: end !important;
}

/* ── Fix p tags used as UI elements ─────────────────── */
p.ez-process__circle {
    width: 48px !important;
    height: 48px !important;
    border-radius: 50% !important;
    background: var(--pq-off) !important;
    border: 2px solid var(--pq-teal) !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    font-family: var(--pq-font-display) !important;
    font-weight: 700 !important;
    font-size: 0.95rem !important;
    color: var(--pq-teal) !important;
    flex-shrink: 0 !important;
    position: relative !important;
    z-index: 1 !important;
    margin: 0 !important;
    padding: 0 !important;
    line-height: 1 !important;
}

p.ez-livrables__num {
    font-family: var(--pq-font-display) !important;
    font-size: 2rem !important;
    font-weight: 700 !important;
    color: rgba(20, 18, 16, 0.1) !important;
    line-height: 1 !important;
    margin: 0 !important;
}

p.ez-livrables__tag,
p.ez-livrables__tag.ez-livrables__tag--new {
    margin: 0 !important;
    align-self: center;
}

p.ez-s-label {
    margin-bottom: 0.8rem;
}

/* Restore key element spacing killed by reset */
.ez-hero__eyebrow { margin-bottom: 2rem; }
.ez-hero__h1 { margin-bottom: 1.2rem; }
.ez-hero__h2 { margin-bottom: 2rem; }
.ez-hero__sub { margin-bottom: 2.5rem; }
.ez-hero__proof-inline { margin-top: 2rem; }
.ez-constat__lead { margin: 1.2rem 0 2rem; }
.ez-pourqui__intro { margin: 0.8rem 0 3rem; }
.ez-livrables__header { margin-bottom: 3.5rem; }
.ez-why__grid { margin-top: 3.5rem; }
.ez-process__grid { margin-top: 3.5rem; }
.ez-faq__cols { margin-top: 3.5rem; }
.ez-s-h2 { margin-bottom: 0; }

p.ez-pq-card__tag {
    margin: 0 !important;
    align-self: flex-start !important;
}

p.ez-process__when {
    margin-top: 0.5rem !important;
}

p.ez-why__arg-icon {
    width: 42px !important;
    height: 42px !important;
    border-radius: 10px !important;
    background: var(--pq-teal-light) !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    font-size: 1.1rem !important;
    flex-shrink: 0 !important;
    margin: 0 !important;
    padding: 0 !important;
    line-height: 1 !important;
}

/* ── Responsive overrides for columns ───────────────── */
@media (max-width: 900px) {
    .wp-block-columns.ez-pourqui__grid,
    .wp-block-columns.ez-why__grid,
    .wp-block-columns.ez-process__grid,
    .wp-block-columns.ez-faq__cols,
    .wp-block-columns.ez-livrables__header {
        grid-template-columns: 1fr !important;
    }

    .wp-block-column {
        flex-basis: 100% !important;
    }
}

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

html {
    scroll-behavior: smooth;
    -webkit-text-size-adjust: 100%;
}

body {
    font-family: var(--pq-font-body);
    font-weight: 400;
    font-size: 16px;
    line-height: 1.7;
    color: var(--pq-ink);
    background-color: var(--pq-white);
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

body.ez-no-scroll {
    overflow: hidden;
}

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

a {
    color: var(--pq-teal);
    text-decoration: none;
    transition: color 0.2s ease;
}

a:hover {
    color: var(--pq-teal-dark);
    text-decoration: none;
}

h1, h2, h3, h4, h5, h6 {
    font-family: var(--pq-font-display);
    font-weight: 700;
    line-height: 1.25;
    color: var(--pq-ink);
}

p + p {
    margin-top: 1em;
}

ul, ol {
    list-style: none;
}

/* ── Animations ─────────────────────────────────────── */
@keyframes ez-blink {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.35; }
}

@keyframes ez-cta-pulse {
    0%, 100% {
        transform: translate(-50%, -50%) scale(1);
        opacity: 0.6;
    }
    50% {
        transform: translate(-50%, -50%) scale(1.15);
        opacity: 1;
    }
}

/* ================================================================
   COMPOSANTS PARTAGÉS
   ================================================================ */

/* ── Section label ──────────────────────────────────── */
.ez-s-label {
    font-family: var(--pq-font-body);
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--pq-teal);
    margin-bottom: 0.8rem;
}

/* ── Section heading ────────────────────────────────── */
.ez-s-h2 {
    font-family: var(--pq-font-display);
    font-size: clamp(2rem, 3vw, 2.8rem);
    font-weight: 700;
    line-height: 1.18;
    color: var(--pq-ink);
}

.ez-s-h2 em {
    font-style: italic;
    color: var(--pq-teal);
}

/* ── Section CTA ────────────────────────────────────── */
.ez-section-cta {
    text-align: center;
    margin-top: 3rem;
    grid-column: 1 / -1;
}

.ez-section-cta__btn {
    display: inline-block;
    background: transparent;
    color: var(--pq-teal) !important;
    font-family: var(--pq-font-body);
    font-size: 0.9rem;
    font-weight: 700;
    padding: 0.85rem 2rem;
    border-radius: 10px;
    border: 1.5px solid var(--pq-teal);
    text-decoration: none;
    transition: background 0.2s ease, color 0.2s ease, transform 0.15s ease;
}

.ez-section-cta__btn:hover {
    background: var(--pq-teal);
    color: #ffffff !important;
    transform: translateY(-1px);
    text-decoration: none;
}

/* ================================================================
   HEADER
   ================================================================ */
.ez-header {
    position: sticky;
    top: 0;
    z-index: 1000;
    background-color: var(--pq-white);
    transition: box-shadow 0.3s ease;
    font-family: var(--pq-font-body);
}

.ez-header--scrolled {
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.08);
}

.ez-header--hidden {
    transform: translateY(-100%);
}

.ez-header {
    transition: box-shadow 0.3s ease, transform 0.3s ease;
}

.ez-header__inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 5vw;
    height: 72px;
}

.ez-header__brand {
    display: flex;
    flex-direction: column;
    text-decoration: none;
    gap: 0;
}

.ez-header__logo {
    font-family: var(--pq-font-display);
    font-weight: 700;
    font-size: 1.5rem;
    color: var(--pq-ink);
    line-height: 1.1;
    letter-spacing: 0.02em;
}

.ez-header__logo-img {
    height: 40px;
    width: auto;
    display: block;
}

.ez-header__tagline {
    font-family: var(--pq-font-body);
    font-size: 0.7rem;
    font-weight: 500;
    color: var(--pq-muted);
    line-height: 1.2;
}

.ez-header__menu {
    display: flex;
    gap: 32px;
    align-items: center;
}

.ez-header__link {
    font-family: var(--pq-font-body);
    font-size: 0.9rem;
    font-weight: 500;
    color: var(--pq-ink);
    text-decoration: none;
    position: relative;
    padding-block: 4px;
    transition: color 0.2s ease;
}

.ez-header__link::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 0;
    height: 2px;
    background-color: var(--pq-teal);
    transition: width 0.3s ease;
}

.ez-header__link:hover,
.ez-header__link--active,
.current-menu-item > a {
    color: var(--pq-teal);
}

.ez-header__link:hover::after,
.ez-header__link--active::after,
.current-menu-item > a::after {
    width: 100%;
}

/* WordPress nav menu items */
.ez-header__menu .menu-item a {
    font-family: var(--pq-font-body);
    font-size: 0.9rem;
    font-weight: 500;
    color: var(--pq-ink);
    text-decoration: none;
    position: relative;
    padding-block: 4px;
    transition: color 0.2s ease;
}

.ez-header__menu .menu-item a::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 0;
    height: 2px;
    background-color: var(--pq-teal);
    transition: width 0.3s ease;
}

.ez-header__menu .menu-item a:hover,
.ez-header__menu .current-menu-item a {
    color: var(--pq-teal);
}

.ez-header__menu .menu-item a:hover::after,
.ez-header__menu .current-menu-item a::after {
    width: 100%;
}

/* Hamburger */
.ez-header__burger {
    display: none;
    flex-direction: column;
    justify-content: center;
    gap: 5px;
    width: 32px;
    height: 32px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0;
    z-index: 1001;
}

.ez-header__burger-line {
    display: block;
    width: 24px;
    height: 2px;
    background-color: var(--pq-ink);
    border-radius: 2px;
    transition: transform 0.3s ease, opacity 0.3s ease;
}

.ez-header__burger--active .ez-header__burger-line:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
}

.ez-header__burger--active .ez-header__burger-line:nth-child(2) {
    opacity: 0;
}

.ez-header__burger--active .ez-header__burger-line:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
}

/* ================================================================
   FOOTER
   ================================================================ */
.ez-footer {
    padding: 2.5rem 5vw;
    background: var(--pq-ink);
    font-family: var(--pq-font-body);
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 1rem;
}

.ez-footer__brand {
    font-family: var(--pq-font-display);
    font-size: 1rem;
    font-weight: 700;
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
}

.ez-footer__copy {
    font-size: 0.74rem;
    color: rgba(255, 255, 255, 0.25);
}

.ez-footer__link {
    font-size: 0.74rem;
    font-weight: 700;
    color: #6ee7d8;
    text-decoration: none;
    transition: text-decoration 0.2s ease;
}

.ez-footer__link:hover {
    text-decoration: underline;
}

/* ================================================================
   HERO
   ================================================================ */
.ez-hero {
    min-height: 100vh;
    background: var(--pq-white);
    font-family: var(--pq-font-body);
    color: var(--pq-ink);
    display: grid !important;
    grid-template-columns: 1fr 1fr;
    gap: 4vw;
    align-items: center;
    padding: 0 5vw 6rem;
    position: relative;
    overflow: hidden;
}

.ez-hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(var(--pq-border2) 1px, transparent 1px),
        linear-gradient(90deg, var(--pq-border2) 1px, transparent 1px);
    background-size: 64px 64px;
    pointer-events: none;
}

.ez-hero::after {
    content: '';
    position: absolute;
    bottom: -25%;
    right: -8%;
    width: 700px;
    height: 700px;
    border-radius: 50%;
    background: radial-gradient(ellipse, rgba(13, 124, 110, 0.07) 0%, transparent 65%);
    pointer-events: none;
}

.ez-hero__left {
    position: relative;
    z-index: 1;
}

.ez-hero__eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 0.6rem;
    font-size: 0.74rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--pq-muted);
    margin-bottom: 2rem;
}

.ez-hero__pulse {
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: var(--pq-teal);
    animation: ez-blink 2s infinite;
}

.ez-hero__h1 {
    font-family: var(--pq-font-display);
    font-size: clamp(2.8rem, 4.8vw, 5rem);
    font-weight: 700;
    line-height: 1.08;
    color: var(--pq-ink);
    margin-bottom: 1.2rem;
}

.ez-hero__h1 em {
    font-style: italic;
    color: var(--pq-teal);
}

.ez-hero__h2 {
    font-size: 1.05rem;
    line-height: 1.75;
    color: var(--pq-muted);
    max-width: 56ch;
    margin-bottom: 2rem;
    font-weight: 300;
}

.ez-hero__h2 strong {
    color: var(--pq-ink);
    font-weight: 700;
}

.ez-hero__sub {
    font-size: 1rem;
    line-height: 1.82;
    color: var(--pq-muted);
    max-width: 54ch;
    margin-bottom: 2.5rem;
    font-weight: 300;
}

.ez-hero__sub strong {
    color: var(--pq-ink);
    font-weight: 700;
}

.ez-hero__actions {
    display: flex !important;
    align-items: center;
    gap: 2rem;
    flex-wrap: wrap;
}

.ez-hero__btn {
    display: inline-block;
    background: var(--pq-teal);
    color: #ffffff !important;
    font-family: var(--pq-font-body);
    font-size: 0.95rem;
    font-weight: 700;
    letter-spacing: 0.02em;
    padding: 1.05rem 2.4rem;
    border-radius: 10px;
    border: none;
    text-decoration: none;
    cursor: pointer;
    box-shadow: 0 4px 18px rgba(13, 124, 110, 0.25);
    transition: background 0.2s ease, transform 0.15s ease, box-shadow 0.2s ease;
}

.ez-hero__btn:hover,
.ez-hero__btn:focus {
    background: var(--pq-teal-dark);
    color: #ffffff !important;
    transform: translateY(-2px);
    box-shadow: 0 8px 32px rgba(13, 124, 110, 0.35);
    text-decoration: none;
}

.ez-hero__btn:active {
    transform: translateY(0);
    box-shadow: 0 2px 10px rgba(13, 124, 110, 0.2);
}

.ez-hero__ghost {
    font-family: var(--pq-font-body);
    font-size: 0.9rem;
    font-weight: 500;
    color: var(--pq-muted);
    text-decoration: none;
    border-bottom: 1px solid var(--pq-border);
    padding-bottom: 2px;
    transition: color 0.2s ease, border-color 0.2s ease;
}

.ez-hero__ghost:hover {
    color: var(--pq-ink);
    border-color: var(--pq-ink);
}

.ez-hero__proof-inline {
    display: flex !important;
    align-items: center;
    gap: 0.6rem;
    margin-top: 2rem;
}

.ez-hero__stars {
    color: #f59e0b;
    font-size: 1.1rem;
    letter-spacing: 2px;
    line-height: 1;
}

.ez-hero__proof-label {
    font-size: 0.74rem;
    color: var(--pq-muted);
}

.ez-hero__photo {
    position: relative;
    z-index: 1;
    display: flex !important;
    align-items: flex-end;
    justify-content: center;
}

.ez-hero__photo img {
    display: block;
    width: 100%;
    max-width: 520px;
    height: auto;
    object-fit: contain;
    object-position: bottom;
}

.ez-hero__photo::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 120px;
    background: linear-gradient(to bottom, rgba(255, 255, 255, 0) 0%, var(--pq-white) 100%);
    pointer-events: none;
}

/* ================================================================
   CONSTAT
   ================================================================ */
.ez-constat {
    padding: 2rem 5vw;
    background: var(--pq-off);
    font-family: var(--pq-font-body);
    color: var(--pq-ink);
    display: grid !important;
    grid-template-columns: 1fr 1fr;
    column-gap: 6vw;
    align-items: start;
}

.ez-constat__lead {
    font-size: 0.97rem;
    line-height: 1.82;
    color: var(--pq-muted);
    margin: 1.2rem 0 2rem;
    font-weight: 300;
}

.ez-constat__lead strong {
    color: var(--pq-ink);
    font-weight: 700;
}

.ez-constat__pains {
    display: flex !important;
    flex-direction: column;
}

.ez-constat__pain {
    display: flex !important;
    align-items: flex-start;
    gap: 1rem;
    padding: 1rem 0;
    border-bottom: 1px solid var(--pq-border2);
}

.ez-constat__pain:last-child {
    border-bottom: none;
}

.ez-constat__pain-icon {
    font-size: 1.15rem;
    flex-shrink: 0;
    margin-top: 2px;
}

.ez-constat__pain-title {
    font-size: 0.9rem;
    font-weight: 700;
    color: var(--pq-ink);
    margin-bottom: 0.2rem;
}

.ez-constat__pain-text {
    font-size: 0.82rem;
    line-height: 1.65;
    color: var(--pq-muted);
}

.ez-constat__aside {
    background: var(--pq-ink);
    border-radius: 20px;
    padding: 2.5rem;
    position: relative;
    overflow: hidden;
}

.ez-constat__aside::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--pq-teal), #6ee7d8);
}

.ez-constat__quote-label {
    font-family: var(--pq-font-body);
    font-size: 0.68rem;
    font-weight: 700;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.3);
    margin-bottom: 1.2rem;
}

.ez-constat__quote {
    font-family: var(--pq-font-display);
    font-size: 1.2rem;
    font-style: italic;
    color: var(--pq-white);
    line-height: 1.65;
    margin-bottom: 2rem;
}

.ez-constat__risk-title {
    font-family: var(--pq-font-body);
    font-size: 0.7rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.3);
    margin-bottom: 0.9rem;
    padding-top: 1.5rem;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.ez-constat__risk {
    display: flex !important;
    align-items: flex-start;
    gap: 0.7rem;
    margin-bottom: 0.75rem;
}

.ez-constat__risk-dot {
    width: 5px;
    height: 5px;
    border-radius: 50%;
    background: #ef4444;
    flex-shrink: 0;
    margin-top: 6px;
}

.ez-constat__risk-text {
    font-size: 0.84rem;
    color: rgba(255, 255, 255, 0.55);
    line-height: 1.55;
}

.ez-constat__risk-text strong {
    color: var(--pq-white);
    font-weight: 700;
}

/* ================================================================
   POUR QUI
   ================================================================ */
.ez-pourqui {
    padding: 2rem 5vw;
    background: var(--pq-white);
    font-family: var(--pq-font-body);
    color: var(--pq-ink);
}

.ez-pourqui__intro {
    font-size: 0.97rem;
    color: var(--pq-muted);
    margin: 0.8rem 0 3rem;
    font-weight: 300;
    line-height: 1.6;
}

.ez-pourqui__grid {
    display: grid !important;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
}

.ez-pq-card {
    border: 1.5px solid var(--pq-border);
    border-radius: 18px;
    padding: 2rem;
    background: var(--pq-white);
    display: flex !important;
    flex-direction: column;
    gap: 1rem;
    transition: border-color 0.25s ease, box-shadow 0.25s ease;
}

.ez-pq-card:hover {
    border-color: var(--pq-teal);
    box-shadow: 0 6px 28px rgba(13, 124, 110, 0.09);
}

.ez-pq-card__tag {
    font-size: 0.68rem;
    font-weight: 700;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: var(--pq-teal);
    background: var(--pq-teal-light);
    display: inline-flex;
    padding: 0.28rem 0.8rem;
    border-radius: 999px;
    align-self: flex-start;
}

.ez-pq-card__title {
    font-family: var(--pq-font-display);
    font-size: 1.1rem;
    font-weight: 700;
    line-height: 1.3;
    color: var(--pq-ink);
}

.ez-pq-card__hook {
    font-size: 0.84rem;
    font-style: italic;
    line-height: 1.6;
    color: var(--pq-muted);
    border-left: 2px solid var(--pq-teal);
    padding-left: 0.8rem;
}

.ez-pq-card__pains {
    display: flex !important;
    flex-direction: column;
    gap: 0.55rem;
}

.ez-pq-card__pain {
    font-size: 0.83rem;
    line-height: 1.55;
    color: var(--pq-muted);
    display: flex !important;
    gap: 0.5rem;
}

.ez-pq-card__arrow {
    color: var(--pq-teal);
    flex-shrink: 0;
    font-style: normal;
}

.ez-pq-card__outcome {
    font-size: 0.84rem;
    line-height: 1.65;
    color: var(--pq-ink2);
    background: var(--pq-off);
    border-radius: 10px;
    padding: 0.85rem 1rem;
    margin-top: auto;
}

.ez-pq-card__outcome strong {
    color: var(--pq-teal);
    font-weight: 700;
}

/* ================================================================
   LIVRABLES
   ================================================================ */
.ez-livrables {
    padding: 2rem 5vw;
    background: var(--pq-white);
    font-family: var(--pq-font-body);
    color: var(--pq-ink);
}

.ez-livrables__header {
    display: grid !important;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: end;
    margin-bottom: 3.5rem;
}

.ez-livrables__sub {
    font-size: 0.95rem;
    line-height: 1.82;
    color: var(--pq-muted);
    align-self: end;
}

.ez-livrables__list {
    display: flex !important;
    flex-direction: column;
}

.ez-livrables__row {
    display: grid !important;
    grid-template-columns: 52px 1fr auto;
    align-items: center;
    gap: 1.8rem;
    padding: 1.4rem 1rem;
    border-radius: 10px;
    border-bottom: 1px solid var(--pq-border2);
    transition: background 0.2s ease, padding-left 0.2s ease;
    cursor: default;
}

.ez-livrables__row:last-child {
    border-bottom: none;
}

@media (hover: hover) {
    .ez-livrables__row:hover {
        background: var(--pq-off);
        padding-left: 1.5rem;
    }

    .ez-livrables__row:hover .ez-livrables__num {
        color: var(--pq-teal);
    }
}

.ez-livrables__num {
    font-family: var(--pq-font-display);
    font-size: 2rem;
    font-weight: 700;
    color: rgba(20, 18, 16, 0.1);
    line-height: 1;
    transition: color 0.2s ease;
}

.ez-livrables__name {
    font-size: 0.92rem;
    font-weight: 700;
    color: var(--pq-ink);
    margin-bottom: 0.25rem;
}

.ez-livrables__desc {
    font-size: 0.82rem;
    line-height: 1.6;
    color: var(--pq-muted);
}

.ez-livrables__tag {
    font-size: 0.67rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--pq-teal);
    background: var(--pq-teal-light);
    padding: 0.28rem 0.75rem;
    border-radius: 999px;
    white-space: nowrap;
}

.ez-livrables__tag--new {
    color: #d97706;
    background: #fef3c7;
}

/* ================================================================
   POURQUOI MOI (WHY)
   ================================================================ */
.ez-why {
    padding: 2rem 5vw;
    background: var(--pq-off);
    font-family: var(--pq-font-body);
    color: var(--pq-ink);
}

.ez-why__grid {
    display: grid !important;
    grid-template-columns: 1fr 1fr;
    gap: 5vw;
    align-items: start;
    margin-top: 3.5rem;
}

.ez-why__photo {
    border-radius: 20px;
    overflow: hidden;
    aspect-ratio: 4/3;
    background: var(--pq-ink2);
    position: relative;
}

.ez-why__photo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.ez-why__badge {
    position: absolute;
    bottom: 1.2rem;
    left: 1.2rem;
    background: rgba(255, 255, 255, 0.95);
    border-radius: 12px;
    padding: 0.75rem 1.1rem;
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    box-shadow: 0 4px 20px rgba(20, 18, 16, 0.12);
}

.ez-why__badge-big {
    font-family: var(--pq-font-display);
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--pq-ink);
    line-height: 1;
}

.ez-why__badge-small {
    font-size: 0.72rem;
    color: var(--pq-muted);
    font-weight: 500;
}

.ez-why__args {
    display: flex !important;
    flex-direction: column;
    gap: 1.8rem;
}

.ez-why__arg {
    display: flex !important;
    align-items: flex-start;
    gap: 1rem;
}

.ez-why__arg-icon {
    width: 42px;
    height: 42px;
    border-radius: 10px;
    background: var(--pq-teal-light);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.1rem;
    flex-shrink: 0;
}

.ez-why__arg-title {
    font-size: 0.92rem;
    font-weight: 700;
    color: var(--pq-ink);
    margin-bottom: 0.3rem;
}

.ez-why__arg-text {
    font-size: 0.84rem;
    line-height: 1.7;
    color: var(--pq-muted);
}

.ez-why__arg-text strong {
    color: var(--pq-ink);
    font-weight: 700;
}

/* ================================================================
   PROCESS
   ================================================================ */
.ez-process {
    padding: 2rem 5vw;
    background: var(--pq-off);
    font-family: var(--pq-font-body);
    color: var(--pq-ink);
}

.ez-process__grid {
    display: grid !important;
    grid-template-columns: 1fr 1fr;
    gap: 5vw;
    margin-top: 3.5rem;
}

.ez-process__steps {
    display: flex !important;
    flex-direction: column;
    position: relative;
}

.ez-process__steps::before {
    content: '';
    position: absolute;
    left: 23px;
    top: 24px;
    bottom: 24px;
    width: 2px;
    background: linear-gradient(to bottom, var(--pq-teal), rgba(13, 124, 110, 0.1));
}

.ez-process__step {
    display: grid !important;
    grid-template-columns: 48px 1fr;
    gap: 1.4rem;
    padding: 1.4rem 0;
}

.ez-process__circle {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: var(--pq-off);
    border: 2px solid var(--pq-teal);
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--pq-font-display);
    font-weight: 700;
    font-size: 0.95rem;
    color: var(--pq-teal);
    flex-shrink: 0;
    position: relative;
    z-index: 1;
}

.ez-process__content {
    padding-top: 0.5rem;
}

.ez-process__title {
    font-size: 0.92rem;
    font-weight: 700;
    color: var(--pq-ink);
    margin-bottom: 0.3rem;
}

.ez-process__text {
    font-size: 0.83rem;
    line-height: 1.7;
    color: var(--pq-muted);
}

.ez-process__when {
    display: inline-block;
    margin-top: 0.5rem;
    font-size: 0.7rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--pq-teal);
    background: var(--pq-teal-light);
    padding: 0.2rem 0.65rem;
    border-radius: 999px;
}

/* ================================================================
   OFFER (carte sticky)
   ================================================================ */
.ez-offer {
    background: var(--pq-ink);
    border-radius: 20px;
    overflow: hidden;
    position: sticky;
    top: 6rem;
}

.ez-offer__top {
    background: var(--pq-ink2);
    padding: 2rem 2rem 1.5rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.07);
    position: relative;
}

.ez-offer__top::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--pq-teal), #6ee7d8);
}

.ez-offer__eyebrow {
    font-size: 0.68rem;
    font-weight: 700;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.55);
    margin-bottom: 0.5rem;
}

.ez-offer__title {
    font-family: var(--pq-font-display);
    font-size: 1.4rem;
    font-weight: 700;
    color: var(--pq-white);
    line-height: 1.3;
    margin-bottom: 1.2rem;
}

.ez-offer__price {
    font-family: var(--pq-font-display);
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--pq-white);
}

.ez-offer__price-note {
    font-size: 0.73rem;
    color: rgba(255, 255, 255, 0.5);
    margin-top: 0.3rem;
}

.ez-offer__body {
    padding: 1.5rem 2rem;
}

.ez-offer__includes {
    display: flex;
    flex-direction: column;
    gap: 0.6rem;
    margin-bottom: 1.8rem;
}

.ez-offer__inc {
    display: flex;
    align-items: center;
    gap: 0.65rem;
    font-size: 0.84rem;
    color: rgba(255, 255, 255, 0.78);
}

.ez-offer__check {
    color: #4ade80;
    flex-shrink: 0;
    font-size: 0.9rem;
}

.ez-offer__divider {
    height: 1px;
    background: rgba(255, 255, 255, 0.07);
    margin-bottom: 1.5rem;
}

.ez-offer__cta {
    display: block;
    text-align: center;
    background: #6ee7d8;
    color: var(--pq-ink) !important;
    font-family: var(--pq-font-body);
    font-size: 0.92rem;
    font-weight: 700;
    padding: 1rem;
    border-radius: 10px;
    text-decoration: none;
    transition: opacity 0.2s ease, transform 0.15s ease;
}

.ez-offer__cta:hover {
    opacity: 0.88;
    transform: translateY(-1px);
    color: var(--pq-ink) !important;
    text-decoration: none;
}

.ez-offer__micros {
    display: flex;
    justify-content: center;
    gap: 1.1rem;
    flex-wrap: wrap;
    margin-top: 0.75rem;
}

.ez-offer__micro {
    font-size: 0.71rem;
    color: rgba(255, 255, 255, 0.5);
    display: flex;
    align-items: center;
    gap: 0.3rem;
}

.ez-offer__micro-check {
    color: #4ade80;
    font-size: 0.7rem;
}

/* ================================================================
   FAQ
   ================================================================ */
.ez-faq {
    padding: 2rem 5vw;
    background: var(--pq-white);
    font-family: var(--pq-font-body);
    color: var(--pq-ink);
}

.ez-faq__cols {
    display: grid !important;
    grid-template-columns: 1fr 1fr;
    gap: 0 4rem;
    margin-top: 3.5rem;
}

.ez-faq__item {
    border-bottom: 1px solid var(--pq-border);
    padding: 1.4rem 0;
}

.ez-faq__q {
    font-size: 0.92rem;
    font-weight: 700;
    color: var(--pq-ink);
    margin-bottom: 0.55rem;
    display: flex;
    align-items: flex-start;
    gap: 0.5rem;
}

.ez-faq__q::before {
    content: '↳';
    color: var(--pq-teal);
    flex-shrink: 0;
    font-size: 0.85rem;
    margin-top: 1px;
}

.ez-faq__a {
    font-size: 0.84rem;
    line-height: 1.75;
    color: var(--pq-muted);
    padding-left: 1.3rem;
}

.ez-faq__a strong {
    color: var(--pq-ink);
    font-weight: 700;
}

/* ================================================================
   CTA FINAL
   ================================================================ */
.ez-finalcta {
    padding: 9rem 5vw;
    text-align: center;
    background: var(--pq-off2);
    font-family: var(--pq-font-body);
    color: var(--pq-ink);
    position: relative;
    overflow: hidden;
}

.ez-finalcta::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--pq-teal), #6ee7d8, var(--pq-teal));
}

.ez-finalcta::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 600px;
    height: 600px;
    border-radius: 50%;
    background: radial-gradient(ellipse, rgba(13, 124, 110, 0.06) 0%, transparent 70%);
    transform: translate(-50%, -50%);
    animation: ez-cta-pulse 4s ease-in-out infinite;
    pointer-events: none;
}

.ez-finalcta__inner {
    position: relative;
    z-index: 1;
}

.ez-finalcta__h2 {
    font-family: var(--pq-font-display);
    font-size: clamp(2.4rem, 4.2vw, 4.2rem);
    font-weight: 700;
    color: var(--pq-ink);
    line-height: 1.12;
    margin-bottom: 1.2rem;
}

.ez-finalcta__h2 em {
    font-style: italic;
    color: var(--pq-teal);
}

.ez-finalcta__sub {
    font-size: 1rem;
    color: var(--pq-muted);
    max-width: 52ch;
    margin: 0 auto 2.5rem;
    line-height: 1.82;
    font-weight: 300;
}

.ez-finalcta__sub strong {
    color: var(--pq-ink);
    font-weight: 700;
}

.ez-finalcta__btn {
    display: inline-flex;
    align-items: center;
    gap: 0.8rem;
    background: var(--pq-teal);
    color: #ffffff !important;
    font-family: var(--pq-font-body);
    font-size: 1rem;
    font-weight: 700;
    padding: 1.1rem 2.6rem;
    border-radius: 12px;
    text-decoration: none;
    box-shadow: 0 6px 28px rgba(13, 124, 110, 0.22);
    transition: transform 0.15s ease, box-shadow 0.2s ease, background 0.2s ease;
}

.ez-finalcta__btn:hover {
    background: var(--pq-teal-dark);
    color: #ffffff !important;
    transform: translateY(-2px);
    box-shadow: 0 10px 40px rgba(13, 124, 110, 0.32);
    text-decoration: none;
}

.ez-finalcta__trust {
    display: flex !important;
    align-items: center;
    justify-content: center;
    gap: 2rem;
    flex-wrap: wrap;
    margin-top: 2rem;
}

.ez-finalcta__trust-item {
    font-size: 0.8rem;
    color: var(--pq-muted);
    display: flex;
    align-items: center;
    gap: 0.4rem;
}

.ez-finalcta__trust-check {
    color: var(--pq-teal);
    font-size: 0.85rem;
}

/* ================================================================
   ENTRY CONTENT (pages WP génériques)
   ================================================================ */
.ez-entry-content h2 {
    margin-top: 40px;
    margin-bottom: 16px;
}

.ez-entry-content h3 {
    margin-top: 32px;
    margin-bottom: 12px;
}

.ez-entry-content p {
    margin-bottom: 16px;
    line-height: 1.7;
}

.ez-entry-content ul,
.ez-entry-content ol {
    margin-bottom: 16px;
    padding-left: 24px;
}

.ez-entry-content ul {
    list-style: disc;
}

.ez-entry-content ol {
    list-style: decimal;
}

.ez-entry-content li {
    margin-bottom: 6px;
    line-height: 1.6;
}

/* ================================================================
   RESPONSIVE — 1100px
   ================================================================ */
@media (max-width: 1100px) {
    .ez-hero {
        grid-template-columns: 1fr;
        min-height: auto;
        padding-bottom: 4rem;
    }

    .ez-hero__photo {
        max-width: 400px;
        margin: 0 auto;
    }
}

/* ================================================================
   RESPONSIVE — 900px
   ================================================================ */
@media (max-width: 900px) {
    .ez-section-cta {
        margin-top: 2rem;
    }

    .ez-constat {
        grid-template-columns: 1fr;
        padding: 2rem 6vw;
    }

    .ez-pourqui {
        padding: 2rem 6vw;
    }

    .ez-pourqui__grid {
        grid-template-columns: 1fr;
        gap: 1.25rem;
    }

    .ez-livrables {
        padding: 2rem 6vw;
    }

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

    .ez-why__grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .ez-why {
        padding: 2rem 6vw;
    }

    .ez-process__grid {
        grid-template-columns: 1fr;
        gap: 2.5rem;
    }

    .ez-offer {
        position: static;
    }

    .ez-process {
        padding: 2rem 6vw;
    }

    .ez-faq__cols {
        grid-template-columns: 1fr;
    }

    .ez-faq {
        padding: 2rem 6vw;
    }

    .ez-finalcta {
        padding: 6rem 6vw;
    }

    /* Mobile nav */
    .ez-header__burger {
        display: flex;
    }

    .ez-header__nav {
        position: fixed;
        inset: 0;
        background-color: var(--pq-white);
        display: flex;
        align-items: center;
        justify-content: center;
        opacity: 0;
        visibility: hidden;
        transition: opacity 0.3s ease, visibility 0.3s ease;
        z-index: 1000;
    }

    .ez-header__nav--open {
        opacity: 1;
        visibility: visible;
    }

    .ez-header__menu {
        flex-direction: column;
        gap: 40px;
    }

    .ez-header__link {
        font-size: 1.5rem;
        font-weight: 600;
    }
}

/* ================================================================
   RESPONSIVE — 600px
   ================================================================ */
@media (max-width: 600px) {
    .ez-hero {
        padding: 0 5vw 4rem;
    }

    .ez-hero__actions {
        flex-direction: column;
        align-items: flex-start;
        gap: 1.2rem;
    }

    .ez-constat {
        padding: 2rem 5vw;
    }

    .ez-constat__aside {
        padding: 1.8rem;
    }

    .ez-pourqui {
        padding: 2rem 5vw;
    }

    .ez-pq-card {
        padding: 1.5rem;
    }

    .ez-why {
        padding: 2rem 5vw;
    }

    .ez-process {
        padding: 2rem 5vw;
    }

    .ez-offer__body {
        padding: 1.5rem;
    }

    .ez-offer__top {
        padding: 1.5rem;
    }

    .ez-faq {
        padding: 2rem 5vw;
    }

    .ez-finalcta {
        padding: 5rem 5vw;
    }

    .ez-finalcta__trust {
        gap: 1rem;
    }

    .ez-footer {
        flex-direction: column;
        text-align: center;
        align-items: center;
    }

    .ez-livrables__row {
        grid-template-columns: 40px 1fr;
        gap: 1rem;
    }

    .ez-livrables__tag,
    .ez-livrables__tag--new {
        display: none;
    }
}
