/* ============================================
   DPE PROJETÉ — Stylesheet
   Modern, conversion-focused design
   ============================================ */

:root {
    --green: #00A86B;
    --green-dark: #007A4E;
    --green-light: #E8F8F1;
    --green-darker: #053824;
    --yellow: #FFD93D;
    --orange: #FF8C42;
    --red: #E63946;
    --dark: #0F1F1B;
    --gray-900: #1A2E2A;
    --gray-700: #4A5C58;
    --gray-500: #7A8C88;
    --gray-300: #D5DDDA;
    --gray-100: #F4F8F6;
    --white: #FFFFFF;
    --bg: #FAFCFB;

    --shadow-sm: 0 1px 3px rgba(0,0,0,.08);
    --shadow-md: 0 4px 16px rgba(0,30,20,.08);
    --shadow-lg: 0 16px 48px rgba(0,40,25,.12);
    --shadow-xl: 0 24px 64px rgba(0,50,30,.18);
    --shadow-glow: 0 0 40px rgba(0,168,107,.25);

    --r-sm: 8px;
    --r-md: 14px;
    --r-lg: 22px;
    --r-xl: 32px;

    --t: 0.25s cubic-bezier(.4,0,.2,1);
}

/* ===== Reset ===== */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    background: var(--bg);
    color: var(--gray-900);
    line-height: 1.6;
    font-size: 16px;
    overflow-x: hidden;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button { cursor: pointer; border: none; background: none; font: inherit; }
ul { list-style: none; }

h1, h2, h3, h4 {
    font-family: 'Plus Jakarta Sans', 'Inter', sans-serif;
    font-weight: 800;
    letter-spacing: -0.02em;
    line-height: 1.15;
    color: var(--dark);
}

.container {
    max-width: 1240px;
    margin: 0 auto;
    padding: 0 24px;
}

/* ===== Buttons ===== */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 14px 26px;
    border-radius: 12px;
    font-weight: 700;
    font-size: 15px;
    transition: all var(--t);
    white-space: nowrap;
    border: 2px solid transparent;
    position: relative;
    overflow: hidden;
}
.btn-sm { padding: 10px 18px; font-size: 14px; }
.btn-lg { padding: 18px 32px; font-size: 17px; border-radius: 14px; }
.btn-block { width: 100%; }

.btn-primary {
    background: linear-gradient(135deg, var(--green) 0%, var(--green-dark) 100%);
    color: white;
    box-shadow: 0 8px 24px rgba(0,168,107,.35), inset 0 1px 0 rgba(255,255,255,.2);
}
.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 14px 32px rgba(0,168,107,.45), inset 0 1px 0 rgba(255,255,255,.2);
}
.btn-primary:active { transform: translateY(0); }

.btn-ghost {
    background: rgba(255,255,255,.9);
    color: var(--dark);
    backdrop-filter: blur(10px);
    border: 2px solid var(--gray-300);
}
.btn-ghost:hover { background: white; border-color: var(--green); color: var(--green-dark); }

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

.btn-white {
    background: white;
    color: var(--green-dark);
    box-shadow: var(--shadow-md);
}
.btn-white:hover { transform: translateY(-2px); box-shadow: var(--shadow-lg); }

/* ===== Topbar ===== */
.topbar {
    background: var(--green-darker);
    color: white;
    font-size: 13.5px;
    padding: 9px 0;
}
.topbar-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 20px;
}
.topbar-phone {
    font-weight: 700;
    color: var(--yellow);
    transition: opacity var(--t);
}
.topbar-phone:hover { opacity: .85; }

/* ===== Header ===== */
.header {
    position: sticky;
    top: 0;
    z-index: 100;
    background: rgba(255,255,255,.9);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border-bottom: 1px solid var(--gray-300);
    transition: box-shadow var(--t);
}
.header.scrolled { box-shadow: var(--shadow-md); }
.header-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 16px 24px;
}
.logo {
    display: flex;
    align-items: center;
    gap: 10px;
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: 21px;
    font-weight: 700;
    color: var(--dark);
}
.logo-mark {
    width: 38px;
    height: 38px;
    background: linear-gradient(135deg, var(--green), var(--green-dark));
    border-radius: 10px;
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 900;
    font-size: 22px;
    box-shadow: 0 4px 12px rgba(0,168,107,.3);
}
.logo-text strong { color: var(--green-dark); }
.logo-light { color: white; }
.logo-light .logo-text strong { color: var(--yellow); }

