/* ================================================================
 * CEV Widgets — ATLEG Design System
 * ================================================================ */

:root {
    --cev-primary: #04611D;
    --cev-secondary: #51B048;
    --cev-light: #eaf5ec;
    --cev-bg-soft: #f8faf8;
    --cev-text: #111827;
    --cev-muted: #4b5563;
    --cev-white: #ffffff;
    --cev-border: rgba(4, 97, 29, .10);
    --cev-border-hover: rgba(81, 176, 72, .45);
    --cev-serif: 'Cormorant Garamond', Georgia, serif;
    --cev-sans: 'DM Sans', system-ui, -apple-system, sans-serif;
    --cev-em-color: #51B048;
    --cev-hero-em-color: #b8f0a8;
    --cev-shadow-card: 0 1px 3px rgba(0, 0, 0, .08), 0 1px 2px rgba(0, 0, 0, .05);
    --cev-shadow-hover: 0 12px 32px rgba(4, 97, 29, .14), 0 2px 8px rgba(0, 0, 0, .06);
    --cev-container: 1240px;
    --cev-radius-card: 20px;
    --cev-radius-sm: 16px;
}

/* ── Reset minimal ───────────────────────────────────── */
[class^="cev-"], [class*=" cev-"] {
    box-sizing: border-box;
}
[class^="cev-"] *,
[class*=" cev-"] * {
    box-sizing: border-box;
}

/* ── Container & sections ─────────────────────────────── */
.cev-container {
    max-width: var(--cev-container);
    margin: 0 auto;
    padding: 0 20px;
}

.cev-section,
[class$="-section"][class*="cev-"] {
    font-family: var(--cev-sans);
    color: var(--cev-text);
}
:where(.cev-section),
:where([class$="-section"][class*="cev-"]) {
    padding: 96px 0;
}
:where(.cev-section--sm) { padding: 56px 0; }
.cev-section--soft,
.cev-bg-light { background: var(--cev-bg-soft); }
.cev-bg-white { background: var(--cev-white); }

@media (max-width: 768px) {
    :where(.cev-section),
    :where([class$="-section"][class*="cev-"]) { padding: 64px 0; }
    :where(.cev-section--sm) { padding: 36px 0; }
}

/* ── Section header ───────────────────────────────────── */
.cev-section-header {
    max-width: var(--cev-container);
    margin: 0 auto 56px;
    padding: 0 20px;
    text-align: center;
}

.cev-section-label {
    display: inline-flex;
    align-items: center;
    font-family: var(--cev-sans);
    font-size: 13px;
    font-weight: 700;
    letter-spacing: .14em;
    text-transform: uppercase;
    color: var(--cev-primary);
    margin: 0 0 18px;
}
.cev-section-label::before {
    content: "";
    display: inline-block;
    width: 24px;
    height: 2px;
    background: var(--cev-secondary);
    margin-right: 10px;
}

.cev-section-h2 {
    font-family: var(--cev-serif);
    font-weight: 700;
    font-size: clamp(38px, 5vw, 54px);
    line-height: 1.15;
    letter-spacing: -.01em;
    color: var(--cev-text);
    margin: 0 0 20px;
}
.cev-section-h2 em {
    font-style: italic;
    font-weight: 700;
    color: var(--cev-em-color);
    font-size: clamp(40px, 5.4vw, 58px);
}

.cev-section-intro {
    font-family: var(--cev-sans);
    font-size: 19px;
    line-height: 1.75;
    color: var(--cev-muted);
    max-width: 640px;
    margin: 0 auto;
}

/* ── Badges ───────────────────────────────────────────── */
.cev-badge-pill {
    display: inline-block;
    font-family: var(--cev-sans);
    font-size: 11px;
    font-weight: 700;
    letter-spacing: .1em;
    text-transform: uppercase;
    padding: 8px 16px;
    border-radius: 999px;
    background: rgba(255, 255, 255, .12);
    color: var(--cev-white);
    border: 1px solid rgba(255, 255, 255, .35);
    -webkit-backdrop-filter: blur(6px);
    backdrop-filter: blur(6px);
    margin-bottom: 24px;
}

.cev-badge-agrement {
    background: rgba(81, 176, 72, .18);
    color: #b9f3b0;
    border-color: rgba(81, 176, 72, .45);
}

.cev-badge-light {
    background: var(--cev-light);
    color: var(--cev-primary);
    border-color: rgba(4, 97, 29, .25);
}

/* ── Buttons ──────────────────────────────────────────── */
.cev-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-family: var(--cev-sans);
    font-weight: 800;
    font-size: 13px;
    letter-spacing: .08em;
    text-transform: uppercase;
    text-decoration: none;
    border-radius: 999px;
    padding: 16px 32px;
    border: 2px solid transparent;
    cursor: pointer;
    transition: all .25s ease;
    line-height: 1;
}
.cev-btn:hover { transform: translateY(-3px); }
.cev-btn .cev-btn-arrow { transition: transform .25s ease; }
.cev-btn:hover .cev-btn-arrow { transform: translateX(2px); }

.cev-btn--primary {
    background: var(--cev-primary);
    color: var(--cev-white);
    box-shadow: 0 6px 18px rgba(4, 97, 29, .30);
}
.cev-btn--primary:hover {
    background: var(--cev-secondary);
    color: var(--cev-white);
    box-shadow: 0 12px 28px rgba(81, 176, 72, .42);
}

.cev-btn--outline {
    background: transparent;
    color: var(--cev-primary);
    border-color: var(--cev-primary);
}
.cev-btn--outline:hover {
    background: var(--cev-primary);
    color: var(--cev-white);
}

.cev-btn--outline-light {
    background: transparent;
    color: var(--cev-white);
    border-color: rgba(255, 255, 255, .7);
}
.cev-btn--outline-light:hover {
    background: var(--cev-white);
    color: var(--cev-primary);
}

