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

:root {
  --white: #FFFFFF;
  --bg-soft: #F5F7FA;
  --bg-soft-2: #EEF2F7;
  --ink: #0E1F3A;
  --blue: #123B73;
  --blue-600: #1B4E97;
  --blue-700: #0F2F5C;
  --blue-tint: #E9F0FA;
  --blue-line: rgba(255,255,255,0.12);
  --red: #C1121F;
  --red-tint: #FBEAEC;
  --slate: #56657C;
  --slate-2: #8593A6;
  --line: #E3E9F1;
  --line-2: #EEF2F7;
  --ok: #1F7A4D;
  --ok-tint: #E7F4EC;
  --shadow-sm: 0 1px 2px rgba(14,31,58,0.05), 0 6px 20px rgba(14,31,58,0.05);
  --shadow-md: 0 20px 50px rgba(14,31,58,0.12);
  --font-head: 'Archivo', -apple-system, BlinkMacSystemFont, sans-serif;
  --font-body: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  --wrap: 1180px;
  --r: 12px;
}

html { scroll-behavior: smooth; }
body {
  font-family: var(--font-body);
  color: var(--ink);
  background: var(--white);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
img { max-width: 100%; display: block; }
.wrap { max-width: var(--wrap); margin: 0 auto; padding: 0 28px; }

h1, h2, h3, h4 { font-family: var(--font-head); font-weight: 700; letter-spacing: -0.02em; line-height: 1.1; color: var(--ink); }
.num { font-variant-numeric: tabular-nums; }

.eyebrow {
  font-family: var(--font-body);
  font-size: 0.76rem; font-weight: 700; letter-spacing: 0.14em; text-transform: uppercase;
  color: var(--blue-600); display: inline-flex; align-items: center; gap: 10px;
}
.eyebrow::before { content: ''; width: 20px; height: 2px; background: var(--red); display: inline-block; }
.eyebrow.center { justify-content: center; }

/* ---------- NAV ---------- */
.nav { position: sticky; top: 0; z-index: 200; background: rgba(255,255,255,0.86); backdrop-filter: saturate(180%) blur(12px); -webkit-backdrop-filter: saturate(180%) blur(12px); border-bottom: 1px solid transparent; transition: border-color .3s ease; }
.nav.scrolled { border-bottom-color: var(--line); }
.nav-inner { max-width: var(--wrap); margin: 0 auto; padding: 0 28px; height: 70px; display: flex; align-items: center; justify-content: space-between; }
.brand { display: flex; align-items: center; gap: 11px; text-decoration: none; }
.brand-mark { width: 40px; height: 30px; color: transparent; font-size: 0; background: url("data:image/svg+xml,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 40 30' fill='none' stroke='%23123B73' stroke-width='2.3' stroke-linecap='round' stroke-linejoin='round'><path d='M2 16 10 9l8 7'/><path d='M5 15v10h9'/><path d='M14 15 25 5l11 10'/><path d='M18 14v12h14V14'/><rect x='22.5' y='18' width='5' height='8' fill='%23C1121F' stroke='none'/></svg>") center/contain no-repeat; }
.footer .brand-mark { background-image: url("data:image/svg+xml,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 40 30' fill='none' stroke='%23ffffff' stroke-width='2.3' stroke-linecap='round' stroke-linejoin='round'><path d='M2 16 10 9l8 7'/><path d='M5 15v10h9'/><path d='M14 15 25 5l11 10'/><path d='M18 14v12h14V14'/><rect x='22.5' y='18' width='5' height='8' fill='%23C1121F' stroke='none'/></svg>"); }
.brand-name .crib { color: var(--blue-600); }
.footer .brand-name .crib { color: #7FA8DE; }
.brand-name { font-family: var(--font-head); font-size: 1.32rem; font-weight: 800; color: var(--ink); letter-spacing: -0.03em; }
.nav-links { display: flex; align-items: center; gap: 26px; margin-left: 44px; }
.nav-links a { font-size: 0.92rem; font-weight: 500; color: var(--slate); text-decoration: none; transition: color .2s ease; }
.nav-links a:hover { color: var(--ink); }
.nav-cta { font-family: var(--font-body); font-size: 0.9rem; font-weight: 600; color: #fff; background: var(--blue); padding: 11px 22px; border-radius: 9px; text-decoration: none; transition: background .2s ease, transform .2s ease; }
.nav-cta:hover { background: var(--blue-600); transform: translateY(-1px); }
.lang-toggle { background: none; border: 1px solid var(--line); color: var(--slate); font-family: var(--font-body); font-size: 0.8rem; font-weight: 700; letter-spacing: 0.04em; padding: 8px 12px; border-radius: 8px; cursor: pointer; margin-right: 14px; transition: border-color .2s ease, color .2s ease; }
.lang-toggle:hover { border-color: var(--blue-600); color: var(--blue-600); }
#langToggleM { font-weight: 700; color: var(--blue-600); }
.nav-links a.active { color: var(--blue-600); font-weight: 600; }
.nav-toggle { display: none; flex-direction: column; gap: 5px; background: none; border: 0; cursor: pointer; padding: 6px; }
.nav-toggle span { width: 22px; height: 2px; background: var(--ink); border-radius: 2px; transition: transform .3s ease, opacity .3s ease; }
.nav-toggle.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-toggle.open span:nth-child(2) { opacity: 0; }
.nav-toggle.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }
.mobile-menu { display: none; position: fixed; top: 70px; left: 0; right: 0; background: #fff; border-bottom: 1px solid var(--line); padding: 12px 28px 22px; box-shadow: var(--shadow-md); z-index: 150; }
.mobile-menu.open { display: block; animation: fade .2s ease; }
.mobile-menu a { display: block; padding: 13px 0; font-size: 1rem; font-weight: 500; color: var(--ink); text-decoration: none; border-bottom: 1px solid var(--line-2); }
.mobile-menu a.btn { border: 0; justify-content: center; margin-top: 14px; color: #fff; }
section[id], header[id] { scroll-margin-top: 84px; }

/* ---------- BUTTONS ---------- */
.btn { display: inline-flex; align-items: center; gap: 10px; font-family: var(--font-body); font-size: 0.98rem; font-weight: 600; padding: 15px 28px; border-radius: 10px; text-decoration: none; cursor: pointer; border: 1px solid transparent; transition: all .22s ease; }
.btn-primary { background: var(--blue); color: #fff; }
.btn-primary:hover { background: var(--blue-600); transform: translateY(-2px); box-shadow: 0 14px 30px rgba(18,59,115,0.28); }
.btn-ghost { background: #fff; color: var(--ink); border-color: var(--line); }
.btn-ghost:hover { border-color: var(--slate-2); }
.btn .arw { transition: transform .22s ease; }
.btn:hover .arw { transform: translateX(4px); }

/* ---------- HERO ---------- */
.hero { position: relative; padding: 80px 0 64px; overflow: hidden; }
.hero::before { content: ''; position: absolute; top: -10%; right: -12%; width: 620px; height: 620px; background: radial-gradient(circle, var(--blue-tint), transparent 62%); z-index: 0; }
.hero-grid { position: relative; z-index: 1; display: grid; grid-template-columns: 1.05fr 0.95fr; gap: 54px; align-items: center; }
.hero-flag { display: inline-flex; align-items: center; gap: 9px; font-size: 0.78rem; font-weight: 600; color: var(--slate); background: #fff; border: 1px solid var(--line); padding: 7px 14px; border-radius: 100px; margin-bottom: 26px; }
.hero-flag .stripes { display: inline-flex; gap: 3px; }
.hero-flag .stripes i { width: 4px; height: 12px; border-radius: 1px; }
.hero-flag .s1 { background: var(--red); } .hero-flag .s2 { background: #fff; border: 1px solid var(--line); } .hero-flag .s3 { background: var(--blue); }
.hero h1 { font-size: clamp(2.6rem, 5.2vw, 4rem); font-weight: 800; margin-bottom: 22px; letter-spacing: -0.03em; }
.hero h1 .u { color: var(--blue-600); position: relative; white-space: nowrap; }
.hero h1 .u::after { content: ''; position: absolute; left: 0; right: 0; bottom: 4px; height: 8px; background: rgba(193,18,31,0.16); z-index: -1; }
.hero-sub { font-size: 1.16rem; color: var(--slate); max-width: 520px; margin-bottom: 32px; }
.hero-sub strong { color: var(--ink); font-weight: 600; }
.hero-actions { display: flex; flex-wrap: wrap; gap: 14px; margin-bottom: 30px; }
.hero-note { font-size: 0.88rem; color: var(--slate); display: flex; align-items: center; gap: 9px; }

.hero-visual { position: relative; }
.hero-img { border-radius: 18px; overflow: hidden; box-shadow: var(--shadow-md); aspect-ratio: 4/5; }
.hero-img img { width: 100%; height: 100%; object-fit: cover; }
.hero-badge-card { position: absolute; left: -26px; bottom: 34px; background: #fff; border-radius: 14px; box-shadow: var(--shadow-md); padding: 18px 22px; display: flex; align-items: center; gap: 16px; border: 1px solid var(--line); }
.hbc-val { font-family: var(--font-head); font-size: 1.8rem; font-weight: 800; color: var(--blue); line-height: 1; }
.hbc-lab { font-size: 0.78rem; color: var(--slate); margin-top: 3px; max-width: 130px; }
.hbc-sep { width: 1px; height: 40px; background: var(--line); }

/* trust strip */
.trust { border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); background: var(--bg-soft); }
.trust-inner { display: grid; grid-template-columns: repeat(4, 1fr); }
.trust-item { padding: 26px 20px; text-align: center; border-right: 1px solid var(--line); }
.trust-item:last-child { border-right: 0; }
.trust-item .t-val { font-family: var(--font-head); font-size: 2.1rem; font-weight: 800; color: var(--ink); line-height: 1; }
.trust-item .t-lab { font-size: 0.8rem; color: var(--slate); margin-top: 8px; }

/* ---------- SECTIONS ---------- */
.sec { padding: 92px 0; }
.sec.soft { background: var(--bg-soft); }
.sec.dark { background: var(--blue-700); color: #fff; }
.sec-head { max-width: 680px; margin-bottom: 50px; }
.sec-head.center { margin: 0 auto 50px; text-align: center; }
.sec-head h2 { font-size: clamp(1.9rem, 4vw, 2.8rem); font-weight: 800; margin: 15px 0 16px; }
.sec-head p { font-size: 1.08rem; color: var(--slate); }
.sec-head p strong { color: var(--ink); font-weight: 600; }
.sec.dark .sec-head p { color: rgba(255,255,255,0.7); }
.sec.dark .sec-head h2 { color: #fff; }
.sec.dark .eyebrow { color: #9FC0EE; }

/* ---------- WHY USA ---------- */
.why-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
.why-card { background: #fff; border: 1px solid var(--line); border-radius: var(--r); padding: 30px; transition: box-shadow .3s ease, transform .3s ease; }
.why-card:hover { box-shadow: var(--shadow-md); transform: translateY(-3px); }
.why-ic { width: 44px; height: 44px; border-radius: 11px; background: var(--blue-tint); color: var(--blue-600); display: grid; place-items: center; margin-bottom: 18px; }
.why-card h3 { font-size: 1.15rem; font-weight: 700; margin-bottom: 9px; }
.why-card p { font-size: 0.95rem; color: var(--slate); }
.why-card .why-stat { font-family: var(--font-head); font-weight: 800; color: var(--blue); }
.why-banner { margin-top: 22px; background: var(--blue-700); color: #fff; border-radius: var(--r); padding: 30px 34px; display: flex; align-items: center; gap: 26px; flex-wrap: wrap; }
.why-banner .wb-big { font-family: var(--font-head); font-size: 2.6rem; font-weight: 800; line-height: 1; }
.why-banner .wb-big .red { color: #FF6B78; }
.why-banner .wb-txt { font-size: 0.98rem; color: rgba(255,255,255,0.78); max-width: 640px; }

/* ---------- MARKETPLACE ---------- */
.mkt-tabs { display: inline-flex; background: var(--bg-soft); border: 1px solid var(--line); border-radius: 100px; padding: 5px; margin-bottom: 34px; }
.mkt-tab { border: 0; background: none; cursor: pointer; font-family: var(--font-body); font-size: 0.92rem; font-weight: 600; color: var(--slate); padding: 9px 20px; border-radius: 100px; display: inline-flex; align-items: center; gap: 8px; transition: all .2s ease; }
.mkt-tab.active { background: #fff; color: var(--ink); box-shadow: var(--shadow-sm); }
.mkt-tab .cnt { font-size: 0.76rem; background: var(--line); color: var(--slate); border-radius: 100px; padding: 1px 8px; }
.mkt-tab.active .cnt { background: var(--blue-tint); color: var(--blue-600); }

.deals { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.deal-card { background: #fff; border: 1px solid var(--line); border-radius: 14px; overflow: hidden; cursor: pointer; transition: box-shadow .3s ease, transform .3s ease, border-color .3s ease; display: flex; flex-direction: column; }
.deal-card:hover { box-shadow: var(--shadow-md); transform: translateY(-4px); border-color: #CFDBEA; }
.deal-media { position: relative; aspect-ratio: 3/2; overflow: hidden; background: var(--bg-soft-2); }
.deal-media img { width: 100%; height: 100%; object-fit: cover; transition: transform .5s ease; }
.deal-card:hover .deal-media img { transform: scale(1.04); }
.deal-status { position: absolute; top: 14px; left: 14px; font-size: 0.72rem; font-weight: 700; letter-spacing: 0.04em; text-transform: uppercase; padding: 6px 12px; border-radius: 100px; backdrop-filter: blur(4px); }
.st-disponible { background: rgba(193,18,31,0.92); color: #fff; }
.st-encours { background: rgba(18,59,115,0.92); color: #fff; }
.st-termine { background: rgba(31,122,77,0.92); color: #fff; }
.deal-body { padding: 20px 22px 22px; flex: 1; display: flex; flex-direction: column; }
.deal-loc { font-size: 0.8rem; color: var(--slate-2); display: flex; align-items: center; gap: 6px; margin-bottom: 7px; }
.deal-card h3 { font-size: 1.16rem; font-weight: 700; margin-bottom: 6px; }
.deal-desc { font-size: 0.9rem; color: var(--slate); margin-bottom: 18px; }
.deal-metrics { margin-top: auto; border-top: 1px solid var(--line-2); padding-top: 16px; display: grid; grid-template-columns: 1fr 1fr; gap: 14px 12px; }
.dm { }
.dm .dm-lab { font-size: 0.72rem; color: var(--slate-2); text-transform: uppercase; letter-spacing: 0.04em; }
.dm .dm-val { font-family: var(--font-head); font-weight: 700; font-size: 1.02rem; color: var(--ink); margin-top: 2px; }
.dm .dm-val.blue { color: var(--blue-600); }
.dm .dm-val.green { color: var(--ok); }
.deal-cta { margin-top: 16px; font-size: 0.9rem; font-weight: 600; color: var(--blue-600); display: inline-flex; align-items: center; gap: 7px; }

.mkt-note { margin-top: 30px; font-size: 0.86rem; color: var(--slate-2); text-align: center; font-style: italic; }

/* ---------- DEAL MODAL ---------- */
.modal { position: fixed; inset: 0; z-index: 300; display: none; }
.modal.open { display: block; }
.modal-scrim { position: absolute; inset: 0; background: rgba(14,31,58,0.55); backdrop-filter: blur(3px); animation: fade .25s ease; }
.modal-panel { position: absolute; top: 0; right: 0; bottom: 0; width: min(720px, 100%); background: #fff; overflow-y: auto; box-shadow: -20px 0 60px rgba(14,31,58,0.25); animation: slideIn .32s cubic-bezier(0.22,0.61,0.36,1); }
@keyframes slideIn { from { transform: translateX(40px); opacity: 0; } to { transform: none; opacity: 1; } }
@keyframes fade { from { opacity: 0; } to { opacity: 1; } }
.modal-close { position: sticky; top: 0; float: right; z-index: 5; margin: 16px 16px 0 0; width: 38px; height: 38px; border-radius: 50%; border: 1px solid var(--line); background: #fff; cursor: pointer; display: grid; place-items: center; color: var(--ink); }
.modal-close:hover { background: var(--bg-soft); }
.md-inner { padding: 0 40px 48px; }
.md-status { margin-bottom: 12px; }
.md-inner h2 { font-size: 1.9rem; font-weight: 800; margin-bottom: 6px; }
.md-loc { font-size: 0.95rem; color: var(--slate); margin-bottom: 6px; }
.md-spec { font-size: 0.86rem; color: var(--slate-2); margin-bottom: 26px; }

.ba-wrap { margin-bottom: 12px; }
.ba-head { display: flex; gap: 8px; margin-bottom: 10px; }
.ba-pill { font-size: 0.74rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.05em; padding: 5px 12px; border-radius: 100px; }
.ba-before { background: var(--bg-soft-2); color: var(--slate); }
.ba-after { background: var(--blue-tint); color: var(--blue-600); }
.ba-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 10px; }
.ba-col { display: grid; gap: 10px; }
.ba-col img { border-radius: 10px; aspect-ratio: 4/3; object-fit: cover; width: 100%; }
.ba-tag { font-size: 0.74rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.05em; color: var(--slate-2); margin-bottom: 2px; }

.md-section-t { font-family: var(--font-head); font-weight: 700; font-size: 1.1rem; margin: 30px 0 12px; }
.md-desc { font-size: 0.96rem; color: var(--slate); }
.md-desc strong { color: var(--ink); font-weight: 600; }

.md-figs { margin-top: 8px; border: 1px solid var(--line); border-radius: 12px; overflow: hidden; }
.md-fig-row { display: flex; justify-content: space-between; padding: 12px 18px; font-size: 0.92rem; border-bottom: 1px solid var(--line-2); }
.md-fig-row:last-child { border-bottom: 0; }
.md-fig-row .mf-l { color: var(--slate); }
.md-fig-row .mf-v { font-weight: 600; color: var(--ink); font-variant-numeric: tabular-nums; }
.md-fig-row.hl { background: var(--blue-700); }
.md-fig-row.hl .mf-l { color: rgba(255,255,255,0.82); font-weight: 600; }
.md-fig-row.hl .mf-v { color: #fff; }

.profile-box { margin-top: 8px; display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }
.pf { border: 1px solid var(--line); border-radius: 12px; padding: 18px; }
.pf .pf-tag { font-size: 0.74rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.05em; color: var(--slate-2); margin-bottom: 8px; }
.pf .pf-big { font-family: var(--font-head); font-weight: 800; font-size: 1.5rem; color: var(--blue); }
.pf .pf-sub { font-size: 0.82rem; color: var(--slate); margin-top: 4px; }
.md-cta { margin-top: 28px; }
.md-disc { font-size: 0.78rem; color: var(--slate-2); font-style: italic; margin-top: 16px; }
.md-highlights { display: grid; grid-template-columns: repeat(3,1fr); gap: 10px; margin: 22px 0 4px; }
.md-highlights > div { background: var(--blue-tint); border-radius: 10px; padding: 14px 16px; }
.md-highlights span { display: block; font-size: 0.7rem; font-weight: 700; letter-spacing: 0.05em; text-transform: uppercase; color: var(--blue-600); margin-bottom: 5px; }
.md-highlights b { font-family: var(--font-head); font-weight: 800; font-size: 1.25rem; color: var(--ink); }
.md-comps { list-style: none; border: 1px solid var(--line); border-radius: 12px; overflow: hidden; }
.md-comps li { padding: 11px 16px; font-size: 0.88rem; color: var(--slate); border-bottom: 1px solid var(--line-2); }
.md-comps li:last-child { border-bottom: 0; }
.md-emd { margin-top: 14px; font-size: 0.9rem; color: var(--slate); background: var(--red-tint); border-radius: 10px; padding: 12px 16px; }
.md-emd strong { color: var(--red); }
.ba-grid > img { border-radius: 10px; aspect-ratio: 4/3; object-fit: cover; width: 100%; }
.md-photos-link { width: 100%; justify-content: center; margin-top: 14px; }
.drive-embed { width: 100%; height: 360px; border: 1px solid var(--line); border-radius: 12px; margin-bottom: 12px; background: var(--bg-soft); display: block; }

/* stats de preuve (investisseurs accompagnés) */
.proof-stats { display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px; margin-bottom: 30px; }
.proof-stats .ps { background: #fff; border: 1px solid var(--line); border-radius: 14px; padding: 26px 18px; text-align: center; }
.proof-stats .ps-val { font-family: var(--font-head); font-weight: 800; font-size: 2.2rem; color: var(--blue); line-height: 1; }
.proof-stats .ps-lab { font-size: 0.85rem; color: var(--slate); margin-top: 8px; }
@media (max-width: 640px) { .proof-stats { grid-template-columns: 1fr 1fr; } }

/* cadres neutres — aucune image de stock */
.deal-media.ph { background: var(--blue-tint); }
.deal-media .ph-inner { position: absolute; inset: 0; display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 10px; color: var(--blue-600); padding: 22px; text-align: center; }
.deal-media .ph-inner span { font-size: 0.8rem; color: var(--slate); max-width: 180px; line-height: 1.4; }
.hero-panel { background: linear-gradient(160deg, var(--blue) 0%, var(--blue-700) 100%); border-radius: 18px; padding: 34px; color: #fff; box-shadow: var(--shadow-md); position: relative; overflow: hidden; }
.hero-panel::before { content: ''; position: absolute; top: 0; left: 0; right: 0; height: 5px; background: linear-gradient(90deg, var(--red) 0 33%, #fff 33% 66%, #6f9bd6 66% 100%); }
.hp-tag { font-size: 0.74rem; font-weight: 700; letter-spacing: 0.08em; text-transform: uppercase; color: #9FC0EE; }
.hp-flow { display: flex; align-items: center; gap: 18px; margin: 22px 0; }
.hp-node b { font-family: var(--font-head); font-weight: 800; font-size: 2rem; display: block; line-height: 1; }
.hp-node b.alt { color: #7FE0B0; }
.hp-node span { font-size: 0.82rem; color: rgba(255,255,255,0.7); }
.hp-arrow { font-size: 1.5rem; color: rgba(255,255,255,0.5); }
.hp-foot { display: flex; justify-content: space-between; flex-wrap: wrap; gap: 8px; border-top: 1px solid var(--blue-line); padding-top: 18px; font-size: 0.86rem; color: rgba(255,255,255,0.75); }
.hp-foot strong { color: #fff; }
.founder-photo-ph { display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 10px; background: linear-gradient(160deg, var(--blue), var(--blue-700)); color: #fff; }
.fp-mono { font-family: var(--font-head); font-weight: 800; font-size: 4rem; letter-spacing: -0.03em; }
.fp-note { font-size: 0.8rem; color: rgba(255,255,255,0.6); }

/* cascade de rémunération */
.cascade { display: grid; gap: 0; max-width: 860px; margin: 0 auto; }
.casc-step { display: grid; grid-template-columns: 44px 1fr auto; gap: 20px; align-items: center; background: #fff; border: 1px solid var(--line); border-radius: 14px; padding: 22px 24px; }
.casc-order { width: 40px; height: 40px; border-radius: 50%; background: var(--blue); color: #fff; font-family: var(--font-head); font-weight: 800; display: grid; place-items: center; }
.casc-body h3 { font-size: 1.15rem; font-weight: 700; margin-bottom: 4px; }
.casc-body p { font-size: 0.92rem; color: var(--slate); }
.casc-split { display: flex; flex-direction: column; gap: 6px; text-align: right; }
.cs-you { font-weight: 700; font-size: 0.9rem; color: var(--blue-600); white-space: nowrap; }
.cs-us { font-weight: 600; font-size: 0.82rem; color: var(--red); white-space: nowrap; }
.casc-arrow { text-align: center; color: var(--slate-2); font-size: 1.2rem; padding: 8px 0; }
.ph-var { background: var(--red-tint); color: var(--red); font-weight: 700; padding: 1px 8px; border-radius: 6px; border: 1px dashed rgba(193,18,31,0.4); font-size: 0.92em; }
.casc-note { max-width: 860px; margin: 26px auto 0; font-size: 0.92rem; color: var(--slate); text-align: center; }
.casc-note strong { color: var(--ink); }
.example { max-width: 860px; margin: 40px auto 0; background: #fff; border: 1px solid var(--line); border-radius: 16px; padding: 28px; }
.ex-head { display: flex; align-items: center; gap: 12px; flex-wrap: wrap; margin-bottom: 20px; }
.ex-badge { font-size: 0.74rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.06em; color: var(--blue-600); background: var(--blue-tint); padding: 5px 12px; border-radius: 100px; }
.ex-note { font-size: 0.82rem; color: var(--slate-2); font-style: italic; }
.ex-given { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; margin-bottom: 20px; }
.ex-given > div { background: var(--bg-soft); border-radius: 10px; padding: 14px 16px; }
.ex-given span { display: block; font-size: 0.8rem; color: var(--slate); margin-bottom: 4px; }
.ex-given b { font-family: var(--font-head); font-weight: 800; font-size: 1.4rem; }
.ex-table { border: 1px solid var(--line); border-radius: 12px; overflow: hidden; }
.ex-row { display: grid; grid-template-columns: 1fr 120px 120px; gap: 10px; padding: 12px 16px; font-size: 0.9rem; border-bottom: 1px solid var(--line-2); align-items: center; }
.ex-row:last-child { border-bottom: 0; }
.ex-row span:nth-child(2), .ex-row span:nth-child(3) { text-align: right; font-weight: 600; }
.ex-row em { font-style: normal; color: var(--slate-2); font-size: 0.85em; }
.ex-th { background: var(--bg-soft); color: var(--slate); font-size: 0.74rem; text-transform: uppercase; letter-spacing: 0.04em; }
.ex-th span { font-weight: 700; }
.ex-total { background: var(--blue-700); color: #fff; }
.ex-total span { color: #fff; font-weight: 700; }
.casc-disc { max-width: 860px; margin: 18px auto 0; font-size: 0.78rem; color: var(--slate-2); font-style: italic; text-align: center; }

/* tiers d'opérations */
.tiers-strip { display: grid; grid-template-columns: repeat(3,1fr); gap: 16px; margin-bottom: 32px; }
.tier-card { display: flex; gap: 14px; align-items: flex-start; background: #fff; border: 1px solid var(--line); border-radius: 12px; padding: 18px 20px; }
.tier-card h4 { font-size: 1rem; font-weight: 700; margin-bottom: 4px; }
.tier-card p { font-size: 0.85rem; color: var(--slate); }
.tier-badge { flex-shrink: 0; font-family: var(--font-head); font-weight: 800; font-size: 0.8rem; padding: 6px 10px; border-radius: 8px; }
.tier-1 { background: var(--blue-tint); color: var(--blue-600); }
.tier-2 { background: #FFF3E0; color: #B26A00; }
.tier-3 { background: var(--ink); color: #fff; }
.deal-tier { position: absolute; top: 14px; right: 14px; font-size: 0.7rem; font-weight: 700; padding: 5px 10px; border-radius: 100px; background: rgba(255,255,255,0.92); color: var(--ink); box-shadow: var(--shadow-sm); }
.pf-coc { margin-top: 10px; padding-top: 10px; border-top: 1px solid var(--line-2); font-size: 0.82rem; color: var(--slate); }
.pf-coc strong { color: var(--blue-600); }

/* photos réelles — placées individuellement, statiques */
.usa-intro { display: grid; grid-template-columns: 1.1fr 0.9fr; gap: 44px; align-items: center; margin-bottom: 50px; }
.usa-text h2 { font-size: clamp(1.9rem, 4vw, 2.8rem); font-weight: 800; margin: 15px 0 16px; }
.usa-text p { font-size: 1.08rem; color: var(--slate); }
.usa-photo { border-radius: 16px; overflow: hidden; box-shadow: var(--shadow-md); aspect-ratio: 4/5; }
.usa-photo img { width: 100%; height: 100%; object-fit: cover; }
.hero-photo { border-radius: 18px; overflow: hidden; box-shadow: var(--shadow-md); aspect-ratio: 4/5; }
.hero-photo img { width: 100%; height: 100%; object-fit: cover; }
.section-photo { border-radius: 16px; overflow: hidden; box-shadow: var(--shadow-md); margin-top: 30px; }
.section-photo img { width: 100%; display: block; max-height: 440px; object-fit: cover; object-position: center 42%; }
.section-photo.center { max-width: 960px; margin-left: auto; margin-right: auto; }

/* déroulement détaillé d'une opération (timeline verticale) */
.oplist { max-width: 820px; margin: 0 auto; }
.opstep { display: grid; grid-template-columns: 52px 1fr; gap: 22px; padding-bottom: 30px; position: relative; }
.opstep:not(:last-child)::before { content: ''; position: absolute; left: 25px; top: 54px; bottom: 0; width: 2px; background: var(--line); }
.opnum { width: 50px; height: 50px; border-radius: 50%; background: var(--blue); color: #fff; font-family: var(--font-head); font-weight: 800; font-size: 1.2rem; display: grid; place-items: center; z-index: 1; }
.opbody { padding-top: 5px; }
.opbody h3 { font-size: 1.2rem; font-weight: 700; margin-bottom: 8px; }
.opbody p { color: var(--slate); font-size: 0.96rem; }
.opnote { margin-top: 12px; background: var(--blue-tint); border-radius: 10px; padding: 12px 16px; font-size: 0.86rem; color: var(--blue-700); }
.opnote strong { color: var(--blue-600); }
@media (max-width: 640px) { .opstep { grid-template-columns: 40px 1fr; gap: 16px; } .opnum { width: 38px; height: 38px; font-size: 1rem; } .opstep:not(:last-child)::before { left: 19px; top: 42px; } }

/* règle des 70 % — mécanismes du rendement */
.rule70 { display: grid; grid-template-columns: auto 1fr; gap: 34px; align-items: center; background: var(--blue-700); color: #fff; border-radius: 18px; padding: 36px 40px; }
.r70-big { text-align: center; border-right: 1px solid var(--blue-line); padding-right: 34px; }
.r70-big .num { font-family: var(--font-head); font-weight: 800; font-size: clamp(3rem, 7vw, 4.5rem); line-height: 1; display: block; }
.r70-lab { font-size: 0.8rem; letter-spacing: 0.12em; text-transform: uppercase; color: rgba(255,255,255,0.6); }
.r70-body h3 { color: #fff; font-size: 1.4rem; margin-bottom: 10px; }
.r70-body p { color: rgba(255,255,255,0.78); margin-bottom: 14px; }
.r70-formula { display: inline-block; background: rgba(255,255,255,0.08); border-radius: 10px; padding: 10px 16px; font-size: 0.92rem; }
.r70-formula b { color: #9FC0EE; }
@media (max-width: 640px) { .rule70 { grid-template-columns: 1fr; gap: 18px; text-align: center; } .r70-big { border-right: 0; border-bottom: 1px solid var(--blue-line); padding-right: 0; padding-bottom: 18px; } }

/* fiscalité */
.fisc-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; margin-bottom: 22px; }
.fisc-col { background: #fff; border: 1px solid var(--line); border-radius: 14px; padding: 26px; }
.fisc-col .fc-tag { display: inline-block; font-size: 0.72rem; font-weight: 700; letter-spacing: 0.08em; text-transform: uppercase; padding: 5px 12px; border-radius: 100px; margin-bottom: 14px; }
.fisc-col.us .fc-tag { background: var(--blue-tint); color: var(--blue-600); }
.fisc-col.nr .fc-tag { background: var(--red-tint); color: var(--red); }
.fisc-col h4 { font-size: 1.15rem; font-weight: 700; margin-bottom: 14px; }
.fisc-list { list-style: none; display: grid; gap: 11px; }
.fisc-list li { font-size: 0.92rem; color: var(--slate); padding-left: 24px; position: relative; }
.fisc-list li::before { content: ''; position: absolute; left: 0; top: 6px; width: 12px; height: 12px; border-radius: 4px; background: var(--blue-tint); }
.fisc-col.nr .fisc-list li::before { background: var(--red-tint); }
.fisc-list li strong { color: var(--ink); font-weight: 600; }
.fisc-llc { background: var(--blue-700); color: #fff; border-radius: 16px; padding: 30px 34px; margin-bottom: 22px; }
.fisc-llc h3 { color: #fff; font-size: 1.3rem; margin-bottom: 16px; }
.fisc-llc .llc-pts { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
.fisc-llc .llc-pt h4 { color: #fff; font-size: 1rem; font-family: var(--font-body); font-weight: 700; margin-bottom: 5px; }
.fisc-llc .llc-pt p { color: rgba(255,255,255,0.72); font-size: 0.88rem; }
.fisc-role { background: var(--bg-soft); border: 1px solid var(--line); border-radius: 12px; padding: 20px 24px; font-size: 0.94rem; color: var(--slate); }
.fisc-role strong { color: var(--ink); }
@media (max-width: 640px) { .fisc-grid, .fisc-llc .llc-pts { grid-template-columns: 1fr; } }

/* catégories de FAQ */
.faq-cat { font-family: var(--font-head); font-weight: 700; font-size: 0.8rem; letter-spacing: 0.1em; text-transform: uppercase; color: var(--blue-600); margin: 30px 0 2px; padding-bottom: 6px; }
.faq-cat:first-child { margin-top: 0; }

/* récit du fondateur */
.creds { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 20px; }
.cred { background: var(--blue-tint); color: var(--blue-600); font-size: 0.82rem; font-weight: 600; padding: 8px 15px; border-radius: 100px; }
.story { max-width: 760px; margin: 46px auto 0; }
.story p { font-size: 1.06rem; color: var(--slate); margin-bottom: 18px; }
.story p.lead { font-size: 1.22rem; color: var(--ink); font-weight: 500; }
.story strong { color: var(--ink); font-weight: 600; }
.pullquote { font-family: var(--font-head); font-size: clamp(1.35rem, 2.6vw, 1.7rem); font-weight: 700; color: var(--ink); border-left: 3px solid var(--red); padding-left: 24px; margin: 30px 0; line-height: 1.3; letter-spacing: -0.01em; }
@media (max-width: 980px) { .usa-intro { grid-template-columns: 1fr; } .usa-photo { max-width: 420px; aspect-ratio: 4/3; } }
@media (max-width: 640px) {
  .tiers-strip { grid-template-columns: 1fr; }
  .casc-step { grid-template-columns: 36px 1fr; }
  .casc-split { grid-column: 1 / -1; flex-direction: row; justify-content: flex-start; gap: 14px; text-align: left; }
  .ex-given { grid-template-columns: 1fr; }
  .ex-row { grid-template-columns: 1fr 74px 74px; font-size: 0.82rem; }
}

/* ---------- METHOD / OWNERSHIP / PROCESS ---------- */
.method-grid { display: grid; grid-template-columns: repeat(3, 1fr); border: 1px solid var(--line); border-radius: var(--r); overflow: hidden; background: #fff; }
.method-col { padding: 34px 30px; border-right: 1px solid var(--line); }
.method-col:last-child { border-right: 0; }
.method-step { font-size: 0.72rem; font-weight: 700; letter-spacing: 0.12em; text-transform: uppercase; color: var(--red); margin-bottom: 12px; }
.method-col h3 { font-size: 1.35rem; font-weight: 700; margin-bottom: 12px; }
.method-col p { font-size: 0.93rem; color: var(--slate); }

.own { margin-top: 26px; background: var(--blue-700); color: #fff; border-radius: 18px; padding: 44px 46px; }
.own h3 { color: #fff; font-size: 1.5rem; margin-bottom: 8px; }
.own > p { color: rgba(255,255,255,0.68); max-width: 620px; margin-bottom: 28px; }
.own-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 6px 40px; }
.own-item { display: flex; gap: 15px; padding: 18px 0; border-top: 1px solid var(--blue-line); }
.own-num { font-family: var(--font-head); font-weight: 800; font-size: 1.2rem; color: #7FA8DE; flex-shrink: 0; width: 28px; }
.own-item h4 { color: #fff; font-size: 1rem; font-weight: 700; margin-bottom: 4px; font-family: var(--font-body); }
.own-item p { font-size: 0.88rem; color: rgba(255,255,255,0.62); }

.proc { display: grid; grid-template-columns: repeat(6, 1fr); margin-top: 40px; }
.proc-step { padding: 0 14px; position: relative; }
.proc-step:not(:last-child)::after { content: ''; position: absolute; top: 15px; left: 50%; right: -50%; height: 2px; background: var(--line); }
.proc-dot { width: 32px; height: 32px; border-radius: 50%; background: #fff; border: 2px solid var(--blue-600); color: var(--blue-600); font-weight: 700; font-size: 0.86rem; display: grid; place-items: center; position: relative; z-index: 2; margin-bottom: 16px; }
.proc-step h4 { font-size: 0.98rem; font-weight: 700; margin-bottom: 5px; font-family: var(--font-body); }
.proc-step p { font-size: 0.85rem; color: var(--slate); }

/* alignment / floor */
.floor { display: grid; grid-template-columns: 1fr 1fr; gap: 40px; align-items: center; margin-top: 8px; }
.floor-viz { background: #fff; border: 1px solid var(--line); border-radius: 16px; padding: 32px; box-shadow: var(--shadow-sm); }
.floor-bar { position: relative; height: 84px; margin: 24px 0 40px; }
.floor-track { position: absolute; inset: 0; display: flex; border-radius: 10px; overflow: hidden; }
.zone-a { flex: 0 0 42%; background: var(--red-tint); display: flex; flex-direction: column; justify-content: center; padding: 0 20px; }
.zone-b { flex: 1; background: var(--blue-tint); border-left: 2px dashed var(--blue-600); display: flex; flex-direction: column; justify-content: center; padding: 0 20px; }
.z-tag { font-size: 0.7rem; letter-spacing: 0.08em; text-transform: uppercase; color: var(--slate-2); margin-bottom: 3px; }
.zone-a .z-txt { font-weight: 700; color: var(--red); font-size: 0.96rem; }
.zone-b .z-txt { font-weight: 700; color: var(--blue-600); font-size: 0.96rem; }
.floor-marker { position: absolute; left: 42%; top: -16px; bottom: -28px; transform: translateX(-50%); text-align: center; }
.floor-marker .fm-val { position: absolute; top: -6px; left: 50%; transform: translateX(-50%); white-space: nowrap; font-family: var(--font-head); font-weight: 800; font-size: 1rem; color: var(--ink); }
.floor-marker .fm-line { width: 2px; height: 100%; background: var(--ink); margin: 0 auto; opacity: 0.4; }
.floor-marker .fm-lab { position: absolute; bottom: -22px; left: 50%; transform: translateX(-50%); white-space: nowrap; font-size: 0.7rem; letter-spacing: 0.06em; text-transform: uppercase; color: var(--slate-2); }
.floor-txt h3 { font-size: 1.7rem; margin-bottom: 14px; }
.floor-txt p { color: var(--slate); margin-bottom: 18px; }
.floor-ex { display: flex; gap: 12px; }
.floor-ex .fe { flex: 1; border: 1px solid var(--line); border-radius: 10px; padding: 14px; }
.floor-ex .fe.hl { border-color: var(--red); background: var(--red-tint); }
.floor-ex .fe-tag { font-size: 0.68rem; font-weight: 700; text-transform: uppercase; color: var(--slate-2); margin-bottom: 8px; }
.floor-ex .fe-big { font-family: var(--font-head); font-weight: 800; font-size: 1.35rem; color: var(--ink); }
.floor-ex .fe-sub { font-size: 0.78rem; color: var(--slate); }

/* ---------- TEAM ---------- */
.founder { display: grid; grid-template-columns: 0.8fr 1.2fr; gap: 44px; align-items: center; }
.founder-photo { border-radius: 18px; overflow: hidden; aspect-ratio: 4/5; box-shadow: var(--shadow-md); background: var(--bg-soft-2); }
.founder-photo img { width: 100%; height: 100%; object-fit: cover; }
.founder-info h3 { font-size: 2rem; font-weight: 800; margin-bottom: 4px; }
.founder-role { font-size: 0.92rem; font-weight: 600; color: var(--red); text-transform: uppercase; letter-spacing: 0.06em; margin-bottom: 20px; }
.founder-info p { color: var(--slate); margin-bottom: 16px; font-size: 1rem; }
.founder-info p strong { color: var(--ink); font-weight: 600; }
.founder-social { display: flex; gap: 12px; margin-top: 22px; }
.founder-social a { width: 42px; height: 42px; border-radius: 10px; border: 1px solid var(--line); display: grid; place-items: center; color: var(--slate); transition: all .2s ease; }
.founder-social a:hover { color: #fff; background: var(--blue); border-color: var(--blue); transform: translateY(-2px); }

.eco { margin-top: 52px; }
.eco-head { font-size: 1.3rem; font-weight: 700; margin-bottom: 8px; }
.eco-sub { color: var(--slate); margin-bottom: 26px; max-width: 720px; }
.ent-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
.ent { background: #fff; border: 1px solid var(--line); border-radius: var(--r); padding: 24px; }
.ent-role { font-size: 0.72rem; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase; color: var(--blue-600); margin-bottom: 8px; }
.ent h4 { font-size: 1.15rem; font-weight: 700; margin-bottom: 9px; }
.ent p { font-size: 0.88rem; color: var(--slate); }

/* ---------- PROOF ---------- */
.proof-quotes { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; margin-bottom: 40px; }
.quote { background: #fff; border: 1px solid var(--line); border-radius: var(--r); padding: 26px; }
.quote .q-mark { font-family: var(--font-head); font-size: 2.4rem; font-weight: 800; color: var(--blue-tint); line-height: 0.6; }
.quote p { font-size: 0.96rem; color: var(--ink); margin: 8px 0 18px; }
.quote .q-who { display: flex; align-items: center; gap: 12px; }
.quote .q-av { width: 38px; height: 38px; border-radius: 50%; background: var(--blue); color: #fff; display: grid; place-items: center; font-weight: 700; font-size: 0.9rem; }
.quote .q-name { font-weight: 600; font-size: 0.9rem; }
.quote .q-meta { font-size: 0.8rem; color: var(--slate-2); }
.press { border-top: 1px solid var(--line); padding-top: 30px; text-align: center; }
.press-lab { font-size: 0.76rem; font-weight: 700; letter-spacing: 0.12em; text-transform: uppercase; color: var(--slate-2); margin-bottom: 18px; }
.press-logos { display: flex; flex-wrap: wrap; justify-content: center; gap: 34px; align-items: center; }
.press-logos span { font-family: var(--font-head); font-weight: 700; font-size: 1.25rem; color: var(--slate-2); opacity: 0.75; }

/* ---------- FAQ ---------- */
.faq-list { max-width: 840px; margin: 0 auto; }
.faq-item { border-bottom: 1px solid var(--line); }
.faq-q { width: 100%; text-align: left; background: none; border: 0; cursor: pointer; padding: 22px 0; display: flex; justify-content: space-between; align-items: center; gap: 20px; font-family: var(--font-head); font-size: 1.05rem; font-weight: 600; color: var(--ink); }
.faq-q .faq-ic { flex-shrink: 0; color: var(--blue-600); transition: transform .3s ease; font-size: 1.5rem; line-height: 1; }
.faq-item.open .faq-ic { transform: rotate(45deg); }
.faq-a { max-height: 0; overflow: hidden; transition: max-height .35s ease; }
.faq-a-inner { padding: 0 0 22px; font-size: 0.97rem; color: var(--slate); max-width: 740px; }
.faq-a-inner strong { color: var(--ink); font-weight: 600; }

/* ---------- CTA / FORM ---------- */
.cta-grid { display: grid; grid-template-columns: 0.9fr 1.1fr; gap: 52px; align-items: start; }
.cta-left h2 { color: #fff; font-size: clamp(1.9rem, 4vw, 2.7rem); font-weight: 800; margin: 15px 0 16px; }
.cta-left > p { color: rgba(255,255,255,0.7); margin-bottom: 26px; }
.cta-contact { display: flex; flex-direction: column; gap: 12px; }
.cta-contact a { display: flex; align-items: center; gap: 12px; color: rgba(255,255,255,0.85); text-decoration: none; font-size: 0.95rem; transition: color .2s ease; }
.cta-contact a:hover { color: #fff; }
.cta-contact .ci { width: 34px; height: 34px; border-radius: 9px; background: rgba(255,255,255,0.08); display: grid; place-items: center; flex-shrink: 0; }
.form-box { background: #fff; border-radius: 18px; padding: 34px; box-shadow: var(--shadow-md); }
.fb-badge { display: inline-flex; align-items: center; gap: 8px; font-size: 0.74rem; font-weight: 700; letter-spacing: 0.06em; text-transform: uppercase; color: var(--red); background: var(--red-tint); padding: 6px 12px; border-radius: 100px; margin-bottom: 16px; }
.form-box h3 { font-size: 1.5rem; font-weight: 800; margin-bottom: 5px; }
.fb-sub { font-size: 0.92rem; color: var(--slate); margin-bottom: 24px; }
.form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.fg { display: flex; flex-direction: column; }
.fg.full { grid-column: 1 / -1; }
.fg label { font-size: 0.78rem; font-weight: 600; color: var(--slate); margin-bottom: 6px; }
.fg label .req { color: var(--red); }
.fg input, .fg select { border: 1px solid var(--line); border-radius: 9px; padding: 12px 13px; font-family: var(--font-body); font-size: 0.95rem; color: var(--ink); background: #fff; transition: border-color .2s ease, box-shadow .2s ease; outline: none; -webkit-appearance: none; }
.fg select { background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%23123B73' stroke-width='2' fill='none'/%3E%3C/svg%3E"); background-repeat: no-repeat; background-position: right 14px center; padding-right: 36px; }
.fg input:focus, .fg select:focus { border-color: var(--blue-600); box-shadow: 0 0 0 3px var(--blue-tint); }
.fg input::placeholder { color: var(--slate-2); }
.submit-btn { grid-column: 1 / -1; margin-top: 6px; background: var(--blue); color: #fff; border: 0; font-family: var(--font-body); font-size: 1rem; font-weight: 600; padding: 15px; border-radius: 10px; cursor: pointer; display: flex; align-items: center; justify-content: center; gap: 10px; transition: all .22s ease; }
.submit-btn:hover { background: var(--blue-600); }
.submit-btn:disabled { opacity: 0.6; cursor: not-allowed; }
.fb-legal { font-size: 0.76rem; color: var(--slate-2); margin-top: 14px; text-align: center; }
.form-success { display: none; text-align: center; padding: 18px 0; }
.form-success.active { display: block; animation: fade .5s ease forwards; }
.fs-check { width: 60px; height: 60px; border-radius: 50%; background: var(--ok-tint); color: var(--ok); display: grid; place-items: center; margin: 0 auto 16px; font-size: 1.7rem; }
.form-success h3 { font-size: 1.6rem; font-weight: 800; margin-bottom: 8px; }
.form-success p { color: var(--slate); font-size: 0.95rem; }
.calendly-embed { margin-top: 22px; min-width: 300px; height: 640px; border-radius: 12px; overflow: hidden; border: 1px solid var(--line); }
@media (max-width: 768px) { .calendly-embed { height: 1000px; } }

/* ---------- FOOTER ---------- */
.footer { background: var(--ink); color: rgba(255,255,255,0.55); padding: 54px 0 30px; }
.footer-top { display: grid; grid-template-columns: 1.5fr 1fr 1fr 1fr; gap: 28px; padding-bottom: 32px; border-bottom: 1px solid rgba(255,255,255,0.1); }
.footer .brand-name { color: #fff; }
.footer-blurb { font-size: 0.9rem; margin-top: 14px; max-width: 300px; }
.footer-social { display: flex; gap: 10px; margin-top: 18px; }
.footer-social a { width: 36px; height: 36px; border-radius: 8px; background: rgba(255,255,255,0.06); display: grid; place-items: center; color: rgba(255,255,255,0.7); transition: all .2s ease; }
.footer-social a:hover { background: var(--blue); color: #fff; }
.footer-col h5 { font-size: 0.76rem; letter-spacing: 0.1em; text-transform: uppercase; color: rgba(255,255,255,0.4); margin-bottom: 14px; }
.footer-col a { display: block; color: rgba(255,255,255,0.72); text-decoration: none; font-size: 0.9rem; padding: 4px 0; transition: color .2s ease; }
.footer-col a:hover { color: #fff; }
.footer-legal { padding-top: 26px; }
.fl-disc { font-size: 0.78rem; color: rgba(255,255,255,0.4); line-height: 1.6; max-width: 820px; margin-bottom: 14px; }
.footer-bottom { display: flex; justify-content: space-between; flex-wrap: wrap; gap: 10px; font-size: 0.8rem; color: rgba(255,255,255,0.4); }

/* reveal */
.reveal { opacity: 0; transform: translateY(22px); transition: opacity .7s ease, transform .7s cubic-bezier(0.22,0.61,0.36,1); }
.reveal.vis { opacity: 1; transform: none; }

/* responsive */
@media (max-width: 980px) {
  .hero-grid { grid-template-columns: 1fr; gap: 40px; }
  .hero-visual { max-width: 460px; }
  .why-grid, .deals, .ent-grid, .proof-quotes { grid-template-columns: 1fr 1fr; }
  .method-grid { grid-template-columns: 1fr; }
  .method-col { border-right: 0; border-bottom: 1px solid var(--line); }
  .method-col:last-child { border-bottom: 0; }
  .proc { grid-template-columns: 1fr 1fr 1fr; gap: 28px 0; }
  .proc-step:not(:last-child)::after { display: none; }
  .floor, .founder, .cta-grid { grid-template-columns: 1fr; gap: 32px; }
  .own-grid { grid-template-columns: 1fr; }
  .footer-top { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 640px) {
  .nav-links { display: none; }
  .nav-cta { display: none; }
  .nav-toggle { display: flex; }
  .trust-inner { grid-template-columns: 1fr 1fr; }
  .trust-item:nth-child(2) { border-right: 0; }
  .trust-item:nth-child(1), .trust-item:nth-child(2) { border-bottom: 1px solid var(--line); }
  .why-grid, .deals, .ent-grid, .proof-quotes, .form-grid, .profile-box, .ba-grid, .floor-ex { grid-template-columns: 1fr; }
  .proc { grid-template-columns: 1fr 1fr; }
  .md-inner { padding: 0 24px 40px; }
  .hero-badge-card { left: 12px; }
  .footer-top { grid-template-columns: 1fr; }
  .sec { padding: 64px 0; }
}
@media (prefers-reduced-motion: reduce) { * { animation: none !important; transition: none !important; } .reveal { opacity: 1; transform: none; } }