.nav {
    display: flex;
    align-items: center;
    gap: 32px;
}
.nav a {
    font-weight: 500;
    font-size: 15px;
    color: var(--gray-700);
    transition: color var(--t);
    position: relative;
}
.nav a:not(.btn):hover { color: var(--green-dark); }
.nav a:not(.btn)::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--green);
    transition: width var(--t);
}
.nav a:not(.btn):hover::after { width: 100%; }

.burger {
    display: none;
    padding: 8px;
    font-size: 22px;
    color: var(--dark);
}

/* ===== Hero ===== */
.hero {
    position: relative;
    padding: 80px 0 100px;
    overflow: hidden;
}
.hero-bg {
    position: absolute;
    inset: 0;
    background:
        radial-gradient(1200px circle at 80% -10%, rgba(0,168,107,.12), transparent 50%),
        radial-gradient(800px circle at 0% 80%, rgba(255,217,61,.08), transparent 50%),
        linear-gradient(180deg, #fff 0%, var(--bg) 100%);
    z-index: -1;
}
.hero-blob {
    position: absolute;
    z-index: 0;
    pointer-events: none;
    animation: blobFloat 18s ease-in-out infinite;
}
.hero-blob-1 { top: -80px; right: -120px; width: 480px; }
.hero-blob-2 { bottom: -120px; left: -100px; width: 380px; animation-delay: -8s; }
@keyframes blobFloat {
    0%, 100% { transform: translate(0, 0) rotate(0deg); }
    50% { transform: translate(30px, -20px) rotate(15deg); }
}
.hero-inner {
    display: grid;
    grid-template-columns: 1.1fr 1fr;
    gap: 64px;
    align-items: center;
}
.badge-trust {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 8px 16px;
    background: rgba(0,168,107,.08);
    border: 1px solid rgba(0,168,107,.2);
    color: var(--green-dark);
    border-radius: 50px;
    font-size: 13.5px;
    font-weight: 600;
    margin-bottom: 24px;
}
.dot-live {
    width: 8px;
    height: 8px;
    background: var(--green);
    border-radius: 50%;
    box-shadow: 0 0 0 4px rgba(0,168,107,.2);
    animation: pulse 2s infinite;
}
@keyframes pulse {
    0%, 100% { box-shadow: 0 0 0 4px rgba(0,168,107,.2); }
    50% { box-shadow: 0 0 0 8px rgba(0,168,107,.05); }
}
.hero h1 {
    font-size: clamp(2.4rem, 5vw, 3.6rem);
    margin-bottom: 24px;
}
.highlight {
    color: var(--green-dark);
    background: linear-gradient(180deg, transparent 65%, rgba(255,217,61,.55) 65%);
    padding: 0 4px;
}
.highlight-yellow { color: var(--yellow); }
.highlight-red { color: var(--red); position: relative; }
.highlight-red::after {
    content: '';
    position: absolute;
    bottom: 5px;
    left: 0;
    right: 0;
    height: 3px;
    background: var(--red);
    transform: rotate(-1deg);
}
.hero-sub {
    font-size: 19px;
    color: var(--gray-700);
    margin-bottom: 36px;
    max-width: 560px;
    line-height: 1.55;
}
.hero-ctas {
    display: flex;
    gap: 14px;
    flex-wrap: wrap;
    margin-bottom: 32px;
}
.hero-trust {
    display: flex;
    align-items: center;
    gap: 18px;
    font-size: 14.5px;
    color: var(--gray-700);
}
.hero-avatars {
    display: flex;
}
.hero-avatars img {
    width: 42px;
    height: 42px;
    border-radius: 50%;
    border: 3px solid white;
    margin-left: -12px;
    object-fit: cover;
    box-shadow: 0 2px 6px rgba(0,0,0,.1);
    transition: transform var(--t);
}
.hero-avatars img:first-child { margin-left: 0; }
.hero-avatars img:hover { transform: translateY(-3px) scale(1.05); z-index: 1; }
.hero-trust-text { font-size: 13px; color: var(--gray-700); margin-top: 2px; }
.hero-trust-text strong { color: var(--dark); }
.stars {
    color: var(--yellow);
    letter-spacing: 1px;
    font-size: 15px;
    display: inline-flex;
    gap: 2px;
}

/* === DPE Card === */
.hero-visual {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 540px;
}
.hero-photo {
    position: absolute;
    top: 0;
    right: 0;
    width: 92%;
    max-width: 480px;
    height: 380px;
    object-fit: cover;
    border-radius: var(--r-xl);
    box-shadow: var(--shadow-xl);
    z-index: 0;
    transform: rotate(2deg);
    transition: transform .6s cubic-bezier(.4,0,.2,1);
}
.hero-photo:hover { transform: rotate(0deg) scale(1.02); }
.hero-badge-float {
    position: absolute;
    top: 30px;
    left: 0;
    background: white;
    padding: 14px 18px;
    border-radius: var(--r-lg);
    box-shadow: var(--shadow-lg);
    display: flex;
    align-items: center;
    gap: 12px;
    z-index: 3;
    animation: float 5s ease-in-out infinite;
}
.hero-badge-float i {
    font-size: 24px;
    color: var(--green);
    background: var(--green-light);
    width: 44px;
    height: 44px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}
.hero-badge-float strong {
    display: block;
    font-size: 16px;
    color: var(--dark);
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-weight: 800;
}
.hero-badge-float span { font-size: 12px; color: var(--gray-500); }
.dpe-card {
    width: 100%;
    max-width: 380px;
    background: white;
    padding: 24px;
    border-radius: var(--r-xl);
    box-shadow: var(--shadow-xl);
    border: 1px solid var(--gray-300);
    transform: rotate(-2deg);
    animation: float 6s ease-in-out infinite;
    position: relative;
    z-index: 2;
    margin-top: 100px;
    margin-left: -40px;
}
@keyframes float {
    0%, 100% { transform: rotate(-2deg) translateY(0); }
    50% { transform: rotate(-2deg) translateY(-12px); }
}
.dpe-card-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
    font-size: 13px;
    color: var(--gray-500);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: .05em;
}
.dpe-card-badge {
    background: var(--gray-100);
    padding: 4px 10px;
    border-radius: 50px;
    color: var(--green-dark);
}