/* ── Grids ────────────────────────────────────────────── */
.cev-grid {
    display: grid;
    gap: 28px;
    max-width: var(--cev-container);
    margin: 0 auto;
    padding: 0 20px;
}
.cev-cols-2 { grid-template-columns: repeat(2, 1fr); }
.cev-cols-3 { grid-template-columns: repeat(3, 1fr); }
.cev-cols-4 { grid-template-columns: repeat(4, 1fr); }
@media (max-width: 1024px) {
    .cev-cols-3, .cev-cols-4 { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 640px) {
    .cev-cols-2, .cev-cols-3, .cev-cols-4 { grid-template-columns: 1fr; }
}

/* ── Animate / scroll reveal ──────────────────────────── */
.cev-animate {
    opacity: 0;
    transform: translateY(24px);
    transition: opacity .8s ease, transform .8s ease;
    will-change: opacity, transform;
}
.cev-animate.cev-visible {
    opacity: 1;
    transform: none;
}

/* ===============================================================
 * HERO
 * =============================================================== */
.cev-hero {
    position: relative;
    background-size: cover;
    background-position: center;
    color: var(--cev-white);
    overflow: hidden;
}
:where(.cev-hero) { padding: 92px 0 100px; }
.cev-hero.cev-parallax { background-attachment: fixed; }
@media (max-width: 1024px) {
    .cev-hero.cev-parallax { background-attachment: scroll; }
}
.cev-hero-overlay {
    position: absolute; inset: 0;
    z-index: 1;
    background: rgba(2, 30, 8, .70);
}
.cev-hero-inner {
    position: relative;
    z-index: 2;
    max-width: var(--cev-container);
    margin: 0 auto;
    padding: 0 20px;
    text-align: center;
}
.cev-hero-title {
    font-family: var(--cev-serif);
    font-weight: 600;
    font-size: clamp(42px, 5.6vw, 62px);
    line-height: 1.1;
    letter-spacing: -.015em;
    max-width: 880px;
    margin: 0 auto 22px;
    color: var(--cev-white);
    text-shadow: 0 2px 20px rgba(0, 0, 0, .35);
}
.cev-hero-title em {
    font-style: italic;
    font-weight: 700;
    color: var(--cev-hero-em-color);
}
.cev-hero-desc {
    font-family: var(--cev-sans);
    font-size: 19px;
    line-height: 1.7;
    color: rgba(255, 255, 255, .88);
    max-width: 640px;
    margin: 0 auto 36px;
}
.cev-hero-btns {
    display: flex;
    gap: 16px;
    justify-content: center;
    flex-wrap: wrap;
}
@media (max-width: 768px) {
    :where(.cev-hero) { padding: 72px 0 80px; }
}

/* ===============================================================
 * BIG NUMBER (légalité)
 * =============================================================== */
:where(.cev-bignumber-section) { padding: 96px 0; }
.cev-bignumber-section {
    background: var(--cev-bg-soft);
}
.cev-bignumber-section.cev-bg-white { background: var(--cev-white); }
.cev-bignumber-content {
    max-width: 720px;
    margin: 0 auto;
    padding: 0 20px;
    text-align: center;
}
.cev-bignumber-num {
    font-family: var(--cev-serif);
    font-weight: 600;
    font-size: clamp(64px, 10vw, 96px);
    line-height: 1;
    color: var(--cev-primary);
    letter-spacing: -.03em;
    margin: 0 0 10px;
}
.cev-bignumber-ref {
    font-family: var(--cev-sans);
    font-size: 12px;
    font-weight: 700;
    letter-spacing: .18em;
    text-transform: uppercase;
    color: var(--cev-secondary);
    margin: 0 0 28px;
}
.cev-bignumber-title {
    font-family: var(--cev-serif);
    font-weight: 700;
    font-size: 30px;
    color: var(--cev-text);
    margin: 0 0 16px;
}
.cev-bignumber-body p {
    font-family: var(--cev-sans);
    font-size: 17px;
    line-height: 1.8;
    color: var(--cev-muted);
    margin: 0;
}
.cev-bignumber-body p + p { margin-top: 18px; }
.cev-bignumber-body strong { color: var(--cev-primary); font-weight: 600; }

/* ===============================================================
 * MISSION GRID (objet social)
 * =============================================================== */
:where(.cev-mission-section) { padding: 96px 0; }
@media (max-width: 768px) { :where(.cev-mission-section) { padding: 64px 0; } }

.cev-mission-card {
    background: var(--cev-white);
    border: 1px solid var(--cev-border);
    border-radius: var(--cev-radius-card);
    padding: 28px;
    box-shadow: var(--cev-shadow-card);
    transition: all .3s ease;
}
.cev-mission-card:hover {
    transform: translateY(-4px);
    border-color: var(--cev-border-hover);
    box-shadow: var(--cev-shadow-hover);
}
.cev-mission-icon {
    width: 54px;
    height: 54px;
    border-radius: 12px;
    background: linear-gradient(135deg, #eaf5ec, #d8efd2);
    color: var(--cev-primary);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 18px;
    font-size: 22px;
}
.cev-mission-icon svg,
.cev-mission-icon i { color: var(--cev-primary); }
.cev-mission-icon svg { stroke: currentColor; }
.cev-mission-card h3 {
    font-family: var(--cev-serif);
    font-weight: 700;
    font-size: 24px;
    line-height: 1.25;
    color: var(--cev-text);
    margin: 0 0 12px;
}
.cev-mission-card p {
    font-family: var(--cev-sans);
    font-size: 15px;
    line-height: 1.7;
    color: var(--cev-muted);
    margin: 0;
}

/* ===============================================================
 * APPROCHE GRID
 * =============================================================== */
:where(.cev-approche-section) { padding: 96px 0; }
.cev-approche-section {
    background: var(--cev-bg-soft);
}
@media (max-width: 768px) { :where(.cev-approche-section) { padding: 64px 0; } }

.cev-approche-card {
    background: var(--cev-white);
    border: 1px solid var(--cev-border);
    border-radius: var(--cev-radius-card);
    padding: 32px 24px;
    text-align: center;
    box-shadow: var(--cev-shadow-card);
    transition: all .3s ease;
}
.cev-approche-card:hover {
    transform: translateY(-4px);
    border-color: var(--cev-border-hover);
    box-shadow: var(--cev-shadow-hover);
}
.cev-approche-icon {
    width: 64px;
    height: 64px;
    border-radius: 50%;
    background: linear-gradient(135deg, #eaf5ec, #d8efd2);
    color: var(--cev-primary);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 22px;
    font-size: 24px;
}
.cev-approche-icon svg,
.cev-approche-icon i { color: var(--cev-primary); }
.cev-approche-icon svg { stroke: currentColor; }
.cev-approche-card h3 {
    font-family: var(--cev-serif);
    font-weight: 700;
    font-size: 22px;
    color: var(--cev-text);
    margin: 0 0 12px;
}
.cev-approche-card p {
    font-family: var(--cev-sans);
    font-size: 15px;
    line-height: 1.7;
    color: var(--cev-muted);
    margin: 0;
}

/* ===============================================================
 * TIMELINE (zigzag desktop, vertical mobile)
 * =============================================================== */
:where(.cev-timeline-section) { padding: 96px 0; }
@media (max-width: 768px) { :where(.cev-timeline-section) { padding: 64px 0; } }

.cev-timeline {
    position: relative;
    max-width: 960px;
    margin: 0 auto;
    padding: 0 20px;
}

.cev-timeline::before {
    content: "";
    position: absolute;
    left: 50%;
    top: 0;
    bottom: 0;
    width: 1px;
    background: #c8e6cd;
    transform: translateX(-50%);
}
.cev-timeline-dashed::before {
    background: repeating-linear-gradient(
        to bottom,
        #c8e6cd 0,
        #c8e6cd 6px,
        transparent 6px,
        transparent 12px
    );
}

.cev-timeline-item {
    position: relative;
    display: grid;
    grid-template-columns: 1fr 48px 1fr;
    align-items: center;
    gap: 32px;
    margin-bottom: 56px;
}
.cev-timeline-item:last-child { margin-bottom: 0; }

.cev-timeline-content {
    background: var(--cev-white);
    border: 1px solid var(--cev-border);
    border-radius: var(--cev-radius-card);
    padding: 24px 28px;
    box-shadow: var(--cev-shadow-card);
    transition: all .3s ease;
}
.cev-timeline-content:hover {
    border-color: var(--cev-border-hover);
    box-shadow: var(--cev-shadow-hover);
    transform: translateY(-3px);
}

.cev-timeline-spacer { display: block; }

.cev-timeline-item:nth-child(even) .cev-timeline-content {
    grid-column: 3;
    order: 3;
}
.cev-timeline-item:nth-child(even) .cev-timeline-spacer {
    grid-column: 1;
    order: 1;
}
.cev-timeline-item:nth-child(odd) .cev-timeline-content {
    grid-column: 1;
    order: 1;
    text-align: right;
}
.cev-timeline-item:nth-child(odd) .cev-timeline-spacer {
    grid-column: 3;
    order: 3;
}

.cev-timeline-dot {
    grid-column: 2;
    order: 2;
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: var(--cev-primary);
    border: 4px solid var(--cev-white);
    box-shadow: 0 0 0 2px var(--cev-primary), 0 4px 12px rgba(4, 97, 29, .25);
    justify-self: center;
    z-index: 2;
}
.cev-timeline-item.cev-dot-gold .cev-timeline-dot {
    background: #d4a418;
    box-shadow: 0 0 0 2px #d4a418, 0 4px 12px rgba(212, 164, 24, .25);
}

.cev-timeline-icon {
    width: 36px;
    height: 36px;
    border-radius: 8px;
    background: var(--cev-light);
    color: var(--cev-primary);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 12px;
}

.cev-timeline-date {
    font-family: var(--cev-sans);
    font-size: 12px;
    font-weight: 700;
    letter-spacing: .14em;
    text-transform: uppercase;
    color: var(--cev-secondary);
    margin: 0 0 10px;
}
.cev-timeline-title {
    font-family: var(--cev-serif);
    font-weight: 700;
    font-size: 28px;
    line-height: 1.25;
    color: var(--cev-text);
    margin: 0 0 10px;
}
.cev-timeline-desc {
    font-family: var(--cev-sans);
    font-size: 16px;
    line-height: 1.75;
    color: var(--cev-muted);
    margin: 0;
}

@media (max-width: 768px) {
    .cev-timeline { padding-left: 48px; }
    .cev-timeline::before {
        left: 22px;
        transform: none;
    }
    .cev-timeline-item {
        grid-template-columns: 1fr;
        gap: 0;
        margin-bottom: 32px;
    }
    .cev-timeline-item:nth-child(odd) .cev-timeline-content,
    .cev-timeline-item:nth-child(even) .cev-timeline-content {
        grid-column: 1;
        order: 1;
        text-align: left;
    }
    .cev-timeline-spacer { display: none; }
    .cev-timeline-dot {
        position: absolute;
        left: -48px;
        top: 8px;
        width: 36px;
        height: 36px;
    }
}

/* ===============================================================
 * CTA BANNER (light gradient + dark image variants)
 * =============================================================== */
:where(.cev-cta-banner) { padding: 96px 0; }
.cev-cta-banner {
    position: relative;
    overflow: hidden;
    background: linear-gradient(135deg, #f4faf5, #f8faf8);
    color: var(--cev-text);
}
.cev-cta-banner.cev-cta-dark {
    background-color: var(--cev-primary);
    background-size: cover;
    background-position: center;
    color: var(--cev-white);
}
.cev-cta-banner.cev-parallax { background-attachment: fixed; }
@media (max-width: 1024px) {
    .cev-cta-banner.cev-parallax { background-attachment: scroll; }
}
.cev-cta-banner.cev-cta-dark {
    background-color: #023d12;
}
.cev-cta-banner.cev-cta-dark::before {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(rgba(2, 30, 8, .78), rgba(2, 30, 8, .86));
}
.cev-cta-inner {
    position: relative;
    z-index: 2;
    max-width: 880px;
    margin: 0 auto;
    padding: 0 20px;
    text-align: center;
}
.cev-cta-title {
    font-family: var(--cev-serif);
    font-weight: 700;
    font-size: clamp(36px, 5vw, 54px);
    line-height: 1.15;
    letter-spacing: -.01em;
    margin: 0 0 20px;
}
.cev-cta-banner:not(.cev-cta-dark) .cev-cta-title { color: var(--cev-text); }
.cev-cta-banner.cev-cta-dark .cev-cta-title { color: var(--cev-white); }
.cev-cta-title em {
    font-style: italic;
    color: var(--cev-em-color);
}
.cev-cta-banner.cev-cta-dark .cev-cta-title em { color: #b8f0a8; }
.cev-cta-desc {
    font-family: var(--cev-sans);
    font-size: 18px;
    line-height: 1.7;
    margin: 0 auto 32px;
    max-width: 640px;
}
.cev-cta-banner:not(.cev-cta-dark) .cev-cta-desc { color: var(--cev-muted); }
.cev-cta-banner.cev-cta-dark .cev-cta-desc { color: rgba(255, 255, 255, .85); }
.cev-cta-btns {
    display: flex;
    gap: 16px;
    justify-content: center;
    flex-wrap: wrap;
}
@media (max-width: 768px) {
    :where(.cev-cta-banner) { padding: 64px 0; }
}

/* ===============================================================
 * FEATURED SPLIT (image / text)
 * =============================================================== */
:where(.cev-featured-section) { padding: 96px 0; }
@media (max-width: 768px) { :where(.cev-featured-section) { padding: 64px 0; } }

.cev-featured-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 72px;
    align-items: center;
    max-width: var(--cev-container);
    margin: 0 auto;
    padding: 0 20px;
}
.cev-featured-grid.cev-image-right .cev-featured-image { order: 2; }
.cev-featured-grid.cev-image-right .cev-featured-text { order: 1; }
@media (max-width: 900px) {
    .cev-featured-grid { grid-template-columns: 1fr; gap: 40px; }
    .cev-featured-grid.cev-image-right .cev-featured-image { order: 0; }
    .cev-featured-grid.cev-image-right .cev-featured-text { order: 1; }
}

.cev-featured-image {
    position: relative;
    aspect-ratio: 4 / 5;
    border-radius: 24px;
    overflow: hidden;
    box-shadow: 0 30px 60px -22px rgba(4, 97, 29, .4);
    /* Prevent grid/flex parents from stretching the box and breaking aspect-ratio. */
    align-self: center;
    justify-self: center;
    width: 100%;
}
.cev-featured-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    /* Border-radius is on the wrap (which already clips via overflow:hidden). */
}
.cev-featured-image::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, transparent 60%, rgba(4, 97, 29, .18));
    pointer-events: none;
    border-radius: 24px;
}

.cev-featured-text .cev-section-label {
    margin-bottom: 14px;
}
.cev-featured-text .cev-section-h2 {
    font-size: clamp(32px, 4vw, 44px);
    margin: 0 0 20px;
}
.cev-featured-text .cev-section-h2 em {
    font-size: clamp(34px, 4.4vw, 48px);
}
.cev-featured-intro {
    font-family: var(--cev-sans);
    font-size: 17px;
    line-height: 1.75;
    color: var(--cev-muted);
    margin: 0 0 24px;
}

.cev-feature-list {
    list-style: none;
    padding: 0;
    margin: 0 0 32px;
}
.cev-feature-list li {
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 14px 0;
    border-bottom: 1px solid rgba(4, 97, 29, .08);
    font-family: var(--cev-sans);
    font-size: 16px;
    font-weight: 500;
    color: var(--cev-text);
}
.cev-feature-list li:last-child { border-bottom: 0; }
.cev-feature-list .cev-check {
    flex-shrink: 0;
    width: 26px;
    height: 26px;
    border-radius: 50%;
    background: var(--cev-light);
    color: var(--cev-primary);
    padding: 4px;
}

.cev-featured-btns {
    display: flex;
    gap: 14px;
    flex-wrap: wrap;
}

.cev-featured-section .cev-section-header {
    text-align: left;
    margin: 0 0 24px;
    padding: 0;
}
.cev-featured-section .cev-section-header .cev-section-intro { margin: 0; }

/* ===============================================================
 * SERVICES GRID
 * =============================================================== */
:where(.cev-services-section) { padding: 96px 0; }
@media (max-width: 768px) { :where(.cev-services-section) { padding: 64px 0; } }

.cev-service-card {
    background: var(--cev-white);
    border: 1px solid var(--cev-border);
    border-radius: var(--cev-radius-card);
    overflow: hidden;
    box-shadow: var(--cev-shadow-card);
    transition: all .3s ease;
    display: flex;
    flex-direction: column;
}
.cev-service-card:hover {
    transform: translateY(-4px);
    border-color: var(--cev-border-hover);
    box-shadow: var(--cev-shadow-hover);
}

.cev-service-media {
    position: relative;
    aspect-ratio: 16 / 10;
    overflow: hidden;
    background: var(--cev-light);
    align-self: start;
    width: 100%;
}
.cev-service-media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform .8s ease;
}
.cev-service-media::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, transparent 50%, rgba(2, 30, 8, .55));
    pointer-events: none;
}
.cev-service-card:hover .cev-service-media img { transform: scale(1.06); }

