/* ===== CHARTE GRAPHIQUE RELITASK ===== */
:root {
  --coral:        #ef6565;
  --coral-dark:   #d44f4f;
  --coral-light:  #fef2f2;
  --cyan:         #70d4db;
  --cyan-dark:    #48bcc5;
  --cyan-deep:    #0d7a82;
  --cyan-richer:  #0a6570;
  --cyan-light:   #e8f9fa;
  --white:        #ffffff;
  --text-dark:    #1a3535;
  --gray:         #5a7070;
  --gray-light:   #f0f8f9;
  --font:         'DM Sans', 'Inter', 'Segoe UI', sans-serif;
  --font-logo:    'Paytone One', sans-serif;
  --radius:       14px;
  --shadow:       0 4px 24px rgba(112,212,219,0.12);
  --shadow-hover: 0 12px 44px rgba(112,212,219,0.28);
}
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body { font-family: var(--font); color: var(--text-dark); background: var(--white); line-height: 1.68; }
img { display: block; max-width: 100%; }
a { text-decoration: none; color: inherit; }
.container { max-width: 1100px; margin: 0 auto; padding: 0 24px; }
.section { padding: 84px 0; }
.section--alt { background: var(--gray-light); }
.section--cyan { background: var(--cyan-light); }
.logo-watermark { position: absolute; font-family: var(--font-logo); font-size: clamp(80px, 18vw, 220px); color: rgba(112,212,219,0.055); pointer-events: none; white-space: nowrap; top: 50%; left: 50%; transform: translate(-50%, -50%); user-select: none; z-index: 0; letter-spacing: -2px; }
.badge { display: inline-block; background: transparent; color: var(--cyan-deep); font-family: var(--font); font-weight: 700; font-size: 0.72rem; letter-spacing: 0.12em; text-transform: uppercase; padding: 0; margin-bottom: 10px; border: none; position: relative; }
.section-title { font-family: var(--font-logo); font-size: clamp(1.65rem, 2.8vw, 2.3rem); font-weight: 400; line-height: 1.2; margin-bottom: 16px; color: var(--text-dark); }
.section-sub { font-size: 1.03rem; color: var(--gray); max-width: 620px; margin-bottom: 48px; }
.reveal { opacity: 0; transform: translateY(26px); transition: opacity 0.58s ease, transform 0.58s ease; }
.reveal.visible { opacity: 1; transform: translateY(0); }
.reveal-delay-1 { transition-delay: 0.1s; }
.reveal-delay-2 { transition-delay: 0.2s; }
.reveal-delay-3 { transition-delay: 0.3s; }
.navbar { position: sticky; top: 0; z-index: 100; background: rgba(255,255,255,0.95); backdrop-filter: blur(16px); border-bottom: 1px solid rgba(112,212,219,0.18); padding: 0 24px; }
.navbar__inner { max-width: 1200px; margin: 0 auto; display: flex; align-items: center; justify-content: space-between; height: 66px; gap: 8px; }
.logo { font-family: var(--font-logo); font-size: 1.5rem; line-height: 1; transition: transform 0.2s; }
.logo:hover { transform: scale(1.05); }
.logo span.reli { color: var(--coral); }
.logo span.task { color: var(--cyan-dark); }
.nav-links { display: flex; gap: 24px; list-style: none; align-items: center; }
.nav-links a { font-family: var(--font-logo); font-size: 0.95rem; font-weight: 400; color: var(--gray); position: relative; transition: color 0.2s; white-space: nowrap; letter-spacing: -0.01em; }
.nav-links a::after { content: ''; position: absolute; bottom: -2px; left: 0; right: 0; height: 2px; background: var(--cyan); transform: scaleX(0); transform-origin: left; transition: transform 0.24s ease; }
.nav-links a:hover, .nav-links a.active { color: var(--cyan-deep); }
.nav-links a:hover::after, .nav-links a.active::after { transform: scaleX(1); }
.nav-special { color: var(--coral) !important; }
.nav-special::after { background: var(--coral) !important; }
.nav-cta { background: var(--coral) !important; color: var(--white) !important; padding: 8px 18px; border-radius: 8px; transition: background 0.2s, transform 0.2s !important; font-size: 0.86rem !important; }
.nav-cta:hover { background: var(--coral-dark) !important; transform: translateY(-1px) !important; }
.nav-cta::after { display: none !important; }
.hero { padding: 96px 24px 84px; text-align: center; background: linear-gradient(160deg, var(--white) 50%, var(--cyan-light) 100%); position: relative; overflow: hidden; }
.hero::before { content: ''; position: absolute; top: -150px; right: -150px; width: 540px; height: 540px; background: radial-gradient(circle, rgba(112,212,219,0.12) 0%, transparent 70%); border-radius: 50%; animation: floatOrb 8s ease-in-out infinite; }
.hero::after { content: ''; position: absolute; bottom: -100px; left: -80px; width: 380px; height: 380px; background: radial-gradient(circle, rgba(239,101,101,0.07) 0%, transparent 70%); border-radius: 50%; animation: floatOrb 11s ease-in-out infinite reverse; }
@keyframes floatOrb { 0%, 100% { transform: translateY(0) scale(1); } 50% { transform: translateY(-22px) scale(1.04); } }
.hero__label { font-size: 0.8rem; font-weight: 700; letter-spacing: 0.13em; text-transform: uppercase; color: var(--cyan-dark); margin-bottom: 20px; position: relative; }
.hero__title { font-family: var(--font-logo); font-size: clamp(2.1rem, 5vw, 3.5rem); line-height: 1.12; max-width: 800px; margin: 0 auto 22px; color: var(--text-dark); position: relative; text-align: center; width: 100%; }
.hero__title .highlight { color: var(--cyan-dark); }
.hero__title .highlight-coral { color: var(--coral); }
.hero__desc { font-size: 1.08rem; color: var(--gray); max-width: 560px; margin: 0 auto 44px; position: relative; }
.hero__actions { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; position: relative; }
.btn { display: inline-flex; align-items: center; gap: 8px; padding: 13px 28px; border-radius: 10px; font-weight: 700; font-size: 0.95rem; cursor: pointer; transition: all 0.22s; border: none; position: relative; overflow: hidden; font-family: var(--font); }
.btn::after { content: ''; position: absolute; inset: 0; background: rgba(255,255,255,0.16); transform: scaleX(0); transform-origin: left; transition: transform 0.3s ease; }
.btn:hover::after { transform: scaleX(1); }
.btn-primary { background: var(--coral); color: var(--white); }
.btn-primary:hover { background: var(--coral-dark); transform: translateY(-2px); box-shadow: 0 8px 24px rgba(239,101,101,0.28); }
.btn-outline { background: transparent; color: var(--text-dark); border: 2px solid var(--text-dark); }
.btn-outline:hover { border-color: var(--cyan); color: var(--cyan-deep); transform: translateY(-2px); }
.btn-white { background: var(--white); color: var(--cyan-deep); padding: 12px 26px; border-radius: 9px; font-weight: 800; font-size: 0.92rem; white-space: nowrap; transition: all 0.2s; }
.btn-white:hover { transform: translateY(-2px); box-shadow: 0 6px 20px rgba(0,0,0,0.14); }
.problem-strip { background: linear-gradient(135deg, var(--cyan-deep) 0%, var(--cyan-richer) 100%); color: var(--white); padding: 32px 24px; text-align: center; }
.problem-strip p { max-width: 800px; margin: 0 auto; font-size: 1.03rem; opacity: 0.92; }
.problem-strip strong { color: var(--cyan); }
.stats-strip { padding: 48px 24px; border-bottom: 1px solid rgba(112,212,219,0.18); }
.stats-inner { max-width: 800px; margin: 0 auto; display: flex; justify-content: space-around; gap: 24px; flex-wrap: wrap; }
.stat { text-align: center; }
.stat__num { font-family: var(--font-logo); font-size: 2.4rem; color: var(--coral); line-height: 1; transition: transform 0.3s; }
.stat:hover .stat__num { transform: scale(1.14); }
.stat__label { font-size: 0.83rem; color: var(--gray); margin-top: 4px; }
.services-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 28px; margin-top: 16px; }
.service-card { background: var(--white); border: 1.5px solid rgba(112,212,219,0.2); border-radius: var(--radius); padding: 36px 32px 40px; box-shadow: var(--shadow); transition: all 0.32s cubic-bezier(0.34,1.3,0.64,1); display: flex; flex-direction: column; cursor: pointer; position: relative; overflow: hidden; }
.service-card::before { content: ''; position: absolute; top: 0; left: 0; right: 0; height: 4px; background: linear-gradient(90deg, var(--coral), var(--cyan)); transform: scaleX(0); transform-origin: left; transition: transform 0.3s ease; }
.service-card:hover { transform: translateY(-8px) scale(1.01); box-shadow: var(--shadow-hover); border-color: var(--cyan); }
.service-card:hover::before { transform: scaleX(1); }
.card-icon { width: 52px; height: 52px; border-radius: 12px; background: var(--cyan-light); display: flex; align-items: center; justify-content: center; margin-bottom: 20px; transition: background 0.22s, transform 0.22s; }
.service-card:hover .card-icon { background: var(--cyan); transform: rotate(-4deg) scale(1.08); }
.card-icon svg { width: 22px; height: 22px; color: var(--cyan-deep); transition: color 0.2s; stroke-width: 2; }
.service-card:hover .card-icon svg { color: var(--white); }
.card-name { font-size: 0.74rem; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase; color: var(--cyan-dark); margin-bottom: 8px; }
.card-title { font-family: var(--font-logo); font-size: 1.2rem; font-weight: 400; margin-bottom: 12px; color: var(--text-dark); line-height: 1.25; }
.card-desc { font-size: 0.93rem; color: var(--gray); flex: 1; margin-bottom: 26px; line-height: 1.62; }
.card-from { font-size: 0.8rem; color: var(--gray); margin-bottom: 3px; }
.card-price { font-family: var(--font-logo); font-size: 1.7rem; color: var(--text-dark); margin-bottom: 18px; }
.card-price span { font-size: 0.88rem; font-weight: 500; color: var(--gray); font-family: var(--font); }
.card-link { display: inline-flex; align-items: center; gap: 8px; background: var(--cyan-light); color: var(--cyan-deep); font-weight: 700; font-size: 0.88rem; padding: 10px 18px; border-radius: 8px; transition: all 0.22s; align-self: flex-start; }
.card-link:hover { background: var(--coral); color: var(--white); }
.card-link svg { transition: transform 0.2s; }
.card-link:hover svg { transform: translateX(4px); }
.why-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); gap: 24px; }
.why-item { display: flex; flex-direction: column; gap: 10px; padding: 26px 22px; background: var(--white); border-radius: var(--radius); box-shadow: var(--shadow); border-bottom: 3px solid transparent; transition: border-color 0.22s, transform 0.22s; }
.why-item:hover { border-color: var(--cyan); transform: translateY(-4px); }
.why-icon { width: 40px; height: 40px; background: var(--cyan-light); border-radius: 10px; display: flex; align-items: center; justify-content: center; margin-bottom: 4px; }
.why-icon svg { width: 20px; height: 20px; color: var(--cyan-deep); stroke-width: 2; }
.why-item h4 { font-family: var(--font-logo); font-size: 1rem; font-weight: 400; color: var(--text-dark); }
.why-item p { font-size: 0.89rem; color: var(--gray); }
.page-hero { padding: 80px 24px 72px; background: linear-gradient(145deg, var(--cyan-light) 0%, var(--white) 65%); position: relative; overflow: hidden; }
.page-hero::before { content: ''; position: absolute; top: -80px; right: -80px; width: 420px; height: 420px; background: radial-gradient(circle, rgba(112,212,219,0.16) 0%, transparent 70%); border-radius: 50%; animation: floatOrb 9s ease-in-out infinite; }
.page-hero .container { position: relative; z-index: 1; }
.page-hero__eyebrow { display: flex; align-items: center; gap: 12px; margin-bottom: 20px; }
.page-hero__back { display: inline-flex; align-items: center; gap: 6px; font-size: 0.87rem; font-weight: 600; color: var(--gray); transition: color 0.2s, gap 0.2s; }
.page-hero__back:hover { color: var(--coral); gap: 10px; }
.page-hero__tag { font-size: 0.74rem; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase; color: var(--cyan-deep); background: var(--white); border: 1.5px solid var(--cyan); padding: 3px 12px; border-radius: 20px; }
.page-hero__title { font-family: var(--font-logo); font-size: clamp(1.9rem, 4.5vw, 3rem); line-height: 1.12; max-width: 700px; margin-bottom: 18px; color: var(--text-dark); }
.page-hero__title .accent { color: var(--cyan-dark); }
.page-hero__title .accent-coral { color: var(--coral); }
.page-hero__desc { font-size: 1.06rem; color: var(--gray); max-width: 600px; }
.problem-box { background: var(--coral-light); border-left: 4px solid var(--coral); border-radius: var(--radius); padding: 22px 26px; margin: 40px 0; }
.problem-box__label { font-size: 0.75rem; font-weight: 800; letter-spacing: 0.12em; text-transform: uppercase; color: var(--coral-dark); margin-bottom: 7px; }
.problem-box p { font-size: 0.96rem; color: var(--text-dark); font-weight: 500; }
.pricing-section { padding: 72px 0; }
.pricing-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)); gap: 16px; margin-top: 40px; }
.pricing-card { background: var(--cyan-light); border: 2px solid transparent; border-radius: var(--radius); padding: 28px 22px; text-align: center; transition: all 0.24s; }
.pricing-card:hover { border-color: var(--cyan); transform: translateY(-5px); box-shadow: var(--shadow-hover); }
.pricing-card.featured { background: var(--cyan); }
.pricing-card__label { font-size: 0.74rem; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase; color: var(--cyan-deep); margin-bottom: 7px; }
.pricing-card__volume { font-size: 0.9rem; color: var(--gray); margin-bottom: 11px; }
.pricing-card__price { font-family: var(--font-logo); font-size: 1.9rem; color: var(--text-dark); line-height: 1; margin-bottom: 4px; }
.pricing-card__unit { font-size: 0.83rem; color: var(--gray); margin-bottom: 10px; }
.pricing-card__option { font-size: 0.78rem; font-weight: 600; color: var(--cyan-deep); background: rgba(255,255,255,0.6); border-radius: 6px; padding: 4px 10px; display: inline-block; }
.pricing-card__savings { font-size: 0.8rem; font-weight: 700; color: var(--coral-dark); margin-top: 8px; }
.pricing-note { margin-top: 20px; background: var(--coral-light); border-radius: 8px; padding: 14px 18px; font-size: 0.87rem; color: var(--coral-dark); font-weight: 600; text-align: center; }
.includes-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 24px; margin-top: 40px; }
@media (max-width: 640px) { .includes-grid { grid-template-columns: 1fr; } }
.includes-box { border-radius: var(--radius); padding: 26px; }
.includes-box--yes { background: var(--cyan-light); border: 1.5px solid rgba(112,212,219,0.38); }
.includes-box--no { background: var(--coral-light); border: 1.5px solid rgba(239,101,101,0.22); }
.includes-box__title { display: flex; align-items: center; gap: 8px; font-size: 0.8rem; font-weight: 800; letter-spacing: 0.08em; text-transform: uppercase; margin-bottom: 14px; }
.includes-box--yes .includes-box__title { color: var(--cyan-deep); }
.includes-box--no .includes-box__title { color: var(--coral-dark); }
.includes-box ul { list-style: none; }
.includes-box li { display: flex; align-items: flex-start; gap: 10px; font-size: 0.91rem; color: var(--text-dark); padding: 7px 0; border-bottom: 1px solid rgba(0,0,0,0.05); }
.includes-box li:last-child { border-bottom: none; }
.check { color: var(--cyan-deep); font-weight: 900; }
.cross { color: var(--coral-dark); font-weight: 900; }
.criteria-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(260px, 1fr)); gap: 20px; margin-top: 36px; }
.criteria-card { background: var(--white); border: 1.5px solid rgba(112,212,219,0.2); border-radius: var(--radius); padding: 22px; box-shadow: var(--shadow); transition: transform 0.2s, border-color 0.2s; }
.criteria-card:hover { transform: translateY(-3px); border-color: var(--cyan); }
.criteria-card__label { font-size: 0.73rem; font-weight: 800; letter-spacing: 0.1em; text-transform: uppercase; color: var(--cyan-deep); margin-bottom: 10px; }
.criteria-card ul { list-style: none; }
.criteria-card li { font-size: 0.87rem; color: var(--gray); padding: 4px 0 4px 14px; position: relative; }
.criteria-card li::before { content: '→'; position: absolute; left: 0; color: var(--coral); font-size: 0.73rem; }
.devis-cta { background: linear-gradient(135deg, var(--cyan-deep), var(--cyan-richer)); border-radius: var(--radius); padding: 28px 32px; display: flex; align-items: center; justify-content: space-between; gap: 20px; flex-wrap: wrap; margin: 40px 0; }
.devis-cta p { color: var(--white); font-size: 1rem; font-weight: 600; }
.devis-cta strong { display: block; font-size: 1.1rem; }
.comparison-section { padding: 80px 0; }
.comparison-wrap { position: relative; overflow: hidden; border-radius: var(--radius); box-shadow: var(--shadow-hover); cursor: col-resize; user-select: none; border: 1.5px solid rgba(112,212,219,0.25); height: 500px; }
.comparison-before, .comparison-after-panel { position: absolute; top: 0; left: 0; right: 0; bottom: 0; overflow: hidden; }
.comparison-after-panel { clip-path: inset(0 50% 0 0); }
.comparison-handle { position: absolute; top: 0; bottom: 0; left: 50%; transform: translateX(-50%); width: 3px; background: var(--white); z-index: 10; pointer-events: none; box-shadow: 0 0 10px rgba(0,0,0,0.2); }
.comparison-handle-btn { position: absolute; top: 50%; left: 50%; transform: translate(-50%, -50%); width: 44px; height: 44px; background: var(--white); border-radius: 50%; box-shadow: 0 4px 16px rgba(0,0,0,0.18); display: flex; align-items: center; justify-content: center; pointer-events: none; z-index: 11; }
.comparison-handle-btn svg { width: 18px; height: 18px; color: var(--text-dark); }
.comparison-labels { position: absolute; top: 14px; left: 0; right: 0; display: flex; justify-content: space-between; padding: 0 16px; z-index: 12; pointer-events: none; }
.comparison-labels span { background: rgba(0,0,0,0.5); color: var(--white); font-size: 0.73rem; font-weight: 700; padding: 5px 12px; border-radius: 20px; letter-spacing: 0.07em; text-transform: uppercase; }
.comparison-labels .label-after { background: var(--coral); }
.fp-before { width: 100%; height: 100%; background: #ebebeb; font-family: 'Times New Roman', Times, serif; font-size: 10px; color: #111; padding: 22px; overflow: hidden; }
.fp-before-header { background: #c0c0c0; border: 2px solid #888; padding: 10px 16px; text-align: center; font-size: 12.5px; font-weight: bold; text-transform: uppercase; margin-bottom: 12px; }
.fp-before-meta { border: 1px solid #aaa; padding: 8px 12px; font-size: 10px; margin-bottom: 14px; line-height: 1.8; background: #ddd; }
.fp-before-meta .red { color: #cc0000; font-weight: bold; }
.fp-before-section { font-weight: bold; text-transform: uppercase; font-size: 10px; border-bottom: 1.5px solid #777; padding-bottom: 3px; margin: 12px 0 7px; }
.fp-before ul { padding-left: 14px; }
.fp-before li { margin-bottom: 4px; font-size: 10px; }
.fp-before .red { color: #cc0000; font-weight: bold; }
.fp-before-postuler { border: 1px dashed #888; padding: 8px 10px; margin-top: 12px; font-size: 9.5px; background: #e5e5e5; }
.fp-before-footer { font-style: italic; font-size: 8.5px; color: #888; text-align: center; margin-top: 20px; }
.fp-after { width: 100%; height: 100%; background: var(--white); display: flex; overflow: hidden; }
.fp-after-sidebar { width: 38%; background: linear-gradient(180deg, #391165 0%, #1c0a3a 100%); padding: 22px 16px; color: white; display: flex; flex-direction: column; gap: 14px; }
.fp-after-logo { font-family: 'Paytone One', sans-serif; font-size: 16px; }
.fp-after-logo span { color: var(--coral); }
.fp-after-about { font-size: 8.5px; opacity: 0.75; line-height: 1.5; }
.fp-after-label { font-size: 7.5px; font-weight: 700; letter-spacing: 0.12em; text-transform: uppercase; color: var(--cyan); margin-bottom: 5px; }
.fp-after-detail { background: rgba(255,255,255,0.08); border-radius: 5px; padding: 6px 9px; margin-top: 5px; }
.fp-after-detail span { font-size: 8px; opacity: 0.65; display: block; margin-bottom: 1px; }
.fp-after-detail strong { font-size: 10px; }
.fp-after-body { flex: 1; padding: 20px 16px; overflow: hidden; }
.fp-after-title { font-family: 'Paytone One', sans-serif; font-size: 17px; color: #391165; line-height: 1.2; margin-bottom: 4px; }
.fp-after-title span { color: var(--coral); }
.fp-after-tags { font-size: 8px; color: var(--gray); margin-bottom: 14px; }
.fp-after-block { margin-bottom: 11px; }
.fp-after-block-title { font-size: 7.5px; font-weight: 800; text-transform: uppercase; letter-spacing: 0.09em; color: var(--cyan-deep); border-bottom: 2px solid var(--cyan); padding-bottom: 3px; margin-bottom: 6px; }
.fp-after-block ul { list-style: none; }
.fp-after-block li { font-size: 9px; padding: 3px 0 3px 13px; position: relative; color: var(--text-dark); border-bottom: 1px solid rgba(0,0,0,0.04); }
.fp-after-block li::before { content: '✓'; position: absolute; left: 0; color: var(--cyan-deep); font-weight: 900; font-size: 8px; }
.proc-before { width: 100%; height: 100%; background: #f0f0f0; font-family: 'Times New Roman', Times, serif; font-size: 10px; color: #222; padding: 20px; overflow: hidden; }
.proc-before-header { border: 2px solid #777; background: #d4d4d4; padding: 10px 14px; text-align: center; font-size: 12px; font-weight: bold; text-transform: uppercase; margin-bottom: 12px; }
.proc-before-meta { border: 1px solid #aaa; background: #dedede; padding: 8px 12px; font-size: 9.5px; margin-bottom: 14px; line-height: 1.9; }
.proc-before-meta .red { color: #cc0000; font-weight: bold; }
.proc-before-section { font-weight: bold; text-transform: uppercase; font-size: 10px; border-bottom: 2px solid #666; padding-bottom: 3px; margin: 11px 0 7px; }
.proc-before ul { list-style: disc; padding-left: 14px; }
.proc-before li { margin-bottom: 4px; font-size: 9.5px; }
.proc-before .red { color: #cc0000; font-weight: bold; }
.proc-before-warning { border: 1px dashed #888; padding: 8px 10px; margin-top: 12px; font-size: 9px; background: #e8e8e8; }
.proc-before-footer { font-style: italic; font-size: 8px; color: #888; text-align: center; margin-top: 18px; }
.proc-after { width: 100%; height: 100%; background: var(--white); padding: 22px; overflow: hidden; }
.proc-after-header { display: flex; justify-content: space-between; align-items: flex-start; border-bottom: 3px solid var(--cyan); padding-bottom: 12px; margin-bottom: 18px; }
.proc-after-logo { font-family: 'Paytone One', sans-serif; font-size: 16px; color: #391165; }
.proc-after-logo span { color: var(--coral); }
.proc-after-docinfo { text-align: right; font-size: 8px; color: var(--gray); }
.proc-after-docinfo strong { color: var(--coral); font-size: 9px; display: block; }
.proc-after-title { font-family: 'Paytone One', sans-serif; font-size: 18px; color: #391165; margin-bottom: 4px; }
.proc-after-title span { color: var(--coral); }
.proc-after-subtitle { font-size: 9px; color: var(--gray); margin-bottom: 14px; }
.proc-after-meta { display: grid; grid-template-columns: 1fr 1fr 1fr; gap: 8px; margin-bottom: 16px; }
.proc-after-meta-card { background: var(--gray-light); border-left: 3px solid #391165; padding: 7px 9px; border-radius: 0 6px 6px 0; }
.proc-after-meta-card span { font-size: 7.5px; text-transform: uppercase; color: var(--gray); display: block; margin-bottom: 2px; letter-spacing: 0.06em; }
.proc-after-meta-card strong { font-size: 9px; color: #391165; }
.proc-after-steps { display: flex; flex-direction: column; gap: 10px; }
.proc-after-step { display: grid; grid-template-columns: 36px 1fr; gap: 10px; align-items: flex-start; }
.proc-after-num { width: 32px; height: 32px; border-radius: 50%; background: #391165; color: white; display: flex; align-items: center; justify-content: center; font-family: 'Paytone One', sans-serif; font-size: 13px; border: 2.5px solid var(--cyan); flex-shrink: 0; }
.proc-after-num.coral { background: var(--coral); border-color: rgba(255,255,255,0.7); }
.proc-after-step-content { border: 1px solid rgba(0,0,0,0.08); border-radius: 7px; padding: 10px 12px; }
.proc-after-step-content h4 { font-size: 10px; font-weight: 800; color: #391165; margin-bottom: 5px; }
.proc-after-step-content ul { list-style: none; }
.proc-after-step-content li { font-size: 8.5px; color: var(--gray); padding: 2px 0 2px 12px; position: relative; }
.proc-after-step-content li::before { content: '✓'; position: absolute; left: 0; color: var(--cyan-deep); font-size: 8px; }
.contact-preview { position: relative; border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow-hover); margin-top: 40px; }
.contact-preview-inner { padding: 28px; background: white; }
.contact-preview-header { display: flex; justify-content: space-between; align-items: center; margin-bottom: 16px; padding-bottom: 12px; border-bottom: 2px solid var(--cyan); }
.contact-preview-logo { font-family: var(--font-logo); font-size: 15px; }
.contact-preview-logo span { color: var(--coral); }
.contact-preview-table { width: 100%; border-collapse: collapse; font-size: 11px; }
.contact-preview-table th { background: var(--cyan-deep); color: white; padding: 8px 10px; text-align: left; font-size: 9.5px; text-transform: uppercase; letter-spacing: 0.06em; }
.contact-preview-table td { padding: 7px 10px; border-bottom: 1px solid rgba(112,212,219,0.18); }
.contact-preview-table tr:nth-child(even) td { background: var(--cyan-light); }
.blur-row td { filter: blur(5px); user-select: none; pointer-events: none; }
.contact-preview-overlay { position: absolute; bottom: 0; left: 0; right: 0; height: 50%; background: linear-gradient(to bottom, rgba(255,255,255,0) 0%, rgba(255,255,255,0.97) 60%); display: flex; flex-direction: column; align-items: center; justify-content: flex-end; padding-bottom: 32px; }
.status-badge { display: inline-block; padding: 2px 8px; border-radius: 10px; font-size: 8.5px; font-weight: 700; }
.status-hot { background: var(--coral-light); color: var(--coral-dark); }
.status-warm { background: #fff8e1; color: #b45309; }
.status-cold { background: var(--cyan-light); color: var(--cyan-deep); }
.report-preview { background: white; border-radius: var(--radius); box-shadow: var(--shadow-hover); overflow: hidden; margin-top: 40px; }
.report-preview-header { background: linear-gradient(135deg, var(--cyan-deep), var(--cyan-richer)); color: white; padding: 20px 28px; display: flex; justify-content: space-between; align-items: center; }
.report-preview-logo { font-family: var(--font-logo); font-size: 16px; }
.report-preview-logo span { color: var(--coral); }
.report-preview-score { width: 56px; height: 56px; background: var(--coral); border-radius: 50%; display: flex; flex-direction: column; align-items: center; justify-content: center; }
.report-preview-score .num { font-family: var(--font-logo); font-size: 18px; color: white; line-height: 1; }
.report-preview-score .denom { font-size: 8px; color: rgba(255,255,255,0.75); }
.report-preview-body { padding: 24px 28px; }
.report-bar { display: flex; align-items: center; gap: 12px; margin-bottom: 12px; }
.report-bar-label { font-size: 9px; font-weight: 700; color: var(--gray); width: 110px; text-transform: uppercase; letter-spacing: 0.06em; flex-shrink: 0; }
.report-bar-track { flex: 1; height: 10px; background: var(--cyan-light); border-radius: 5px; overflow: hidden; }
.report-bar-fill { height: 100%; border-radius: 5px; background: linear-gradient(90deg, var(--cyan), var(--cyan-dark)); }
.report-bar-fill.low { background: linear-gradient(90deg, var(--coral), var(--coral-dark)); }
.report-bar-score { font-size: 9px; font-weight: 700; color: var(--text-dark); width: 32px; text-align: right; flex-shrink: 0; }
.contact-section { padding: 84px 0; background: linear-gradient(148deg, var(--cyan-deep) 0%, var(--cyan-richer) 100%); color: var(--white); position: relative; overflow: hidden; }
.contact-section::before { content: ''; position: absolute; top: -100px; right: -100px; width: 400px; height: 400px; background: radial-gradient(circle, rgba(255,255,255,0.06) 0%, transparent 70%); border-radius: 50%; }
.contact-section .section-title { color: var(--white); }
.contact-section .section-sub { color: rgba(255,255,255,0.7); }
.contact-section .badge { background: rgba(255,255,255,0.12); color: rgba(255,255,255,0.9); }
.form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
@media (max-width: 580px) { .form-grid { grid-template-columns: 1fr; } }
.form-group { display: flex; flex-direction: column; gap: 8px; }
.form-group.full { grid-column: 1 / -1; }
.form-group label { font-size: 0.82rem; font-weight: 600; color: rgba(255,255,255,0.8); letter-spacing: 0.04em; }
.form-group input, .form-group select, .form-group textarea { background: rgba(255,255,255,0.1); border: 1.5px solid rgba(255,255,255,0.18); border-radius: 9px; padding: 12px 15px; font-size: 0.93rem; color: var(--white); font-family: var(--font); transition: border-color 0.2s, background 0.2s; outline: none; }
.form-group input::placeholder, .form-group textarea::placeholder { color: rgba(255,255,255,0.35); }
.form-group input:focus, .form-group select:focus, .form-group textarea:focus { border-color: var(--cyan); background: rgba(255,255,255,0.14); }
.form-group select { cursor: pointer; appearance: none; background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' fill='none'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%2370d4db' stroke-width='2' stroke-linecap='round'/%3E%3C/svg%3E"); background-repeat: no-repeat; background-position: right 14px center; background-color: rgba(255,255,255,0.1); padding-right: 38px; }
.form-group select option { background: var(--cyan-richer); color: var(--white); }
.form-group textarea { resize: vertical; min-height: 126px; }
.form-submit { margin-top: 8px; display: flex; align-items: center; gap: 16px; flex-wrap: wrap; }
.form-success { display: none; background: rgba(112,212,219,0.2); border: 1.5px solid var(--cyan); border-radius: 9px; padding: 14px 18px; font-size: 0.91rem; color: var(--cyan); font-weight: 600; margin-top: 16px; }
.about-hero { padding: 88px 24px 80px; background: linear-gradient(145deg, var(--cyan-light) 0%, var(--white) 60%); position: relative; overflow: hidden; }
.about-hero .container { position: relative; z-index: 1; }
.about-hero-grid { display: grid; grid-template-columns: auto 1fr; gap: 64px; align-items: center; }
@media (max-width: 768px) { .about-hero-grid { grid-template-columns: 1fr; gap: 40px; } }
.founder-photo-wrap { width: 280px; height: 380px; border-radius: 20px; overflow: hidden; position: relative; flex-shrink: 0; box-shadow: var(--shadow-hover); border: 3px solid var(--white); outline: 3px solid var(--cyan); outline-offset: 4px; }
.founder-photo { position: absolute; top: 50%; left: 50%; height: 280px; width: auto; transform: translate(-50%, -50%) rotate(-90deg); }
.founder-tag { position: absolute; bottom: 16px; left: 50%; transform: translateX(-50%); background: var(--coral); color: white; font-size: 0.77rem; font-weight: 700; padding: 6px 16px; border-radius: 20px; white-space: nowrap; z-index: 2; }
.about-intro-label { font-size: 0.74rem; font-weight: 700; letter-spacing: 0.13em; text-transform: uppercase; color: var(--cyan-dark); margin-bottom: 12px; }
.about-intro-title { font-family: var(--font-logo); font-size: clamp(1.8rem, 3.5vw, 2.8rem); line-height: 1.15; color: var(--text-dark); margin-bottom: 8px; }
.about-intro-title span { color: var(--coral); }
.about-intro-subtitle { font-size: 1rem; color: var(--gray); margin-bottom: 24px; font-weight: 500; }
.about-intro-desc { font-size: 1.04rem; color: var(--text-dark); line-height: 1.72; }
.special-hero { padding: 80px 24px 64px; background: linear-gradient(145deg, var(--coral-light) 0%, var(--white) 70%); position: relative; overflow: hidden; }
.special-hero::before { content: ''; position: absolute; top: -60px; right: -60px; width: 340px; height: 340px; background: radial-gradient(circle, rgba(239,101,101,0.1) 0%, transparent 70%); border-radius: 50%; }
.special-hero .container { position: relative; z-index: 1; }
.footer { background: var(--cyan-richer); padding: 44px 24px 28px; text-align: center; color: rgba(255,255,255,0.5); }
.footer__logo { font-family: var(--font-logo); font-size: 1.4rem; margin-bottom: 12px; }
.footer__logo span.reli { color: var(--coral); }
.footer__logo span.task { color: var(--cyan); }
.footer__info { font-size: 0.82rem; line-height: 1.9; }
.footer__info a { color: var(--cyan); transition: color 0.2s; }
.footer__info a:hover { color: var(--white); }
.footer__legal { display: flex; justify-content: center; gap: 20px; margin-top: 14px; flex-wrap: wrap; }
.footer__legal a { font-size: 0.79rem; color: rgba(255,255,255,0.42); border-bottom: 1px solid rgba(255,255,255,0.18); transition: color 0.2s; }
.footer__legal a:hover { color: var(--white); }
.legal-section { padding: 72px 0; max-width: 800px; margin: 0 auto; }
.legal-section h2 { font-family: var(--font-logo); font-size: 1.2rem; font-weight: 400; color: var(--cyan-deep); margin-top: 38px; margin-bottom: 11px; border-bottom: 2px solid var(--cyan-light); padding-bottom: 6px; }
.legal-section h2:first-child { margin-top: 0; }
.legal-section p { font-size: 0.95rem; color: var(--gray); margin-bottom: 11px; line-height: 1.7; }
.legal-section .placeholder-block { background: var(--cyan-light); border: 2px dashed var(--cyan); border-radius: 10px; padding: 18px 22px; color: var(--cyan-deep); font-size: 0.89rem; font-style: italic; text-align: center; margin: 18px 0; }
@media (max-width: 768px) { .section { padding: 58px 0; } .nav-links { display: none; } .hero { padding: 70px 20px 58px; } .page-hero, .about-hero, .special-hero { padding: 58px 20px 52px; } .pricing-grid { grid-template-columns: 1fr 1fr; } .devis-cta { flex-direction: column; text-align: center; } .contact-section { padding: 58px 0; } .comparison-wrap { height: 340px; } .fp-after-sidebar { width: 32%; padding: 14px 10px; } }
@media (max-width: 480px) { .pricing-grid { grid-template-columns: 1fr; } .comparison-wrap { height: 280px; } .founder-photo-wrap { width: 220px; height: 300px; margin: 0 auto; } }

/* ===== WHY-V2 SECTION ===== */
.why-v2 { display: grid; grid-template-columns: 1fr 1fr; gap: 2px; border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow); background: rgba(112,212,219,0.1); }
@media (max-width: 700px) { .why-v2 { grid-template-columns: 1fr; } }
.why-v2-item { padding: 38px 32px; background: var(--white); display: flex; gap: 18px; align-items: flex-start; transition: background 0.22s; }
.why-v2-item:hover { background: var(--cyan-light); }
.why-v2-num { font-family: var(--font-logo); font-size: 3rem; line-height: 1; color: var(--coral); opacity: 0.18; flex-shrink: 0; transition: opacity 0.22s; }
.why-v2-item:hover .why-v2-num { opacity: 0.45; }
.why-v2-tag { display: inline-block; background: var(--cyan-light); color: var(--cyan-deep); font-size: 0.7rem; font-weight: 700; padding: 3px 10px; border-radius: 20px; margin-bottom: 7px; letter-spacing: 0.07em; text-transform: uppercase; }
.why-v2-item h4 { font-weight: 800; font-size: 1rem; color: var(--text-dark); margin-bottom: 6px; }
.why-v2-item p { font-size: 0.9rem; color: var(--gray); line-height: 1.65; }