.dpe-scale { display: flex; flex-direction: column; gap: 5px; }
.dpe-row {
    display: grid;
    grid-template-columns: 36px 1fr 64px;
    align-items: center;
    gap: 10px;
    padding: 4px 0;
    position: relative;
    font-size: 13px;
}
.dpe-letter {
    width: 32px;
    height: 32px;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-weight: 900;
    font-size: 15px;
}
.dpe-row[data-letter="A"] .dpe-letter { background: #00A651; }
.dpe-row[data-letter="B"] .dpe-letter { background: #50B848; }
.dpe-row[data-letter="C"] .dpe-letter { background: #AED13B; }
.dpe-row[data-letter="D"] .dpe-letter { background: #FFED00; color: #333; }
.dpe-row[data-letter="E"] .dpe-letter { background: #FAA61A; }
.dpe-row[data-letter="F"] .dpe-letter { background: #ED1C24; }
.dpe-row[data-letter="G"] .dpe-letter { background: #8B0000; }

.dpe-bar {
    height: 18px;
    border-radius: 4px;
    transform-origin: left;
}
.dpe-bar.a { width: 18%; background: #00A651; }
.dpe-bar.b { width: 28%; background: #50B848; }
.dpe-bar.c { width: 42%; background: #AED13B; }
.dpe-bar.d { width: 56%; background: #FFED00; }
.dpe-bar.e { width: 70%; background: #FAA61A; }
.dpe-bar.f { width: 84%; background: #ED1C24; }
.dpe-bar.g { width: 100%; background: #8B0000; }
.dpe-val { font-size: 11.5px; color: var(--gray-500); text-align: right; }

.highlight-row, .before-row { position: relative; padding: 6px 8px; border-radius: 8px; }
.highlight-row { background: rgba(0,168,107,.08); border: 1.5px solid var(--green); }
.before-row { background: rgba(230,57,70,.06); border: 1.5px dashed rgba(230,57,70,.4); }
.badge-after, .badge-before {
    position: absolute;
    right: -8px;
    top: -10px;
    font-size: 10px;
    padding: 3px 8px;
    border-radius: 50px;
    font-weight: 700;
    color: white;
}
.badge-after { background: var(--green); }
.badge-before { background: var(--red); }

.dpe-card-footer {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
    margin-top: 24px;
    padding-top: 20px;
    border-top: 1px solid var(--gray-300);
}
.metric { text-align: center; }
.metric-num {
    display: block;
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-weight: 800;
    color: var(--green-dark);
    font-size: 26px;
}
.metric-lbl { font-size: 12.5px; color: var(--gray-500); }

/* ===== Trust bar ===== */
.trust-bar {
    background: white;
    padding: 36px 0;
    border-bottom: 1px solid var(--gray-300);
}
.trust-label {
    text-align: center;
    color: var(--gray-500);
    font-size: 13px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: .08em;
    margin-bottom: 22px;
}
.trust-logos {
    display: flex;
    justify-content: center;
    gap: 14px;
    flex-wrap: wrap;
}
.trust-item {
    background: var(--gray-100);
    padding: 12px 20px;
    border-radius: 50px;
    font-weight: 600;
    font-size: 14px;
    color: var(--gray-700);
    transition: all var(--t);
    display: inline-flex;
    align-items: center;
    gap: 10px;
}
.trust-item i { color: var(--green-dark); font-size: 16px; }
.trust-item:hover { background: var(--green-light); color: var(--green-dark); transform: translateY(-2px); }

/* ===== Sections ===== */
.section { padding: 100px 0; }
.section-light { background: var(--gray-100); }
.section-dark {
    background: linear-gradient(135deg, var(--green-darker) 0%, #062a1c 100%);
    color: rgba(255,255,255,.85);
    position: relative;
    overflow: hidden;
}
.section-dark::before {
    content: '';
    position: absolute;
    inset: 0;
    background:
        radial-gradient(800px circle at 10% 10%, rgba(0,168,107,.2), transparent 50%),
        radial-gradient(600px circle at 90% 90%, rgba(255,217,61,.1), transparent 50%);
}
.section-dark .container { position: relative; }
.section-gradient {
    background: linear-gradient(135deg, var(--green-dark) 0%, var(--green) 100%);
    color: white;
    position: relative;
    overflow: hidden;
}
.section-gradient::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(1000px circle at 70% 30%, rgba(255,217,61,.15), transparent 50%);
}
.section-gradient .container { position: relative; }

.section-head {
    text-align: center;
    max-width: 720px;
    margin: 0 auto 60px;
}
.kicker {
    display: inline-block;
    padding: 6px 14px;
    background: var(--green-light);
    color: var(--green-dark);
    border-radius: 50px;
    font-size: 13px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: .06em;
    margin-bottom: 18px;
}
.kicker-light {
    background: rgba(255,255,255,.12);
    color: var(--yellow);
    backdrop-filter: blur(10px);
}
.section-head h2 {
    font-size: clamp(1.9rem, 4vw, 2.8rem);
    margin-bottom: 18px;
}
.section-head h2.white { color: white; }
.section-sub {
    font-size: 18px;
    color: var(--gray-700);
    line-height: 1.6;
}
.section-sub.light { color: rgba(255,255,255,.8); }

/* ===== Definitions ===== */
.def-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
}
.def-card {
    background: white;
    padding: 36px 30px;
    border-radius: var(--r-lg);
    border: 1px solid var(--gray-300);
    transition: all var(--t);
    position: relative;
    overflow: hidden;
}
.def-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--green), var(--yellow));
    transform: scaleX(0);
    transform-origin: left;
    transition: transform .4s cubic-bezier(.4,0,.2,1);
}
.def-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-lg);
    border-color: var(--green);
}
.def-card:hover::before { transform: scaleX(1); }
.def-icon {
    font-size: 28px;
    margin-bottom: 18px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 64px;
    height: 64px;
    background: linear-gradient(135deg, var(--green-light), #d6f0e3);
    border-radius: 16px;
    color: var(--green-dark);
}
.def-card h3 {
    font-size: 21px;
    margin-bottom: 12px;
}
.def-card p { color: var(--gray-700); }

/* ===== Benefits ===== */
.bens-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 22px;
}
.ben-card {
    background: rgba(255,255,255,.05);
    border: 1px solid rgba(255,255,255,.12);
    padding: 32px 28px;
    border-radius: var(--r-lg);
    backdrop-filter: blur(10px);
    transition: all var(--t);
}
.ben-card:hover {
    background: rgba(255,255,255,.09);
    transform: translateY(-4px);
    border-color: rgba(255,217,61,.5);
}
.ben-num {
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: 42px;
    font-weight: 800;
    background: linear-gradient(135deg, var(--yellow), var(--orange));
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    line-height: 1;
    margin-bottom: 16px;
}
.ben-card h3 {
    color: white;
    font-size: 20px;
    margin-bottom: 10px;
}
.ben-card p {
    color: rgba(255,255,255,.78);
    font-size: 15px;
    line-height: 1.6;
}
.ben-card strong { color: var(--yellow); }

/* ===== Steps ===== */
.steps {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
    position: relative;
}
.steps::before {
    content: '';
    position: absolute;
    top: 38px;
    left: 12%;
    right: 12%;
    height: 2px;
    background: repeating-linear-gradient(90deg, var(--green) 0 8px, transparent 8px 16px);
    z-index: 0;
}
.step {
    background: white;
    padding: 30px 26px;
    border-radius: var(--r-lg);
    text-align: center;
    border: 1px solid var(--gray-300);
    position: relative;
    z-index: 1;
    transition: all var(--t);
}
.step:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }
.step-num {
    width: 56px;
    height: 56px;
    margin: 0 auto 18px;
    background: linear-gradient(135deg, var(--green), var(--green-dark));
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-weight: 800;
    font-size: 22px;
    box-shadow: 0 6px 16px rgba(0,168,107,.35);
}
.step h3 { font-size: 18px; margin-bottom: 10px; }
.step p { color: var(--gray-700); font-size: 14.5px; margin-bottom: 14px; }
.step-time {
    display: inline-block;
    background: var(--green-light);
    color: var(--green-dark);
    padding: 4px 12px;
    border-radius: 50px;
    font-size: 12.5px;
    font-weight: 700;
}
.process-cta { text-align: center; margin-top: 50px; }

/* ===== Simulator ===== */
.simulator-wrap {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}
.simulator-info h2 { color: white; }
.check-list {
    margin-top: 30px;
    display: flex;
    flex-direction: column;
    gap: 12px;
}
.check-list li {
    color: white;
    font-size: 16px;
    padding-left: 4px;
    display: flex;
    align-items: center;
    gap: 12px;
}
.check-list li i { color: var(--yellow); font-size: 18px; flex-shrink: 0; }
.simulator-form {
    background: white;
    padding: 36px;
    border-radius: var(--r-lg);
    box-shadow: var(--shadow-xl);
    color: var(--dark);
}
.simulator-form h3 {
    font-size: 22px;
    margin-bottom: 24px;
    text-align: center;
}
.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 14px;
    margin-bottom: 14px;
}
.simulator-form label {
    display: block;
    font-size: 13.5px;
    font-weight: 600;
    color: var(--gray-700);
    margin-bottom: 14px;
}
.simulator-form input,
.simulator-form select {
    width: 100%;
    margin-top: 6px;
    padding: 13px 14px;
    border: 1.5px solid var(--gray-300);
    border-radius: 10px;
    font: inherit;
    font-size: 15px;
    background: white;
    color: var(--dark);
    transition: all var(--t);
}
.simulator-form input:focus,
.simulator-form select:focus {
    outline: none;
    border-color: var(--green);
    box-shadow: 0 0 0 4px rgba(0,168,107,.15);
}
.simulator-form input.error,
.simulator-form select.error { border-color: var(--red); background: rgba(230,57,70,.04); }

.estim-result {
    background: linear-gradient(135deg, var(--green-light), white);
    border: 2px dashed var(--green);
    padding: 18px;
    border-radius: 12px;
    text-align: center;
    margin: 18px 0;
    animation: zoomIn .4s cubic-bezier(.4,0,.2,1);
}
@keyframes zoomIn {
    from { opacity: 0; transform: scale(.92); }
    to { opacity: 1; transform: scale(1); }
}
.estim-label {
    display: block;
    font-size: 13px;
    color: var(--gray-700);
    text-transform: uppercase;
    letter-spacing: .05em;
    font-weight: 700;
}
.estim-price {
    display: block;
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: 42px;
    font-weight: 800;
    color: var(--green-dark);
    line-height: 1.2;
    margin: 4px 0;
}
.estim-note { font-size: 12.5px; color: var(--gray-500); }
.form-mention {
    text-align: center;
    font-size: 12.5px;
    color: var(--gray-500);
    margin-top: 14px;
}

/* ===== Pricing ===== */
.pricing {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    align-items: stretch;
}
.price-card {
    background: white;
    border: 2px solid var(--gray-300);
    border-radius: var(--r-lg);
    padding: 36px 30px;
    transition: all var(--t);
    position: relative;
    display: flex;
    flex-direction: column;
}
.price-card:hover { border-color: var(--green); transform: translateY(-4px); box-shadow: var(--shadow-lg); }
.price-featured {
    border-color: var(--green);
    background: linear-gradient(180deg, white 0%, var(--green-light) 100%);
    box-shadow: var(--shadow-lg);
    transform: scale(1.04);
}
.price-featured:hover { transform: scale(1.04) translateY(-4px); }
.price-badge {
    position: absolute;
    top: -14px;
    left: 50%;
    transform: translateX(-50%);
    background: linear-gradient(135deg, var(--orange), var(--yellow));
    color: var(--dark);
    padding: 6px 16px;
    border-radius: 50px;
    font-size: 12px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: .04em;
    box-shadow: 0 6px 14px rgba(255,140,66,.4);
}
.price-card h3 { font-size: 22px; margin-bottom: 20px; }
.price {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    margin-bottom: 26px;
    padding-bottom: 22px;
    border-bottom: 1px solid var(--gray-300);
}
.price-from { font-size: 13px; color: var(--gray-500); font-weight: 600; }
.price-num {
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: 56px;
    font-weight: 800;
    color: var(--green-dark);
    line-height: 1;
    margin: 4px 0;
}
.price-num small { font-size: 28px; font-weight: 700; }
.price-ttc { font-size: 12px; color: var(--gray-500); font-weight: 600; }
.price-card ul { display: flex; flex-direction: column; gap: 11px; flex: 1; margin-bottom: 28px; }
.price-card li {
    font-size: 14.5px;
    color: var(--gray-700);
    display: flex;
    align-items: flex-start;
    gap: 10px;
}
.price-card li i {
    color: var(--green);
    font-size: 13px;
    margin-top: 5px;
    flex-shrink: 0;
}
.price-mention {
    text-align: center;
    margin-top: 36px;
    font-size: 14.5px;
    color: var(--gray-700);
    background: var(--green-light);
    padding: 16px 24px;
    border-radius: 12px;
    display: inline-block;
    width: 100%;
}

/* ===== Testimonials ===== */
.testimonials {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}
.testimonial {
    background: white;
    padding: 30px;
    border-radius: var(--r-lg);
    border: 1px solid var(--gray-300);
    transition: all var(--t);
}
.testimonial:hover { box-shadow: var(--shadow-lg); transform: translateY(-4px); }
.testimonial .stars { margin-bottom: 14px; }
.testimonial p {
    color: var(--gray-900);
    font-size: 15.5px;
    line-height: 1.65;
    margin-bottom: 22px;
    font-style: italic;
}
.testimonial footer {
    display: flex;
    align-items: center;
    gap: 12px;
    padding-top: 18px;
    border-top: 1px solid var(--gray-300);
}
.testimonial footer { gap: 14px; }
.avatar {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    object-fit: cover;
    flex-shrink: 0;
    border: 3px solid white;
    box-shadow: 0 2px 8px rgba(0,0,0,.1);
}
.testimonial footer > div:not(.avatar) { flex: 1; }
.testimonial footer strong { display: block; color: var(--dark); font-size: 15px; }
.testimonial footer span { font-size: 13px; color: var(--gray-500); }
.testimonial-source {
    color: #4285F4;
    font-size: 22px;
    margin-left: auto;
}

/* ===== Gallery (Réalisations) ===== */
.gallery {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
}
.gallery-item {
    background: white;
    border-radius: var(--r-lg);
    overflow: hidden;
    border: 1px solid var(--gray-300);
    transition: all var(--t);
    display: flex;
    flex-direction: column;
}
.gallery-item:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-lg);
}
.gallery-img {
    position: relative;
    aspect-ratio: 4 / 3;
    overflow: hidden;
}
.gallery-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform .6s cubic-bezier(.4,0,.2,1);
}
.gallery-item:hover .gallery-img img { transform: scale(1.08); }
.gallery-overlay {
    position: absolute;
    bottom: 16px;
    left: 16px;
    right: 16px;
    background: rgba(255,255,255,.95);
    backdrop-filter: blur(10px);
    padding: 10px 16px;
    border-radius: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    box-shadow: var(--shadow-md);
    font-weight: 700;
}
.gallery-overlay i { color: var(--gray-500); font-size: 14px; }
.dpe-pill {
    width: 36px;
    height: 36px;
    border-radius: 10px;
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 900;
    font-size: 16px;
    font-family: 'Plus Jakarta Sans', sans-serif;
}
.dpe-pill.before { background: #ED1C24; }
.dpe-pill.after { background: #00A651; box-shadow: 0 0 0 3px rgba(0,166,81,.2); }
.gallery-body {
    padding: 24px;
    flex: 1;
    display: flex;
    flex-direction: column;
}
.gallery-body h3 {
    font-size: 18px;
    margin-bottom: 10px;
}
.gallery-body p {
    color: var(--gray-700);
    font-size: 14.5px;
    margin-bottom: 18px;
    flex: 1;
}
.gallery-stats {
    display: flex;
    gap: 14px;
    flex-wrap: wrap;
    padding-top: 16px;
    border-top: 1px solid var(--gray-300);
}
.gallery-stats span {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 13px;
    color: var(--green-dark);
    font-weight: 700;
    background: var(--green-light);
    padding: 6px 12px;
    border-radius: 50px;
}

/* ===== Team section ===== */
.team-section { background: var(--bg); }
.team-wrap {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 70px;
    align-items: center;
}
.team-photos {
    position: relative;
    height: 480px;
}
.team-photo {
    position: absolute;
    object-fit: cover;
    border-radius: var(--r-lg);
    box-shadow: var(--shadow-lg);
    transition: transform .5s cubic-bezier(.4,0,.2,1);
}
.team-photo-1 {
    top: 0;
    left: 0;
    width: 65%;
    height: 70%;
    transform: rotate(-3deg);
}
.team-photo-2 {
    bottom: 0;
    right: 0;
    width: 60%;
    height: 60%;
    transform: rotate(3deg);
    border: 6px solid white;
}
.team-photo-1:hover, .team-photo-2:hover { transform: rotate(0) scale(1.03); z-index: 2; }
.team-badge {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) rotate(-5deg);
    background: linear-gradient(135deg, var(--yellow), var(--orange));
    padding: 18px 24px;
    border-radius: var(--r-lg);
    text-align: center;
    box-shadow: var(--shadow-xl);
    z-index: 3;
    color: var(--dark);
    animation: float 5s ease-in-out infinite;
}
.team-badge-num {
    display: block;
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: 38px;
    font-weight: 800;
    line-height: 1;
}
.team-badge-lbl { font-size: 12px; font-weight: 700; line-height: 1.3; }
.team-content h2 { margin-bottom: 18px; }
.team-content p {
    color: var(--gray-700);
    font-size: 17px;
    line-height: 1.6;
    margin-bottom: 26px;
}
.team-list {
    display: flex;
    flex-direction: column;
    gap: 14px;
}
.team-list li {
    display: flex;
    align-items: center;
    gap: 14px;
    color: var(--gray-900);
    font-weight: 500;
    font-size: 15.5px;
}
.team-list i {
    width: 40px;
    height: 40px;
    background: var(--green-light);
    color: var(--green-dark);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
    flex-shrink: 0;
}

/* ===== FAQ ===== */
.faq {
    max-width: 820px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 14px;
}
.faq-item {
    background: white;
    border: 1px solid var(--gray-300);
    border-radius: var(--r-md);
    padding: 22px 26px;
    transition: all var(--t);
}
.faq-item:hover { border-color: var(--green); }
.faq-item[open] { border-color: var(--green); box-shadow: var(--shadow-md); }
.faq-item summary {
    cursor: pointer;
    font-weight: 700;
    font-size: 16.5px;
    color: var(--dark);
    list-style: none;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 18px;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after {
    content: '+';
    font-size: 26px;
    color: var(--green);
    font-weight: 400;
    transition: transform var(--t);
    flex-shrink: 0;
}
.faq-item[open] summary::after { transform: rotate(45deg); }
.faq-item p {
    margin-top: 16px;
    color: var(--gray-700);
    line-height: 1.7;
    font-size: 15px;
}

/* ===== Final CTA ===== */
.cta-final {
    padding: 100px 0;
    background:
        radial-gradient(800px circle at 30% 50%, rgba(255,217,61,.1), transparent 50%),
        linear-gradient(135deg, var(--green-darker) 0%, #042419 100%);
    color: white;
    text-align: center;
}
.cta-final h2 {
    color: white;
    font-size: clamp(2rem, 4vw, 3rem);
    margin-bottom: 18px;
}
.cta-final p {
    font-size: 18px;
    color: rgba(255,255,255,.85);
    margin-bottom: 36px;
}
.cta-final .hero-ctas { justify-content: center; margin-bottom: 28px; }
.cta-trust {
    display: flex;
    justify-content: center;
    gap: 24px;
    flex-wrap: wrap;
    color: rgba(255,255,255,.7);
    font-size: 14px;
}
.cta-trust span { display: inline-flex; align-items: center; gap: 8px; }
.cta-trust i { color: var(--green); }

/* ===== Footer ===== */
.footer {
    background: #051f15;
    color: rgba(255,255,255,.7);
    padding: 70px 0 30px;
}
.footer-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr 1fr;
    gap: 50px;
    margin-bottom: 50px;
}
.footer h4 {
    color: white;
    font-size: 16px;
    margin-bottom: 18px;
    font-family: 'Inter', sans-serif;
    font-weight: 700;
}
.footer ul { display: flex; flex-direction: column; gap: 10px; }
.footer ul li { display: flex; align-items: center; gap: 10px; }
.footer ul li i { color: var(--green); width: 16px; text-align: center; }
.footer a { color: rgba(255,255,255,.7); transition: color var(--t); font-size: 14.5px; }
.footer a:hover { color: var(--yellow); }
.footer-about {
    margin-top: 18px;
    font-size: 14.5px;
    line-height: 1.7;
    max-width: 320px;
}
.footer-bottom {
    padding-top: 30px;
    border-top: 1px solid rgba(255,255,255,.1);
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 14px;
    font-size: 13.5px;
}

/* ===== Floating CTA ===== */
.floating-cta {
    position: fixed;
    bottom: 24px;
    right: 24px;
    z-index: 90;
    background: linear-gradient(135deg, var(--green), var(--green-dark));
    color: white;
    padding: 16px 22px;
    border-radius: 50px;
    font-weight: 700;
    box-shadow: 0 10px 30px rgba(0,168,107,.45);
    transform: translateY(120px);
    opacity: 0;
    transition: all .4s cubic-bezier(.4,0,.2,1);
    font-size: 15px;
}
.floating-cta.visible { transform: translateY(0); opacity: 1; }
.floating-cta:hover { transform: translateY(-4px) scale(1.04); }

/* ===== Animations ===== */
.reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: all .7s cubic-bezier(.4,0,.2,1);
}
.reveal.in { opacity: 1; transform: translateY(0); }

/* ===== Responsive ===== */
@media (max-width: 980px) {
    .nav { display: none; }
    .nav.open {
        display: flex;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: white;
        flex-direction: column;
        padding: 24px;
        box-shadow: var(--shadow-lg);
        gap: 18px;
        align-items: stretch;
    }
    .burger { display: flex; }

    .hero-inner { grid-template-columns: 1fr; gap: 50px; }
    .hero-visual { order: -1; min-height: 460px; }
    .hero-photo { width: 80%; height: 320px; }
    .dpe-card { max-width: 320px; margin-top: 80px; margin-left: -20px; }
    .hero-blob { display: none; }

    .gallery { grid-template-columns: 1fr; }
    .team-wrap { grid-template-columns: 1fr; gap: 50px; }
    .team-photos { height: 400px; max-width: 500px; margin: 0 auto; }

    .def-grid, .bens-grid, .testimonials, .pricing { grid-template-columns: 1fr; }
    .price-featured { transform: none; }
    .price-featured:hover { transform: translateY(-4px); }
    .steps { grid-template-columns: 1fr 1fr; }
    .steps::before { display: none; }
    .simulator-wrap { grid-template-columns: 1fr; gap: 40px; }
    .footer-grid { grid-template-columns: 1fr 1fr; gap: 36px; }
    .topbar-inner { font-size: 12px; flex-direction: column; gap: 6px; }
    .section { padding: 70px 0; }
}

@media (max-width: 560px) {
    .container { padding: 0 18px; }
    .hero { padding: 50px 0 60px; }
    .hero h1 { font-size: 2rem; }
    .hero-sub { font-size: 16px; }
    .hero-ctas { flex-direction: column; }
    .hero-ctas .btn { width: 100%; }
    .hero-visual { min-height: 400px; }
    .hero-photo { width: 75%; height: 260px; right: 10px; }
    .dpe-card { max-width: 280px; margin-top: 60px; padding: 18px; }
    .hero-badge-float { padding: 10px 14px; font-size: 13px; }
    .hero-badge-float i { width: 36px; height: 36px; font-size: 18px; }
    .hero-trust { flex-direction: column; align-items: flex-start; gap: 10px; }
    .team-photos { height: 320px; }
    .team-badge { padding: 14px 18px; }
    .team-badge-num { font-size: 28px; }
    .form-row { grid-template-columns: 1fr; }
    .steps { grid-template-columns: 1fr; }
    .footer-grid { grid-template-columns: 1fr; }
    .footer-bottom { flex-direction: column; text-align: center; }
    .simulator-form { padding: 24px; }
    .topbar-phone { font-size: 13px; }
    .floating-cta { bottom: 16px; right: 16px; padding: 14px 18px; font-size: 13.5px; }
    .trust-item { font-size: 12.5px; padding: 10px 16px; }
    .cta-trust { flex-direction: column; gap: 8px; }
}