.cev-service-tag {
    position: absolute;
    top: 16px;
    left: 16px;
    z-index: 2;
    background: rgba(255, 255, 255, .92);
    color: var(--cev-primary);
    font-family: var(--cev-sans);
    font-size: 11px;
    font-weight: 800;
    letter-spacing: .12em;
    text-transform: uppercase;
    padding: 6px 14px;
    border-radius: 999px;
    backdrop-filter: blur(4px);
    -webkit-backdrop-filter: blur(4px);
}

.cev-service-icon-fab {
    /* Positionné en flow normal hors du media : margin négatif top pour
       chevaucher la jointure media/body, margin-left auto pour aligner à droite.
       Cette approche évite tout clipping par overflow:hidden parents. */
    position: relative;
    z-index: 2;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 56px;
    height: 56px;
    margin: -28px 20px 0 auto;
    border-radius: 50%;
    background: var(--cev-primary);
    color: var(--cev-white);
    font-size: 20px;
    box-shadow: 0 8px 22px rgba(4, 97, 29, .4);
    transition: background .25s ease;
}
.cev-service-icon-fab svg,
.cev-service-icon-fab i { color: var(--cev-white); }
.cev-service-card:hover .cev-service-icon-fab { background: var(--cev-secondary); }

.cev-service-body {
    padding: 36px 28px 28px;
    flex: 1;
    display: flex;
    flex-direction: column;
}
.cev-service-body h3 {
    font-family: var(--cev-serif);
    font-weight: 700;
    font-size: 26px;
    line-height: 1.25;
    color: var(--cev-text);
    margin: 0 0 12px;
}
.cev-service-body p {
    font-family: var(--cev-sans);
    font-size: 15px;
    line-height: 1.75;
    color: var(--cev-muted);
    margin: 0 0 20px;
    flex: 1;
}

.cev-service-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-family: var(--cev-sans);
    font-size: 13px;
    font-weight: 800;
    letter-spacing: .08em;
    text-transform: uppercase;
    color: var(--cev-primary);
    text-decoration: none;
    transition: gap .25s ease, color .25s ease;
}
.cev-service-link:hover {
    gap: 14px;
    color: var(--cev-secondary);
}

.cev-icon-card {
    background: var(--cev-white);
    border: 1px solid var(--cev-border);
    border-radius: var(--cev-radius-card);
    padding: 28px;
    box-shadow: var(--cev-shadow-card);
    transition: all .3s ease;
}
.cev-icon-card:hover {
    transform: translateY(-4px);
    border-color: var(--cev-border-hover);
    box-shadow: var(--cev-shadow-hover);
}
.cev-icon-card-centered { text-align: center; padding: 32px 24px; }
.cev-icon-card h3 {
    font-family: var(--cev-serif);
    font-weight: 700;
    font-size: 22px;
    color: var(--cev-text);
    margin: 0 0 12px;
}
.cev-icon-card p {
    font-family: var(--cev-sans);
    font-size: 15px;
    line-height: 1.7;
    color: var(--cev-muted);
    margin: 0;
}
.cev-icon-card-icon {
    width: 54px;
    height: 54px;
    background: linear-gradient(135deg, var(--cev-primary), var(--cev-secondary));
    color: var(--cev-white);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
    font-size: 22px;
}
.cev-icon-card-centered .cev-icon-card-icon { margin-left: auto; margin-right: auto; display: flex; }
.cev-icon-shape-square { border-radius: 12px; }
.cev-icon-shape-circle { border-radius: 50%; }
.cev-icon-card-icon svg,
.cev-icon-card-icon i { color: var(--cev-white); }

/* ===============================================================
 * PROCESS STEPS
 * =============================================================== */
:where(.cev-process-section) { padding: 96px 0; }
@media (max-width: 768px) { :where(.cev-process-section) { padding: 64px 0; } }

.cev-step-card {
    position: relative;
    background: var(--cev-white);
    border: 1px solid var(--cev-border);
    border-radius: var(--cev-radius-card);
    padding: 36px 26px 28px;
    box-shadow: var(--cev-shadow-card);
    transition: all .3s ease;
    margin-top: 22px;
}
.cev-step-card:hover {
    transform: translateY(-4px);
    border-color: var(--cev-border-hover);
    box-shadow: var(--cev-shadow-hover);
}
.cev-step-num {
    position: absolute;
    top: -22px;
    left: 26px;
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: var(--cev-secondary);
    color: var(--cev-white);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-family: var(--cev-serif);
    font-weight: 700;
    font-size: 22px;
    box-shadow: 0 8px 18px rgba(81, 176, 72, .4);
}
.cev-step-icon {
    color: var(--cev-primary);
    font-size: 22px;
    margin-bottom: 12px;
}
.cev-step-title {
    font-family: var(--cev-serif);
    font-weight: 700;
    font-size: 22px;
    color: var(--cev-text);
    margin: 8px 0 10px;
}
.cev-step-desc {
    font-family: var(--cev-sans);
    font-size: 15px;
    line-height: 1.7;
    color: var(--cev-muted);
    margin: 0;
}

/* ===============================================================
 * STATS
 * =============================================================== */
:where(.cev-stats-section) { padding: 80px 0; }
.cev-stats-section.cev-bg-light { background: var(--cev-bg-soft); }
.cev-stats-section.cev-bg-primary { background: var(--cev-primary); color: var(--cev-white); }
.cev-stats-section.cev-bg-primary .cev-stat-num { color: var(--cev-white); }
.cev-stats-section.cev-bg-primary .cev-stat-num em { color: #b8f0a8; }
.cev-stats-section.cev-bg-primary .cev-stat-label { color: rgba(255, 255, 255, .85); }

.cev-stat { text-align: center; }
.cev-stat-num {
    font-family: var(--cev-serif);
    font-weight: 700;
    font-size: clamp(48px, 6vw, 72px);
    line-height: 1;
    color: var(--cev-primary);
    letter-spacing: -.02em;
    margin: 0 0 8px;
}
.cev-stat-num em {
    font-style: normal;
    color: var(--cev-em-color);
    font-size: .8em;
    margin-left: 2px;
}
.cev-stat-label {
    font-family: var(--cev-sans);
    font-size: 13px;
    font-weight: 700;
    letter-spacing: .12em;
    text-transform: uppercase;
    color: var(--cev-muted);
    margin: 0;
}

/* ===============================================================
 * FAQ ACCORDION
 * =============================================================== */
:where(.cev-faq-section) { padding: 96px 0; }
@media (max-width: 768px) { :where(.cev-faq-section) { padding: 64px 0; } }
.cev-faq-list {
    max-width: 800px;
    margin: 0 auto;
    padding: 0 20px;
}
.cev-faq-item {
    background: var(--cev-white);
    border: 1px solid var(--cev-border);
    border-radius: var(--cev-radius-sm);
    margin-bottom: 12px;
    transition: all .25s ease;
    overflow: hidden;
}
.cev-faq-item:hover { border-color: var(--cev-border-hover); }
.cev-faq-item.cev-faq-open {
    border-color: var(--cev-primary);
    box-shadow: var(--cev-shadow-hover);
}
.cev-faq-question {
    width: 100%;
    padding: 22px 24px;
    background: transparent;
    border: 0;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    font-family: var(--cev-serif);
    font-weight: 700;
    font-size: 19px;
    color: var(--cev-text);
    text-align: left;
}
.cev-faq-chevron {
    flex-shrink: 0;
    width: 20px;
    height: 20px;
    color: var(--cev-primary);
    transition: transform .25s ease;
}
.cev-faq-item.cev-faq-open .cev-faq-chevron { transform: rotate(180deg); }
.cev-faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height .35s ease;
}
.cev-faq-answer-inner {
    padding: 0 24px 22px;
    font-family: var(--cev-sans);
    font-size: 16px;
    line-height: 1.75;
    color: var(--cev-muted);
}

/* ===============================================================
 * TESTIMONIALS
 * =============================================================== */
:where(.cev-testimonials-section) { padding: 96px 0; }
@media (max-width: 768px) { :where(.cev-testimonials-section) { padding: 64px 0; } }

.cev-testimonial-card {
    background: var(--cev-white);
    border: 1px solid var(--cev-border);
    border-radius: var(--cev-radius-card);
    padding: 28px;
    box-shadow: var(--cev-shadow-card);
    transition: all .3s ease;
    display: flex;
    flex-direction: column;
}
.cev-testimonial-card:hover {
    transform: translateY(-4px);
    border-color: var(--cev-border-hover);
    box-shadow: var(--cev-shadow-hover);
}
.cev-testimonial-stars {
    display: inline-flex;
    gap: 4px;
    color: #d4a418;
    margin-bottom: 16px;
}
.cev-testimonial-stars svg { width: 18px; height: 18px; }
.cev-testimonial-stars .cev-star-empty { color: rgba(0, 0, 0, .12); }
.cev-testimonial-text {
    font-family: var(--cev-serif);
    font-weight: 500;
    font-style: italic;
    font-size: 18px;
    line-height: 1.6;
    color: var(--cev-text);
    margin: 0 0 22px;
    flex: 1;
}
.cev-testimonial-author {
    display: flex;
    align-items: center;
    gap: 14px;
    border-top: 1px solid var(--cev-border);
    padding-top: 18px;
}
.cev-testimonial-avatar,
.cev-testimonial-avatar-placeholder {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    object-fit: cover;
    background: var(--cev-light);
    color: var(--cev-primary);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-family: var(--cev-sans);
    font-weight: 700;
    font-size: 16px;
    flex-shrink: 0;
}
.cev-testimonial-name {
    font-family: var(--cev-sans);
    font-weight: 700;
    font-size: 15px;
    color: var(--cev-text);
    margin: 0;
}
.cev-testimonial-role {
    font-family: var(--cev-sans);
    font-size: 13px;
    color: var(--cev-muted);
    margin: 2px 0 0;
}

/* ===============================================================
 * PRICING
 * =============================================================== */
:where(.cev-pricing-section) { padding: 96px 0; }
@media (max-width: 768px) { :where(.cev-pricing-section) { padding: 64px 0; } }

.cev-pricing-card {
    position: relative;
    background: var(--cev-white);
    border: 1px solid var(--cev-border);
    border-radius: var(--cev-radius-card);
    padding: 36px 28px;
    box-shadow: var(--cev-shadow-card);
    transition: all .3s ease;
    text-align: center;
    display: flex;
    flex-direction: column;
}
.cev-pricing-card:hover {
    transform: translateY(-4px);
    border-color: var(--cev-border-hover);
    box-shadow: var(--cev-shadow-hover);
}
.cev-pricing-featured {
    border-color: var(--cev-primary);
    box-shadow: var(--cev-shadow-hover);
}
.cev-pricing-badge {
    position: absolute;
    top: -14px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--cev-primary);
    color: var(--cev-white);
    font-family: var(--cev-sans);
    font-size: 11px;
    font-weight: 700;
    letter-spacing: .1em;
    text-transform: uppercase;
    padding: 6px 14px;
    border-radius: 999px;
}
.cev-pricing-name {
    font-family: var(--cev-serif);
    font-weight: 700;
    font-size: 24px;
    color: var(--cev-text);
    margin: 0 0 6px;
}
.cev-pricing-desc {
    font-family: var(--cev-sans);
    font-size: 14px;
    color: var(--cev-muted);
    margin: 0 0 20px;
}
.cev-pricing-price {
    font-family: var(--cev-serif);
    font-weight: 700;
    font-size: clamp(40px, 5vw, 56px);
    color: var(--cev-primary);
    margin: 0;
    line-height: 1;
}
.cev-pricing-period {
    font-family: var(--cev-sans);
    font-size: 14px;
    color: var(--cev-muted);
    margin: 4px 0 24px;
}
.cev-pricing-features {
    list-style: none;
    padding: 0;
    margin: 0 0 28px;
    text-align: left;
    flex: 1;
}
.cev-pricing-features li {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 8px 0;
    font-family: var(--cev-sans);
    font-size: 15px;
    color: var(--cev-text);
}
.cev-pricing-features .cev-check {
    flex-shrink: 0;
    color: var(--cev-primary);
}
.cev-pricing-card .cev-btn { align-self: center; }

/* ===============================================================
 * TEAM
 * =============================================================== */
:where(.cev-team-section) { padding: 96px 0; }
@media (max-width: 768px) { :where(.cev-team-section) { padding: 64px 0; } }

.cev-team-card {
    background: var(--cev-white);
    border: 1px solid var(--cev-border);
    border-radius: var(--cev-radius-card);
    padding: 28px 24px;
    text-align: center;
    box-shadow: var(--cev-shadow-card);
    transition: all .3s ease;
}
.cev-team-card:hover {
    transform: translateY(-4px);
    border-color: var(--cev-border-hover);
    box-shadow: var(--cev-shadow-hover);
}
.cev-team-photo {
    width: 120px;
    height: 120px;
    border-radius: 50%;
    object-fit: cover;
    margin: 0 auto 18px;
    display: block;
    border: 4px solid var(--cev-light);
}
.cev-team-name {
    font-family: var(--cev-serif);
    font-weight: 700;
    font-size: 22px;
    color: var(--cev-text);
    margin: 0 0 4px;
}
.cev-team-role {
    font-family: var(--cev-sans);
    font-size: 13px;
    font-weight: 700;
    letter-spacing: .12em;
    text-transform: uppercase;
    color: var(--cev-primary);
    margin: 0 0 16px;
}
.cev-team-socials {
    display: inline-flex;
    gap: 10px;
    justify-content: center;
}
.cev-team-socials a {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: var(--cev-light);
    color: var(--cev-primary);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    transition: all .25s ease;
}
.cev-team-socials a:hover {
    background: var(--cev-primary);
    color: var(--cev-white);
}

/* ===============================================================
 * CONTACT INFO
 * =============================================================== */
:where(.cev-contact-section) { padding: 96px 0; }
@media (max-width: 768px) { :where(.cev-contact-section) { padding: 64px 0; } }

.cev-contact-card {
    background: var(--cev-white);
    border: 1px solid var(--cev-border);
    border-radius: var(--cev-radius-card);
    padding: 32px 24px;
    text-align: center;
    box-shadow: var(--cev-shadow-card);
    transition: all .3s ease;
}
.cev-contact-card:hover {
    transform: translateY(-4px);
    border-color: var(--cev-border-hover);
    box-shadow: var(--cev-shadow-hover);
}
.cev-contact-icon {
    width: 64px;
    height: 64px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--cev-primary), var(--cev-secondary));
    color: var(--cev-white);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 18px;
    font-size: 22px;
}
.cev-contact-icon svg,
.cev-contact-icon i { color: var(--cev-white); }
.cev-contact-title {
    font-family: var(--cev-serif);
    font-weight: 700;
    font-size: 22px;
    color: var(--cev-text);
    margin: 0 0 8px;
}
.cev-contact-text {
    font-family: var(--cev-sans);
    font-size: 14px;
    color: var(--cev-muted);
    margin: 0 0 14px;
}
.cev-contact-link {
    font-family: var(--cev-sans);
    font-weight: 700;
    font-size: 15px;
    color: var(--cev-primary);
    text-decoration: none;
}
.cev-contact-link:hover { color: var(--cev-secondary); }

/* ===============================================================
 * GALLERY PORTFOLIO
 * =============================================================== */
:where(.cev-gallery-section) { padding: 96px 0; }
@media (max-width: 768px) { :where(.cev-gallery-section) { padding: 64px 0; } }

.cev-gallery-filters {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    justify-content: center;
    margin: 0 auto 32px;
    max-width: var(--cev-container);
    padding: 0 20px;
}
.cev-gallery-filter-btn {
    font-family: var(--cev-sans);
    font-size: 12px;
    font-weight: 700;
    letter-spacing: .12em;
    text-transform: uppercase;
    padding: 10px 20px;
    border-radius: 999px;
    border: 1px solid var(--cev-border);
    background: var(--cev-white);
    color: var(--cev-text);
    cursor: pointer;
    transition: all .2s ease;
}
.cev-gallery-filter-btn:hover { border-color: var(--cev-primary); color: var(--cev-primary); }
.cev-gallery-filter-btn.cev-filter-active {
    background: var(--cev-primary);
    color: var(--cev-white);
    border-color: var(--cev-primary);
}

.cev-gallery-grid {
    display: grid;
    gap: 24px;
    max-width: var(--cev-container);
    margin: 0 auto;
    padding: 0 20px;
}
.cev-gallery-item {
    position: relative;
    aspect-ratio: 4 / 3;
    border-radius: var(--cev-radius-card);
    overflow: hidden;
    box-shadow: var(--cev-shadow-card);
    transition: all .3s ease;
    align-self: start;
    width: 100%;
}
.cev-gallery-item:hover {
    transform: translateY(-4px);
    box-shadow: var(--cev-shadow-hover);
}
.cev-gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform .5s ease;
}
.cev-gallery-item:hover img { transform: scale(1.05); }

.cev-gallery-overlay {
    position: absolute;
    inset: 0;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 24px;
    background: linear-gradient(180deg, transparent 40%, rgba(2, 30, 8, .85));
    color: var(--cev-white);
    opacity: 0;
    transition: opacity .3s ease;
}
.cev-gallery-item:hover .cev-gallery-overlay { opacity: 1; }
.cev-gallery-overlay h3 {
    font-family: var(--cev-serif);
    font-weight: 700;
    font-size: 22px;
    margin: 0 0 6px;
    color: var(--cev-white);
}
.cev-gallery-overlay p {
    font-family: var(--cev-sans);
    font-size: 14px;
    margin: 0;
    color: rgba(255, 255, 255, .85);
}

/* ===============================================================
 * LOGO CLOUD
 * =============================================================== */
:where(.cev-logos-section) { padding: 56px 0; }
@media (max-width: 768px) { :where(.cev-logos-section) { padding: 36px 0; } }
.cev-logos-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 40px;
    align-items: center;
    justify-content: center;
    max-width: var(--cev-container);
    margin: 0 auto;
    padding: 0 20px;
}
.cev-logos-grid img,
.cev-logos-track img {
    max-height: 40px;
    width: auto;
    object-fit: contain;
    opacity: .65;
    filter: grayscale(100%);
    transition: all .25s ease;
}
.cev-logos-grid img:hover,
.cev-logos-track img:hover {
    opacity: 1;
    filter: none;
}
.cev-logos-marquee {
    overflow: hidden;
    max-width: var(--cev-container);
    margin: 0 auto;
    padding: 0 20px;
}
.cev-logos-track {
    display: flex;
    gap: 60px;
    align-items: center;
    animation: cev-marquee 30s linear infinite;
    width: max-content;
}
@keyframes cev-marquee {
    from { transform: translateX(0); }
    to   { transform: translateX(-50%); }
}

/* ===============================================================
 * NEWSLETTER
 * =============================================================== */
:where(.cev-newsletter-section) { padding: 80px 0; }
@media (max-width: 768px) { :where(.cev-newsletter-section) { padding: 56px 0; } }

.cev-newsletter-form {
    display: flex;
    gap: 12px;
    max-width: 560px;
    margin: 0 auto;
    padding: 0 20px;
    flex-wrap: wrap;
}
.cev-newsletter-input {
    flex: 1;
    min-width: 220px;
    font-family: var(--cev-sans);
    font-size: 15px;
    padding: 14px 20px;
    border-radius: 999px;
    border: 1px solid var(--cev-border);
    background: var(--cev-white);
    color: var(--cev-text);
    outline: none;
    transition: border-color .2s ease;
}
.cev-newsletter-input:focus { border-color: var(--cev-primary); }
.cev-newsletter-submit {
    font-family: var(--cev-sans);
    font-weight: 800;
    font-size: 13px;
    letter-spacing: .08em;
    text-transform: uppercase;
    padding: 14px 28px;
    border-radius: 999px;
    border: 2px solid var(--cev-primary);
    background: var(--cev-primary);
    color: var(--cev-white);
    cursor: pointer;
    transition: all .25s ease;
}
.cev-newsletter-submit:hover {
    background: var(--cev-secondary);
    border-color: var(--cev-secondary);
    transform: translateY(-2px);
}
.cev-newsletter-consent {
    font-family: var(--cev-sans);
    font-size: 13px;
    color: var(--cev-muted);
    text-align: center;
    max-width: 560px;
    margin: 14px auto 0;
    padding: 0 20px;
    line-height: 1.6;
}

.cev-sr-only {
    position: absolute !important;
    width: 1px; height: 1px;
    padding: 0; margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    border: 0;
}

/* ================================================================
 * CEV Footers — base
 * ================================================================ */
.cev-footer {
    position: relative;
    font-family: var(--cev-sans);
    width: 100%;
}
:where(.cev-footer) {
    padding: 64px 0 32px;
}

/* Theme: dark */
.cev-footer--dark {
    background: var(--cev-primary);
    color: rgba(255, 255, 255, .85);
}
.cev-footer--dark .cev-footer-link,
.cev-footer--dark .cev-footer-col-title,
.cev-footer--dark .cev-footer-centered-logo--text,
.cev-footer--dark .cev-footer-mega-cta-title,
.cev-footer--dark .cev-footer-centered-tagline {
    color: rgba(255, 255, 255, .92);
}
.cev-footer--dark .cev-footer-link {
    color: rgba(255, 255, 255, .78);
    text-decoration: none;
    transition: color .2s ease;
}
.cev-footer--dark .cev-footer-link:hover {
    color: #ffffff;
}
.cev-footer--dark .cev-footer-copyright,
.cev-footer--dark .cev-footer-columns-bottom,
.cev-footer--dark .cev-footer-mega-bottom,
.cev-footer--dark .cev-footer-centered-copyright {
    color: rgba(255, 255, 255, .6);
}
.cev-footer--dark .cev-footer-minimal-sep,
.cev-footer--dark .cev-footer-columns-bottom,
.cev-footer--dark .cev-footer-mega-bottom {
    border-top: 1px solid rgba(255, 255, 255, .1);
}

/* Theme: light */
.cev-footer--light {
    background: var(--cev-bg-soft);
    color: var(--cev-text);
}
.cev-footer--light .cev-footer-col-title,
.cev-footer--light .cev-footer-centered-logo--text,
.cev-footer--light .cev-footer-mega-cta-title,
.cev-footer--light .cev-footer-centered-tagline {
    color: var(--cev-text);
}
.cev-footer--light .cev-footer-link {
    color: var(--cev-primary);
    text-decoration: none;
    transition: color .2s ease;
}
.cev-footer--light .cev-footer-link:hover {
    color: var(--cev-secondary);
}
.cev-footer--light .cev-footer-copyright,
.cev-footer--light .cev-footer-columns-bottom,
.cev-footer--light .cev-footer-mega-bottom,
.cev-footer--light .cev-footer-centered-copyright {
    color: var(--cev-muted);
}
.cev-footer--light .cev-footer-minimal-sep,
.cev-footer--light .cev-footer-columns-bottom,
.cev-footer--light .cev-footer-mega-bottom {
    border-top: 1px solid rgba(0, 0, 0, .1);
}

/* Common social icons (re-used by all footers) */
.cev-footer-social {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    flex-wrap: wrap;
}
.cev-footer-social-link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    border-radius: 999px;
    color: currentColor;
    transition: transform .25s ease, background-color .25s ease, color .25s ease, border-color .25s ease;
}
.cev-footer-social-link:hover {
    transform: translateY(-2px);
}
.cev-footer-social-link svg {
    width: 18px;
    height: 18px;
    fill: currentColor;
}
.cev-footer-social--filled .cev-footer-social-link {
    background: rgba(255, 255, 255, .12);
}
.cev-footer--light .cev-footer-social--filled .cev-footer-social-link {
    background: rgba(4, 97, 29, .08);
}
.cev-footer-social--outline .cev-footer-social-link {
    border: 1px solid rgba(255, 255, 255, .25);
}
.cev-footer--light .cev-footer-social--outline .cev-footer-social-link {
    border-color: rgba(4, 97, 29, .25);
}
.cev-footer-social--minimal .cev-footer-social-link {
    width: auto;
    height: auto;
    padding: 4px;
}

/* Common inline newsletter (columns, mega, centered) */
.cev-footer-newsletter {
    display: flex;
    gap: 0;
    width: 100%;
    max-width: 420px;
    border-radius: 999px;
    overflow: hidden;
    background: rgba(255, 255, 255, .08);
}
.cev-footer--light .cev-footer-newsletter {
    background: var(--cev-white);
    border: 1px solid var(--cev-border);
}
.cev-footer-newsletter input[type="email"] {
    flex: 1;
    padding: 12px 18px;
    background: transparent;
    border: none;
    outline: none;
    color: inherit;
    font-family: var(--cev-sans);
    font-size: 14px;
}
.cev-footer-newsletter input[type="email"]::placeholder {
    color: currentColor;
    opacity: .55;
}
.cev-footer-newsletter button {
    padding: 12px 22px;
    border: none;
    cursor: pointer;
    font-family: var(--cev-sans);
    font-weight: 700;
    font-size: 13px;
    letter-spacing: .06em;
    text-transform: uppercase;
    background: var(--cev-secondary);
    color: var(--cev-white);
    transition: background-color .25s ease;
}
.cev-footer-newsletter button:hover {
    background: #3f9637;
}

/* ================================================================
 * 1) Footer Minimal
 * ================================================================ */
.cev-footer-minimal {
    width: 100%;
}
:where(.cev-footer-minimal) {
    padding: 48px 24px 24px;
}
.cev-footer-minimal-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
    max-width: var(--cev-container);
    margin: 0 auto;
    flex-wrap: wrap;
}
.cev-footer-minimal-row > * {
    flex: 0 0 auto;
}
.cev-footer-logo img {
    display: block;
    height: 40px;
    width: auto;
}
.cev-footer-minimal-nav {
    display: flex;
    align-items: center;
    gap: 24px;
    flex-wrap: wrap;
    justify-content: center;
}
.cev-footer-minimal-nav .cev-footer-link {
    font-family: var(--cev-sans);
    font-size: 14px;
    font-weight: 500;
}
.cev-footer-minimal-sep {
    max-width: var(--cev-container);
    margin: 24px auto;
    border: 0;
    border-top: 1px solid transparent;
}
.cev-footer-minimal .cev-footer-copyright {
    max-width: var(--cev-container);
    margin: 0 auto;
    font-size: 13px;
    line-height: 1.6;
    text-align: center;
}
.cev-footer-minimal-nav--empty,
.cev-footer-social--empty,
.cev-footer-logo--empty {
    display: none;
}

@media (max-width: 768px) {
    .cev-footer-minimal-row {
        flex-direction: column;
        text-align: center;
    }
    .cev-footer-minimal-nav {
        justify-content: center;
    }
}

/* ================================================================
 * 2) Footer Columns
 * ================================================================ */
:where(.cev-footer-columns) {
    padding: 80px 24px 40px;
}
.cev-footer-columns-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 48px;
    max-width: var(--cev-container);
    margin: 0 auto;
}
.cev-footer-col {
    min-width: 0;
}
.cev-footer-col-title {
    font-family: var(--cev-sans);
    font-size: 15px;
    font-weight: 700;
    letter-spacing: .06em;
    text-transform: uppercase;
    margin: 0 0 18px;
}
.cev-footer-col-logo {
    margin-bottom: 16px;
}
.cev-footer-col-logo img {
    max-height: 48px;
    width: auto;
    display: block;
}
.cev-footer-col-text,
.cev-footer-col p {
    font-family: var(--cev-sans);
    font-size: 14px;
    line-height: 1.7;
    margin: 0 0 12px;
}
.cev-footer-col-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 10px;
}
.cev-footer-col-list a {
    font-size: 14px;
    font-family: var(--cev-sans);
}
.cev-footer-col-contact p {
    margin: 0 0 6px;
}
.cev-footer-col-richtext,
.cev-footer-col-html {
    font-size: 14px;
    line-height: 1.7;
}
.cev-footer-columns-bottom {
    max-width: var(--cev-container);
    margin: 32px auto 0;
    padding: 24px 0 0;
    border-top: 1px solid transparent;
    font-size: 13px;
    text-align: center;
}

@media (max-width: 992px) {
    .cev-footer-columns-grid {
        grid-template-columns: repeat(2, 1fr) !important;
    }
}
@media (max-width: 600px) {
    .cev-footer-columns-grid {
        grid-template-columns: 1fr !important;
        gap: 32px;
    }
}

/* ================================================================
 * 3) Footer Mega
 * ================================================================ */
:where(.cev-footer-mega) {
    padding: 0 0 32px;
}

/* CTA top bar */
.cev-footer-mega-cta {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 32px;
    padding: 36px 32px;
    flex-wrap: wrap;
    color: var(--cev-white);
}
.cev-footer-mega-cta-content {
    flex: 1 1 auto;
    min-width: 280px;
}
.cev-footer-mega-cta-title {
    font-family: var(--cev-serif);
    font-size: clamp(24px, 3vw, 32px);
    font-weight: 700;
    margin: 0 0 6px;
    line-height: 1.2;
}
.cev-footer-mega-cta-text {
    font-family: var(--cev-sans);
    font-size: 15px;
    line-height: 1.6;
    margin: 0;
    opacity: .9;
}
.cev-footer-mega-cta-buttons {
    display: inline-flex;
    gap: 12px;
    flex-wrap: wrap;
}

.cev-footer-mega-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 56px;
    max-width: var(--cev-container);
    margin: 0 auto;
    padding: 64px 24px 40px;
}
.cev-footer-mega-grid[data-cols="3"] {
    grid-template-columns: repeat(3, 1fr);
}
.cev-footer-mega-grid[data-cols="5"] {
    grid-template-columns: repeat(5, 1fr);
}

.cev-footer-mega-bottom {
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    align-items: center;
    gap: 24px;
    max-width: var(--cev-container);
    margin: 0 auto;
    padding: 24px;
    border-top: 1px solid transparent;
    font-size: 13px;
}
.cev-footer-mega-bottom-left { text-align: left; }
.cev-footer-mega-bottom-center { text-align: center; }
.cev-footer-mega-bottom-right { text-align: right; }

/* Language switcher */
.cev-footer-lang-switch {
    list-style: none;
    padding: 0;
    margin: 0;
    display: inline-flex;
    gap: 6px;
    align-items: center;
}
.cev-footer-lang {
    display: inline-flex;
    align-items: center;
    padding: 4px 12px;
    border-radius: 999px;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: .08em;
    text-transform: uppercase;
    border: 1px solid currentColor;
    opacity: .55;
    transition: opacity .2s ease, background-color .2s ease;
    text-decoration: none;
    color: inherit;
}
.cev-footer-lang:hover,
.cev-footer-lang.cev-active {
    opacity: 1;
    background: rgba(255, 255, 255, .08);
}
.cev-footer--light .cev-footer-lang.cev-active,
.cev-footer--light .cev-footer-lang:hover {
    background: var(--cev-light);
}

/* Payments */
.cev-footer-payments {
    list-style: none;
    padding: 0;
    margin: 0;
    display: inline-flex;
    gap: 8px;
    flex-wrap: wrap;
    justify-content: flex-end;
}
.cev-footer-payment {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 48px;
    height: 30px;
    padding: 0 10px;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: .06em;
    text-transform: uppercase;
    border: 1px solid currentColor;
    border-radius: 6px;
    opacity: .7;
}
.cev-footer-payment--custom { padding: 0 8px; gap: 6px; }

@media (max-width: 992px) {
    .cev-footer-mega-grid {
        grid-template-columns: repeat(2, 1fr) !important;
    }
    .cev-footer-mega-bottom {
        grid-template-columns: 1fr;
        text-align: center;
    }
    .cev-footer-mega-bottom-left,
    .cev-footer-mega-bottom-right,
    .cev-footer-mega-bottom-center { text-align: center; }
    .cev-footer-payments { justify-content: center; }
}
@media (max-width: 600px) {
    .cev-footer-mega-grid {
        grid-template-columns: 1fr !important;
        gap: 36px;
    }
    .cev-footer-mega-cta {
        flex-direction: column;
        text-align: center;
    }
}

/* ================================================================
 * 4) Footer Centered
 * ================================================================ */
:where(.cev-footer-centered) {
    padding: 96px 24px 48px;
}
.cev-footer-centered-inner {
    max-width: 680px;
    margin: 0 auto;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 28px;
}
.cev-footer-centered-logo img {
    height: 56px;
    width: auto;
    display: block;
}
.cev-footer-centered-logo--text {
    font-family: var(--cev-serif);
    font-size: 36px;
    font-weight: 700;
    letter-spacing: .02em;
}
.cev-footer-centered-tagline {
    font-family: var(--cev-serif);
    font-style: italic;
    font-size: 18px;
    line-height: 1.5;
    margin: 0;
    max-width: 520px;
}
.cev-footer-centered-nav {
    display: inline-flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 32px;
}
.cev-footer-centered-nav .cev-footer-link {
    font-family: var(--cev-sans);
    font-size: 14px;
    font-weight: 600;
    letter-spacing: .04em;
}
.cev-footer-ornament {
    display: flex;
    justify-content: center;
    opacity: .5;
}
.cev-footer-ornament-svg {
    width: 120px;
    height: 12px;
}
.cev-footer-centered-news {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
    width: 100%;
}
.cev-footer-centered-news-text {
    font-family: var(--cev-sans);
    font-size: 14px;
    margin: 0;
    opacity: .8;
}
.cev-footer-centered-news .cev-footer-newsletter {
    margin: 0 auto;
}
.cev-footer-centered-copyright {
    font-size: 13px;
    line-height: 1.6;
}

@media (max-width: 600px) {
    :where(.cev-footer-centered) {
        padding: 64px 20px 32px;
    }
    .cev-footer-centered-inner { gap: 22px; }
    .cev-footer-centered-nav { gap: 20px; }
}

/* ================================================================
 * Image Carousel
 * ================================================================ */
.cev-img-carousel-section { padding: 56px 0; }
.cev-img-carousel { position: relative; max-width: var(--cev-container); margin: 0 auto; padding: 0 20px; }
.cev-img-carousel .swiper-slide {
    border-radius: var(--cev-radius-sm);
    overflow: hidden;
    position: relative;
    background: var(--cev-bg-soft);
}
.cev-img-carousel .swiper-slide img { width: 100%; height: 100%; object-fit: cover; display: block; }
.cev-img-carousel .cev-slide-link { display: block; width: 100%; height: 100%; }
.cev-slide-overlay {
    position: absolute; left: 0; right: 0;
    padding: 20px 24px; color: #fff;
    background: rgba(4,97,29,0.6);
    font-family: var(--cev-sans);
}
.cev-slide-overlay--bottom { bottom: 0; }
.cev-slide-overlay--top    { top: 0; }
.cev-slide-overlay--center { top: 50%; transform: translateY(-50%); }
.cev-slide-overlay h3 { font-family: var(--cev-serif); margin: 0 0 6px; font-size: 22px; font-weight: 600; }
.cev-slide-overlay p { margin: 0; font-size: 15px; opacity: .92; }
.cev-img-carousel .swiper-button-next, .cev-img-carousel .swiper-button-prev { color: #fff; }
.cev-img-carousel .swiper-pagination-bullet-active { background: var(--cev-primary); }

/* ================================================================
 * Logo Carousel (marquee infini)
 * ================================================================ */
.cev-logocar-section { padding: 56px 0; }
.cev-logocar { overflow: hidden; display: flex; max-width: 100%; position: relative; }
.cev-logocar--fade { -webkit-mask-image: linear-gradient(to right, transparent, #000 12%, #000 88%, transparent); mask-image: linear-gradient(to right, transparent, #000 12%, #000 88%, transparent); }
.cev-logocar-track {
    display: flex; align-items: center; gap: 56px;
    flex-shrink: 0; min-width: 100%;
    animation: cev-logocar-scroll linear infinite;
    will-change: transform;
}
.cev-logocar--right .cev-logocar-track { animation-direction: reverse; }
.cev-logocar--pause-hover:hover .cev-logocar-track { animation-play-state: paused; }
@keyframes cev-logocar-scroll { from { transform: translateX(0); } to { transform: translateX(-100%); } }
.cev-logocar-item { display: inline-flex; align-items: center; justify-content: center; }
.cev-logocar-item img {
    max-height: 56px; width: auto;
    opacity: .65; transition: opacity .3s ease, filter .3s ease;
}
.cev-logocar--filter-grayscale-to-color .cev-logocar-item img { filter: grayscale(100%); }
.cev-logocar--filter-grayscale-to-color .cev-logocar-item:hover img { filter: grayscale(0%); opacity: 1; }
.cev-logocar--filter-color-to-grayscale .cev-logocar-item:hover img { filter: grayscale(100%); opacity: .7; }
.cev-logocar--filter-always-color .cev-logocar-item img { filter: none; opacity: 1; }
.cev-logocar--filter-always-grayscale .cev-logocar-item img { filter: grayscale(100%); }
.cev-logocar-placeholder { font-family: var(--cev-serif); font-size: 18px; color: var(--cev-muted); padding: 0 12px; }

/* ================================================================
 * Testimonials Carousel
 * ================================================================ */
.cev-tmc-section { padding: 80px 0; }
.cev-tmc { position: relative; max-width: var(--cev-container); margin: 0 auto; padding: 0 20px; }
.cev-tmc-card {
    background: #fff;
    border-radius: var(--cev-radius-card);
    padding: 32px;
    height: 100%;
    display: flex; flex-direction: column; gap: 16px;
    box-shadow: var(--cev-shadow-card);
    transition: transform .25s ease, box-shadow .25s ease;
}
.cev-tmc-card--border   { border: 1px solid var(--cev-border); }
.cev-tmc-card--shadow   { box-shadow: var(--cev-shadow-hover); }
.cev-tmc-card--gradient { background: linear-gradient(135deg, var(--cev-light), #fff); }
.cev-tmc-card:hover { transform: translateY(-4px); box-shadow: var(--cev-shadow-hover); }
.cev-tmc-stars { display: inline-flex; gap: 4px; color: #F5A623; }
.cev-tmc-stars svg { width: 18px; height: 18px; }
.cev-tmc-stars .cev-star-empty svg { color: #e5e7eb; fill: #e5e7eb; }
.cev-tmc-text { font-family: var(--cev-sans); font-size: 16px; line-height: 1.7; color: var(--cev-text); margin: 0; flex: 1; }
.cev-tmc-author { display: flex; align-items: center; gap: 14px; }
.cev-tmc-avatar { width: 48px; height: 48px; border-radius: 50%; object-fit: cover; }
.cev-tmc-name { font-family: var(--cev-sans); font-weight: 700; font-size: 15px; margin: 0; color: var(--cev-text); }
.cev-tmc-role { font-family: var(--cev-sans); font-size: 13px; color: var(--cev-muted); margin: 2px 0 0; }

/* ================================================================
 * Tabs
 * ================================================================ */
.cev-tabs-section { padding: 56px 0; }
.cev-tabs { max-width: var(--cev-container); margin: 0 auto; padding: 0 20px; }
.cev-tabs-nav { display: flex; flex-wrap: wrap; gap: 8px; margin-bottom: 24px; }
.cev-tab-btn {
    display: inline-flex; align-items: center; gap: 8px;
    font-family: var(--cev-sans); font-size: 14px; font-weight: 600;
    color: #4b5563; background: transparent; border: 0;
    padding: 10px 18px; cursor: pointer;
    transition: all .25s ease; border-radius: 10px;
}
.cev-tab-btn:hover { color: var(--cev-primary); }
.cev-tab-btn.is-active { color: #fff; background: var(--cev-primary); }
.cev-tab-icon { display: inline-flex; align-items: center; }
.cev-tab-icon svg, .cev-tab-icon i { width: 16px; height: 16px; font-size: 16px; }

.cev-tabs--underline .cev-tab-btn { border-radius: 0; border-bottom: 2px solid transparent; padding: 12px 4px; background: transparent !important; }
.cev-tabs--underline .cev-tab-btn.is-active { color: var(--cev-primary) !important; border-bottom-color: var(--cev-primary); background: transparent !important; }
.cev-tabs--pill .cev-tab-btn { border-radius: 999px; }
.cev-tabs--button .cev-tab-btn { border: 1px solid var(--cev-border); }
.cev-tabs--boxed .cev-tabs-nav { background: var(--cev-bg-soft); padding: 6px; border-radius: 12px; }
.cev-tabs--boxed .cev-tab-btn { border-radius: 8px; }
.cev-tabs--vertical { display: grid; grid-template-columns: 220px 1fr; gap: 32px; }
.cev-tabs--vertical .cev-tabs-nav { flex-direction: column; align-items: stretch; margin-bottom: 0; }
.cev-tabs--vline .cev-tab-btn { border-radius: 0; text-align: left; border-left: 3px solid transparent; padding-left: 16px; background: transparent !important; }
.cev-tabs--vline .cev-tab-btn.is-active { background: transparent !important; color: var(--cev-primary) !important; border-left-color: var(--cev-primary); }

.cev-tab-panel { font-family: var(--cev-sans); color: var(--cev-text); line-height: 1.7; animation: cev-fade-in .35s ease; }
.cev-tab-panel[hidden] { display: none; }
@keyframes cev-fade-in { from { opacity: 0; transform: translateY(4px); } to { opacity: 1; transform: translateY(0); } }

@media (max-width: 768px) {
    .cev-tabs--vertical { grid-template-columns: 1fr; }
}

/* ================================================================
 * Accordion (generic)
 * ================================================================ */
.cev-acc-section { padding: 56px 0; }
.cev-acc { max-width: 880px; margin: 0 auto; padding: 0 20px; display: flex; flex-direction: column; gap: 12px; }
.cev-acc-item {
    background: #fff;
    border: 1px solid var(--cev-border);
    border-radius: var(--cev-radius-sm);
    overflow: hidden;
    transition: border-color .25s ease, box-shadow .25s ease;
}
.cev-acc--minimal .cev-acc-item { border: 0; border-bottom: 1px solid var(--cev-border); border-radius: 0; background: transparent; }
.cev-acc--connected { gap: 0; }
.cev-acc--connected .cev-acc-item { border-radius: 0; margin-top: -1px; }
.cev-acc--connected .cev-acc-item:first-child { border-top-left-radius: var(--cev-radius-sm); border-top-right-radius: var(--cev-radius-sm); }
.cev-acc--connected .cev-acc-item:last-child  { border-bottom-left-radius: var(--cev-radius-sm); border-bottom-right-radius: var(--cev-radius-sm); }
.cev-acc-item.is-open { border-color: var(--cev-primary); box-shadow: 0 4px 16px rgba(4,97,29,.08); }

.cev-acc-header {
    width: 100%; display: flex; align-items: center; justify-content: space-between; gap: 16px;
    padding: 18px 24px; background: transparent; border: 0;
    font-family: var(--cev-sans); font-weight: 600; font-size: 16px; color: var(--cev-text);
    cursor: pointer; text-align: left;
}
.cev-acc--icon-left .cev-acc-header { flex-direction: row-reverse; justify-content: flex-end; }
.cev-acc-icon { color: var(--cev-primary); display: inline-flex; align-items: center; transition: transform .3s ease; }
.cev-acc-item.is-open .cev-acc-icon--plus { transform: rotate(45deg); }
.cev-acc-item.is-open .cev-acc-icon--chevron { transform: rotate(180deg); }
.cev-acc-item.is-open .cev-acc-icon--arrow { transform: rotate(90deg); }
.cev-acc-content { max-height: 0; overflow: hidden; transition: max-height .35s ease; }
.cev-acc-content-inner { padding: 0 24px 22px; font-family: var(--cev-sans); color: var(--cev-muted); line-height: 1.7; }

/* ================================================================
 * Counter Animated
 * ================================================================ */
.cev-cna-section { padding: 80px 0; }
.cev-cna-grid {
    display: grid; gap: 32px;
    max-width: var(--cev-container); margin: 0 auto; padding: 0 20px;
}
.cev-cna-grid.cev-cols-2 { grid-template-columns: repeat(2, 1fr); }
.cev-cna-grid.cev-cols-3 { grid-template-columns: repeat(3, 1fr); }
.cev-cna-grid.cev-cols-4 { grid-template-columns: repeat(4, 1fr); }
@media (max-width: 768px) {
    .cev-cna-grid.cev-cols-3, .cev-cna-grid.cev-cols-4 { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 480px) {
    .cev-cna-grid { grid-template-columns: 1fr !important; }
}

.cev-cna-item {
    display: flex; flex-direction: column; align-items: center; text-align: center; gap: 12px;
    padding: 28px 20px;
}
.cev-cna--horizontal .cev-cna-item { flex-direction: row; text-align: left; justify-content: flex-start; gap: 16px; }
.cev-cna-icon {
    width: 56px; height: 56px;
    display: inline-flex; align-items: center; justify-content: center;
    background: var(--cev-light); color: var(--cev-primary); border-radius: 16px;
}
.cev-cna-icon svg, .cev-cna-icon i { width: 24px; height: 24px; font-size: 24px; }
.cev-cna-numwrap { line-height: 1; }
.cev-cna-num {
    font-family: var(--cev-serif); font-weight: 700;
    font-size: clamp(38px, 4.5vw, 56px); color: var(--cev-primary);
    display: inline-flex; align-items: baseline; gap: 2px;
}
.cev-cna-num em { font-style: italic; color: var(--cev-em-color); font-size: .75em; }
.cev-cna-prefix { font-size: .8em; opacity: .85; }
.cev-cna-label { font-family: var(--cev-sans); font-size: 15px; color: var(--cev-muted); margin: 0; line-height: 1.4; }

/* ================================================================
 * Countdown
 * ================================================================ */
.cev-cd-section { padding: 40px 0; }
.cev-cd {
    display: flex; align-items: center; justify-content: center; gap: 16px;
    max-width: var(--cev-container); margin: 0 auto; padding: 0 20px;
    font-family: var(--cev-sans);
    flex-wrap: wrap;
}
.cev-cd-unit {
    display: flex; flex-direction: column; align-items: center; justify-content: center;
    background: #fff; border: 1px solid var(--cev-border);
    border-radius: var(--cev-radius-sm);
    padding: 18px 22px; min-width: 88px;
}
.cev-cd--inline .cev-cd-unit { background: transparent; border: 0; padding: 6px 4px; min-width: 0; }
.cev-cd--circular .cev-cd-unit {
    border-radius: 50%; width: 110px; height: 110px; padding: 0;
    background: var(--cev-light);
    border: 2px solid var(--cev-primary);
}
.cev-cd-num { font-family: var(--cev-serif); font-weight: 700; font-size: 38px; color: var(--cev-primary); line-height: 1; }
.cev-cd-label { font-size: 12px; font-weight: 600; text-transform: uppercase; letter-spacing: .12em; color: var(--cev-muted); margin-top: 6px; }
.cev-cd-sep { font-family: var(--cev-serif); font-size: 38px; color: var(--cev-primary); align-self: center; line-height: 1; }
.cev-cd-expired {
    text-align: center; font-family: var(--cev-serif); font-size: 28px;
    color: var(--cev-primary); width: 100%;
}

/* ================================================================
 * Before/After
 * ================================================================ */
.cev-ba-section { padding: 40px 0; }
.cev-ba {
    position: relative; max-width: var(--cev-container); margin: 0 auto;
    border-radius: var(--cev-radius-card); overflow: hidden;
    user-select: none; cursor: ew-resize;
    aspect-ratio: 16/9;
    background: var(--cev-bg-soft);
}
.cev-ba--vertical { cursor: ns-resize; }
.cev-ba-img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; display: block; }
.cev-ba-after-wrap { position: absolute; inset: 0; clip-path: inset(0 50% 0 0); }
.cev-ba-after-wrap .cev-ba-img { width: 100%; height: 100%; }
.cev-ba-label {
    position: absolute; top: 16px;
    background: rgba(0,0,0,.55); color: #fff;
    padding: 6px 14px; border-radius: 999px;
    font-family: var(--cev-sans); font-size: 12px; font-weight: 700;
    letter-spacing: .12em; text-transform: uppercase;
    pointer-events: none;
}
.cev-ba-label--before { left: 16px; }
.cev-ba-label--after  { right: 16px; }
.cev-ba-handle {
    position: absolute; top: 50%; left: 50%;
    width: 44px; height: 44px; border-radius: 50%;
    background: #fff; transform: translate(-50%, -50%);
    display: flex; align-items: center; justify-content: center;
    box-shadow: 0 4px 16px rgba(0,0,0,.25);
    cursor: ew-resize; touch-action: none;
}
.cev-ba--vertical .cev-ba-handle { cursor: ns-resize; }
.cev-ba--vertical .cev-ba-handle-arrow { transform: rotate(90deg); }
.cev-ba-handle::before, .cev-ba-handle::after {
    content: ""; position: absolute;
    background: #fff; pointer-events: none;
}
.cev-ba--horizontal .cev-ba-handle::before { left: 50%; top: -1000px; bottom: 100%; width: 3px; height: 1000px; transform: translateX(-50%); }
.cev-ba--horizontal .cev-ba-handle::after  { left: 50%; top: 100%; bottom: -1000px; width: 3px; height: 1000px; transform: translateX(-50%); }
.cev-ba--vertical   .cev-ba-handle::before { top: 50%; right: 100%; left: -1000px; height: 3px; width: 1000px; transform: translateY(-50%); }
.cev-ba--vertical   .cev-ba-handle::after  { top: 50%; left: 100%; right: -1000px; height: 3px; width: 1000px; transform: translateY(-50%); }
.cev-ba--handle-line .cev-ba-handle { width: 0; height: 0; background: transparent; box-shadow: none; }
.cev-ba--handle-line .cev-ba-handle-arrow { display: none; }
.cev-ba--handle-minimal .cev-ba-handle { width: 28px; height: 28px; }
.cev-ba--handle-minimal .cev-ba-handle::before, .cev-ba--handle-minimal .cev-ba-handle::after { width: 2px; }
.cev-ba-handle-arrow { color: var(--cev-primary); width: 18px; height: 18px; }
body.cev-ba-dragging { user-select: none; }

/* ================================================================
 * Social Icons
 * ================================================================ */
.cev-soc-section { padding: 24px 0; }
.cev-soc-list {
    list-style: none; margin: 0; padding: 0;
    display: flex; flex-wrap: wrap; gap: 10px;
}
.cev-soc-list--vertical { flex-direction: column; align-items: flex-start; }
.cev-soc-item { display: inline-flex; }
.cev-soc-link {
    display: inline-flex; align-items: center; justify-content: center;
    width: 42px; height: 42px;
    color: #fff; background: var(--soc-color, #04611D);
    text-decoration: none;
    transition: transform .25s ease, background .25s ease, color .25s ease, box-shadow .25s ease;
}
.cev-soc-link svg { width: 20px; height: 20px; }

.cev-soc-style--filled  .cev-soc-link { background: var(--soc-color); color: #fff; border-radius: 10px; }
.cev-soc-style--outline .cev-soc-link { background: transparent; color: var(--soc-color); border: 2px solid var(--soc-color); border-radius: 10px; }
.cev-soc-style--minimal .cev-soc-link { background: transparent; color: var(--soc-color); width: auto; height: auto; }
.cev-soc-style--square  .cev-soc-link { background: var(--soc-color); color: #fff; border-radius: 0; }
.cev-soc-style--rounded .cev-soc-link { background: var(--soc-color); color: #fff; border-radius: 14px; }
.cev-soc-style--circle  .cev-soc-link { background: var(--soc-color); color: #fff; border-radius: 50%; }

.cev-soc-hover--scale .cev-soc-link:hover       { transform: scale(1.12); }
.cev-soc-hover--lift  .cev-soc-link:hover       { transform: translateY(-3px); box-shadow: 0 8px 20px rgba(0,0,0,.18); }
.cev-soc-hover--color-shift .cev-soc-link:hover { filter: brightness(1.15) saturate(1.2); }
.cev-soc-hover--fill .cev-soc-style--outline .cev-soc-link:hover,
.cev-soc-hover--fill .cev-soc-link:hover        { background: var(--soc-color); color: #fff; }

/* ================================================================
 * Marquee (texte défilant)
 * ================================================================ */
.cev-marquee-section { padding: 0; }
.cev-marquee {
    overflow: hidden; display: flex; max-width: 100%;
    background: var(--cev-light);
    padding: 16px 0;
    position: relative;
}
.cev-marquee--fade { -webkit-mask-image: linear-gradient(to right, transparent, #000 8%, #000 92%, transparent); mask-image: linear-gradient(to right, transparent, #000 8%, #000 92%, transparent); }
.cev-marquee-track {
    display: flex; align-items: center; gap: 24px;
    flex-shrink: 0; min-width: 100%; padding-right: 24px;
    animation: cev-marquee-scroll linear infinite;
    will-change: transform;
}
.cev-marquee--right .cev-marquee-track { animation-direction: reverse; }
.cev-marquee--pause-hover:hover .cev-marquee-track { animation-play-state: paused; }
@keyframes cev-marquee-scroll { from { transform: translateX(0); } to { transform: translateX(-100%); } }
.cev-marquee-item {
    font-family: var(--cev-sans); font-weight: 600; font-size: 15px;
    color: var(--cev-primary); white-space: nowrap;
    display: inline-flex; align-items: center; gap: 8px;
}
.cev-marquee-item svg, .cev-marquee-item i { width: 16px; height: 16px; }
.cev-marquee-sep { color: var(--cev-secondary); font-size: 18px; }

/* ================================================================
 * Icon List
 * ================================================================ */
.cev-iconlist-section { padding: 32px 0; }
.cev-iconlist {
    list-style: none; margin: 0 auto; padding: 0 20px;
    max-width: var(--cev-container);
    display: flex; flex-direction: column; gap: 16px;
}
.cev-iconlist--horizontal { flex-direction: row; flex-wrap: wrap; }
.cev-iconlist--grid-2 { display: grid; grid-template-columns: repeat(2, 1fr); }
.cev-iconlist--grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); }
@media (max-width: 768px) {
    .cev-iconlist--grid-3 { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 480px) {
    .cev-iconlist--grid-2, .cev-iconlist--grid-3 { grid-template-columns: 1fr; }
}

.cev-iconlist-item { display: flex; }
.cev-iconlist-link {
    display: inline-flex; align-items: center; gap: 12px;
    color: var(--cev-text); text-decoration: none;
    font-family: var(--cev-sans); font-size: 16px;
    transition: color .25s ease, transform .25s ease;
}
.cev-iconlist-link:hover { color: var(--cev-primary); }
.cev-iconlist-icon {
    display: inline-flex; align-items: center; justify-content: center;
    width: 36px; height: 36px; flex-shrink: 0;
    color: var(--cev-primary);
    transition: transform .25s ease, background .25s ease;
}
.cev-iconlist-icon svg, .cev-iconlist-icon i { width: 16px; height: 16px; font-size: 16px; }
.cev-iconlist--ic-badge   .cev-iconlist-icon { background: var(--cev-light); border-radius: 10px; }
.cev-iconlist--ic-circle  .cev-iconlist-icon { background: var(--cev-light); border-radius: 50%; }
.cev-iconlist--ic-square  .cev-iconlist-icon { background: var(--cev-light); border-radius: 0; }
.cev-iconlist--ic-minimal .cev-iconlist-icon { background: transparent; width: auto; height: auto; }
.cev-iconlist-link:hover .cev-iconlist-icon { transform: scale(1.1); }

.cev-iconlist--sep-line  .cev-iconlist-item { border-bottom: 1px solid var(--cev-border); padding-bottom: 12px; }
.cev-iconlist--sep-line  .cev-iconlist-item:last-child { border-bottom: 0; padding-bottom: 0; }
.cev-iconlist--sep-dot   .cev-iconlist-item:not(:last-child)::after {
    content: "•"; margin-left: 16px; color: var(--cev-secondary);
    display: inline-flex; align-items: center;
}
