/* ═══════════════════════════════════════════════════════════
   CAFCA ÉNERGIE — Design System CSS
   ═══════════════════════════════════════════════════════════ */

/* ── 1. TOKENS ── */
:root {
  /* Colors */
  --c-orange:       #F97316;
  --c-orange-d:     #C2590A;
  --c-orange-l:     #FFF7ED;
  --c-orange-glow:  rgba(249,115,22,.22);
  --c-dark:         #08111E;
  --c-navy:         #0F1C35;
  --c-navy-2:       #172848;
  --c-blue:         #1D6FE8;
  --c-sky:          #0EA5E9;
  --c-teal:         #0D9488;
  --c-green:        #16A34A;
  --c-red:          #DC2626;
  --c-amber:        #D97706;
  --c-purple:       #7C3AED;
  --c-text:         #0F172A;
  --c-text-2:       #475569;
  --c-text-3:       #94A3B8;
  --c-bg:           #F8FAFC;
  --c-bg-2:         #EFF6FF;
  --c-border:       #E2E8F0;
  --c-border-d:     rgba(255,255,255,.09);
  --c-white:        #FFFFFF;

  /* Typography */
  --font:           'Poppins', system-ui, -apple-system, sans-serif;
  --font-display:   'Bebas Neue', 'Poppins', sans-serif;

  /* Spacing */
  --sp-xs:   .5rem;
  --sp-sm:   1rem;
  --sp-md:   1.5rem;
  --sp-lg:   2.5rem;
  --sp-xl:   4rem;
  --sp-2xl:  6rem;

  /* Radius */
  --r-sm:   8px;
  --r-md:   14px;
  --r-lg:   20px;
  --r-xl:   28px;

  /* Shadows */
  --sh-sm:  0 1px 2px rgba(0,0,0,.06),0 2px 8px rgba(0,0,0,.06);
  --sh-md:  0 2px 4px rgba(0,0,0,.04),0 8px 32px rgba(0,0,0,.08);
  --sh-lg:  0 4px 6px rgba(0,0,0,.04),0 20px 60px rgba(0,0,0,.14);
  --sh-xl:  0 8px 10px rgba(0,0,0,.05),0 40px 80px rgba(0,0,0,.18);

  /* Transitions */
  --t-fast: .15s ease;
  --t-med:  .25s ease;
  --t-slow: .4s ease;
}

/* ── 2. RESET ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  font-family: var(--font);
  background: var(--c-white);
  color: var(--c-text);
  line-height: 1.6;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
img, svg { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button { font-family: inherit; cursor: pointer; border: none; background: none; }
input, select, textarea { font-family: inherit; font-size: inherit; }
ul, ol { list-style: none; }

/* ── 3. TYPOGRAPHY ── */
.t-display {
  font-family: var(--font-display);
  letter-spacing: 1px;
  line-height: 1;
}
h1, h2, h3, h4 { font-weight: 800; line-height: 1.15; }
p { line-height: 1.75; color: var(--c-text-2); }

/* ── 4. LAYOUT ── */
.wrap { max-width: 1280px; margin: 0 auto; padding: 0 2rem; }
.wrap-sm { max-width: 760px; margin: 0 auto; padding: 0 2rem; }
.section-pad { padding: var(--sp-2xl) 0; }
.section-pad-sm { padding: var(--sp-xl) 0; }

/* Grids */
.grid-2 { display: grid; grid-template-columns: 1fr 1fr; gap: var(--sp-lg); }
.grid-3 { display: grid; grid-template-columns: repeat(3,1fr); gap: var(--sp-md); }
.grid-4 { display: grid; grid-template-columns: repeat(4,1fr); gap: var(--sp-md); }
.flex { display: flex; }
.flex-center { display: flex; align-items: center; justify-content: center; }
.flex-between { display: flex; align-items: center; justify-content: space-between; }

/* ── 5. TOP BAR ── */
#topbar {
  background: var(--c-navy);
  padding: .55rem 0;
  font-size: .78rem;
  color: rgba(255,255,255,.65);
  position: relative;
  z-index: 100;
}
.topbar-inner { display: flex; align-items: center; justify-content: space-between; flex-wrap: wrap; gap: .4rem; }
.topbar-left  { display: flex; align-items: center; gap: 1.5rem; flex-wrap: wrap; }
.topbar-right { display: flex; align-items: center; gap: .7rem; }
.topbar-item  { display: flex; align-items: center; gap: .4rem; }
.topbar-item a:hover { color: #fff; }
.topbar-call {
  background: var(--c-orange);
  color: #fff !important;
  padding: .3rem .9rem;
  border-radius: 6px;
  font-weight: 700;
  font-size: .8rem;
  display: flex; align-items: center; gap: .4rem;
  transition: background var(--t-fast);
}
.topbar-call:hover { background: var(--c-orange-d); }

/* ── 6. NAVIGATION ── */
.site-nav {
  position: sticky;
  top: 0;
  z-index: 900;
  background: rgba(255,255,255,.95);
  backdrop-filter: blur(20px) saturate(1.8);
  border-bottom: 1px solid var(--c-border);
  transition: box-shadow var(--t-med);
}
.site-nav.elevated { box-shadow: 0 2px 24px rgba(0,0,0,.09); }
.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 68px;
  gap: 1.5rem;
}
.nav-logo { display: flex; align-items: center; gap: .75rem; flex-shrink: 0; }
.nav-logo img { height: 46px; width: auto; object-fit: contain; }
.nav-logo-text { font-weight: 900; font-size: 1.2rem; color: var(--c-navy); }
.nav-logo-text span { color: var(--c-orange); }
.nav-links { display: flex; align-items: center; gap: .1rem; }
.nav-links a {
  padding: .5rem .9rem;
  border-radius: var(--r-sm);
  font-size: .87rem;
  font-weight: 600;
  color: var(--c-text-2);
  transition: all var(--t-fast);
  white-space: nowrap;
}
.nav-links a:hover { background: var(--c-bg); color: var(--c-text); }
.nav-links a.active { color: var(--c-orange); background: var(--c-orange-l); }
.nav-actions { display: flex; align-items: center; gap: .7rem; }
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 6px;
  border-radius: var(--r-sm);
}
.hamburger span {
  display: block;
  width: 22px; height: 2px;
  background: var(--c-text);
  border-radius: 2px;
  transition: all var(--t-med);
}

/* Mobile nav */
.mob-nav {
  position: fixed;
  inset: 0;
  background: #fff;
  z-index: 1000;
  padding: 1.5rem 2rem;
  transform: translateX(100%);
  transition: transform .35s cubic-bezier(.4,0,.2,1);
  overflow-y: auto;
  display: flex;
  flex-direction: column;
}
.mob-nav.open { transform: translateX(0); }
.mob-nav-head { display: flex; align-items: center; justify-content: space-between; margin-bottom: 2rem; }
.mob-nav-head img { height: 42px; }
.mob-close {
  width: 40px; height: 40px;
  border-radius: var(--r-sm);
  background: var(--c-bg);
  color: var(--c-text-2);
  font-size: 1.2rem;
  display: flex; align-items: center; justify-content: center;
}
.mob-links { display: flex; flex-direction: column; gap: .3rem; margin-bottom: 2rem; }
.mob-links a {
  padding: .9rem 1rem;
  border-radius: var(--r-sm);
  font-size: 1rem;
  font-weight: 600;
  color: var(--c-text);
  transition: background var(--t-fast);
}
.mob-links a:hover, .mob-links a.active { background: var(--c-bg); color: var(--c-orange); }
.mob-ctas { display: flex; flex-direction: column; gap: .7rem; margin-top: auto; }

/* ── 7. BUTTONS ── */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: .5rem;
  padding: .85rem 1.8rem;
  border-radius: var(--r-sm);
  font-weight: 700;
  font-size: .93rem;
  transition: all var(--t-med);
  cursor: pointer;
  white-space: nowrap;
  letter-spacing: .1px;
  border: 2px solid transparent;
  text-decoration: none;
}
.btn-lg { padding: 1rem 2.2rem; font-size: 1rem; border-radius: 10px; }
.btn-sm { padding: .5rem 1.1rem; font-size: .8rem; border-radius: 7px; }

.btn-primary {
  background: var(--c-orange);
  color: #fff;
  box-shadow: 0 4px 20px var(--c-orange-glow);
}
.btn-primary:hover {
  background: var(--c-orange-d);
  transform: translateY(-2px);
  box-shadow: 0 8px 32px rgba(249,115,22,.38);
}
.btn-primary:active { transform: translateY(0); }

.btn-dark {
  background: var(--c-navy);
  color: #fff;
}
.btn-dark:hover {
  background: #1e3a5f;
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(15,28,53,.35);
}

.btn-white {
  background: #fff;
  color: var(--c-navy);
}
.btn-white:hover { background: var(--c-bg); transform: translateY(-2px); }

.btn-outline-white {
  background: transparent;
  color: #fff;
  border-color: rgba(255,255,255,.4);
}
.btn-outline-white:hover {
  background: rgba(255,255,255,.1);
  border-color: rgba(255,255,255,.8);
}

.btn-ghost {
  background: transparent;
  color: var(--c-text-2);
  border-color: var(--c-border);
}
.btn-ghost:hover, .btn-ghost.active {
  border-color: var(--c-orange);
  color: var(--c-orange);
  background: var(--c-orange-l);
}

.btn-outline-primary {
  background: transparent;
  color: var(--c-orange);
  border-color: var(--c-orange);
}
.btn-outline-primary:hover {
  background: var(--c-orange);
  color: #fff;
  box-shadow: 0 4px 20px var(--c-orange-glow);
}

/* ── 8. BADGES / TAGS ── */
.badge {
  display: inline-flex;
  align-items: center;
  gap: .3rem;
  padding: .22rem .65rem;
  border-radius: 50px;
  font-size: .68rem;
  font-weight: 800;
  letter-spacing: .6px;
  text-transform: uppercase;
}
.badge-orange { background: #FFEDD5; color: #C2410C; }
.badge-blue   { background: #DBEAFE; color: #1D4ED8; }
.badge-green  { background: #DCFCE7; color: #15803D; }
.badge-amber  { background: #FEF9C3; color: #A16207; }
.badge-purple { background: #EDE9FE; color: #6D28D9; }
.badge-red    { background: #FEE2E2; color: #B91C1C; }
.badge-dark   { background: rgba(255,255,255,.1); color: rgba(255,255,255,.85); }

.fin-chip {
  display: inline-block;
  padding: .15rem .55rem;
  border-radius: 4px;
  background: #ECFDF5;
  color: #065F46;
  border: 1px solid #A7F3D0;
  font-size: .64rem;
  font-weight: 700;
}

/* Section labels */
.label-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: .6rem;
  font-size: .7rem;
  font-weight: 800;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: var(--c-orange);
  margin-bottom: .75rem;
}
.label-eyebrow::before {
  content: '';
  display: block;
  width: 18px; height: 2px;
  background: var(--c-orange);
  border-radius: 2px;
}
.label-eyebrow.light { color: rgba(249,115,22,.85); }
.label-eyebrow.light::before { background: rgba(249,115,22,.8); }

/* ── 9. PAGE HERO (inner pages) ── */
.page-hero {
  background: linear-gradient(130deg, var(--c-navy) 0%, var(--c-navy-2) 100%);
  padding: 4rem 0;
  position: relative;
  overflow: hidden;
}
.page-hero::before {
  content: '';
  position: absolute;
  right: -5%;
  top: -30%;
  width: 55%;
  height: 200%;
  background: radial-gradient(ellipse, rgba(249,115,22,.08) 0%, transparent 70%);
  pointer-events: none;
}
.page-hero-content { position: relative; z-index: 1; }
.page-hero h1 {
  font-size: clamp(2rem,4vw,3rem);
  font-weight: 900;
  color: #fff;
  margin-bottom: .5rem;
  letter-spacing: -.3px;
}
.page-hero p { color: rgba(255,255,255,.6); font-size: 1rem; }
.breadcrumb {
  display: flex;
  align-items: center;
  gap: .5rem;
  font-size: .78rem;
  color: rgba(255,255,255,.4);
  margin-bottom: 1rem;
}
.breadcrumb a { color: rgba(255,255,255,.5); }
.breadcrumb a:hover { color: #fff; }
.breadcrumb span { color: rgba(255,255,255,.25); }

/* ── 10. FORMATION CARDS ── */
.f-card {
  background: #fff;
  border: 1.5px solid var(--c-border);
  border-radius: var(--r-md);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: transform var(--t-med), box-shadow var(--t-med), border-color var(--t-med);
}
.f-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--sh-lg);
  border-color: var(--card-accent, var(--c-orange));
}
.f-card[data-cat=permis] { --card-accent: var(--c-sky); }
.f-card[data-cat=fimo]   { --card-accent: var(--c-orange); }
.f-card[data-cat=fco]    { --card-accent: var(--c-green); }
.f-card[data-cat=titre]  { --card-accent: var(--c-amber); }
.f-card[data-cat=caces]  { --card-accent: var(--c-purple); }
.f-card[data-cat=adr]    { --card-accent: var(--c-red); }

.f-card-visual {
  height: 130px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  position: relative;
}
.f-card[data-cat=permis] .f-card-visual { background: linear-gradient(135deg,#EFF6FF,#DBEAFE); }
.f-card[data-cat=fimo]   .f-card-visual { background: linear-gradient(135deg,#FFF7ED,#FFEDD5); }
.f-card[data-cat=fco]    .f-card-visual { background: linear-gradient(135deg,#F0FDF4,#DCFCE7); }
.f-card[data-cat=titre]  .f-card-visual { background: linear-gradient(135deg,#FFFBEB,#FEF9C3); }
.f-card[data-cat=caces]  .f-card-visual { background: linear-gradient(135deg,#FAF5FF,#EDE9FE); }
.f-card[data-cat=adr]    .f-card-visual { background: linear-gradient(135deg,#FFF1F2,#FFE4E6); }

.f-card-visual svg { transition: transform var(--t-slow); }
.f-card:hover .f-card-visual svg { transform: scale(1.08) translateY(-3px); }

.f-card-body { padding: 1.4rem; flex: 1; display: flex; flex-direction: column; }
.f-card-name { font-size: 1.05rem; font-weight: 800; color: var(--c-text); margin-bottom: .4rem; line-height: 1.3; }
.f-card-desc { font-size: .82rem; color: var(--c-text-2); line-height: 1.65; flex: 1; margin-bottom: 1rem; }
.f-card-meta { display: flex; flex-direction: column; gap: .28rem; margin-bottom: .9rem; }
.f-card-meta-item { display: flex; align-items: center; gap: .45rem; font-size: .78rem; color: var(--c-text-2); }
.f-card-fins { display: flex; flex-wrap: wrap; gap: .3rem; margin-bottom: 1rem; }
.f-card-actions { display: flex; gap: .5rem; margin-top: auto; }

/* ── 11. PROFIL CARDS ── */
.profil-card {
  background: #fff;
  border-radius: var(--r-lg);
  padding: 2rem;
  border: 2px solid var(--c-border);
  transition: all var(--t-med);
  cursor: pointer;
  text-decoration: none;
  color: inherit;
  display: block;
  position: relative;
  overflow: hidden;
}
.profil-card::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, var(--profil-c, var(--c-orange)), transparent 60%);
  opacity: 0;
  transition: opacity var(--t-med);
}
.profil-card:hover { border-color: var(--profil-c, var(--c-orange)); transform: translateY(-5px); box-shadow: var(--sh-xl); }
.profil-card:hover::before { opacity: .05; }
.profil-card[data-c=orange] { --profil-c: var(--c-orange); }
.profil-card[data-c=blue]   { --profil-c: var(--c-sky); }
.profil-card[data-c=green]  { --profil-c: var(--c-green); }
.profil-card[data-c=purple] { --profil-c: var(--c-purple); }
.profil-icon {
  width: 58px; height: 58px;
  border-radius: 16px;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.7rem;
  margin-bottom: 1.2rem;
}
.profil-card[data-c=orange] .profil-icon { background: #FFF7ED; }
.profil-card[data-c=blue]   .profil-icon { background: #F0F9FF; }
.profil-card[data-c=green]  .profil-icon { background: #F0FDF4; }
.profil-card[data-c=purple] .profil-icon { background: #FAF5FF; }
.profil-name { font-size: 1.15rem; font-weight: 800; color: var(--c-text); margin-bottom: .45rem; }
.profil-desc { font-size: .87rem; color: var(--c-text-2); line-height: 1.65; margin-bottom: 1.2rem; }
.profil-tags { display: flex; flex-wrap: wrap; gap: .35rem; margin-bottom: 1.2rem; }
.profil-card[data-c=orange] .badge { background: #FFEDD5; color: #C2410C; }
.profil-card[data-c=blue]   .badge { background: #E0F2FE; color: #0369A1; }
.profil-card[data-c=green]  .badge { background: #DCFCE7; color: #15803D; }
.profil-card[data-c=purple] .badge { background: #EDE9FE; color: #6D28D9; }
.profil-link {
  font-size: .85rem;
  font-weight: 700;
  display: flex;
  align-items: center;
  gap: .4rem;
  transition: gap var(--t-med);
  position: relative; z-index: 1;
}
.profil-card[data-c=orange] .profil-link { color: var(--c-orange); }
.profil-card[data-c=blue]   .profil-link { color: var(--c-sky); }
.profil-card[data-c=green]  .profil-link { color: var(--c-green); }
.profil-card[data-c=purple] .profil-link { color: var(--c-purple); }
.profil-card:hover .profil-link { gap: .8rem; }

/* ── 12. SESSIONS TABLE ── */
.sessions-table-wrap {
  border-radius: var(--r-lg);
  overflow: hidden;
  border: 1px solid rgba(255,255,255,.08);
}
.sessions-table { width: 100%; border-collapse: collapse; }
.sessions-table thead { background: rgba(255,255,255,.05); }
.sessions-table th {
  padding: .9rem 1.4rem;
  text-align: left;
  font-size: .68rem;
  font-weight: 800;
  letter-spacing: 1.8px;
  text-transform: uppercase;
  color: rgba(255,255,255,.4);
  border-bottom: 1px solid rgba(255,255,255,.06);
  white-space: nowrap;
}
.sessions-table tbody tr {
  border-bottom: 1px solid rgba(255,255,255,.04);
  transition: background var(--t-fast);
}
.sessions-table tbody tr:hover { background: rgba(255,255,255,.03); }
.sessions-table td {
  padding: .95rem 1.4rem;
  font-size: .87rem;
  color: rgba(255,255,255,.7);
  vertical-align: middle;
}
.sess-name { font-weight: 700; color: #fff; }
.sess-date { font-size: .85rem; color: rgba(255,255,255,.6); }
.sess-cat {
  display: inline-block;
  padding: .2rem .7rem;
  border-radius: 50px;
  font-size: .67rem;
  font-weight: 800;
  background: rgba(249,115,22,.15);
  color: #FB923C;
}
.status-pill {
  display: inline-flex;
  align-items: center;
  gap: .35rem;
  padding: .25rem .75rem;
  border-radius: 50px;
  font-size: .7rem;
  font-weight: 700;
  white-space: nowrap;
}
.status-pill::before {
  content: '';
  width: 5px; height: 5px;
  border-radius: 50%;
  background: currentColor;
}
.status-pill.open   { background: rgba(22,163,74,.12); color: #4ADE80; }
.status-pill.full   { background: rgba(220,38,38,.12); color: #F87171; }
.status-pill.soon   { background: rgba(217,119,6,.12); color: #FCD34D; }

.sessions-loading {
  padding: 5rem 2rem;
  text-align: center;
  color: rgba(255,255,255,.4);
  font-size: .9rem;
}
.sessions-spinner {
  width: 36px; height: 36px;
  border: 3px solid rgba(249,115,22,.15);
  border-top-color: var(--c-orange);
  border-radius: 50%;
  animation: spin 1s linear infinite;
  margin: 0 auto 1rem;
}
@keyframes spin { to { transform: rotate(360deg); } }

/* ── 13. FORMS ── */
.form-wrap {
  background: #fff;
  border-radius: var(--r-lg);
  padding: 2.5rem;
  box-shadow: var(--sh-lg);
  border: 1.5px solid var(--c-border);
}
.form-title { font-size: 1.5rem; font-weight: 800; color: var(--c-text); margin-bottom: .3rem; }
.form-sub { font-size: .85rem; color: var(--c-text-2); margin-bottom: 2rem; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
.form-group { display: flex; flex-direction: column; gap: .4rem; margin-bottom: .85rem; }
.form-group.full { grid-column: 1 / -1; }
.form-label {
  font-size: .75rem;
  font-weight: 700;
  color: var(--c-text);
  letter-spacing: .1px;
}
.form-input {
  background: var(--c-bg);
  border: 1.5px solid var(--c-border);
  border-radius: var(--r-sm);
  padding: .8rem 1rem;
  font-size: .88rem;
  color: var(--c-text);
  transition: border-color var(--t-fast), box-shadow var(--t-fast), background var(--t-fast);
  width: 100%;
}
.form-input:focus {
  outline: none;
  border-color: var(--c-orange);
  background: #fff;
  box-shadow: 0 0 0 3px rgba(249,115,22,.1);
}
.form-input::placeholder { color: var(--c-text-3); }
.form-input.error { border-color: var(--c-red); }
select.form-input option { background: #fff; }
textarea.form-input { resize: vertical; min-height: 120px; }
.form-submit { width: 100%; margin-top: .5rem; padding: 1rem; font-size: .95rem; border-radius: 10px; }
.form-success {
  display: none;
  background: #F0FDF4;
  border: 1.5px solid #86EFAC;
  border-radius: var(--r-sm);
  padding: 1.2rem;
  text-align: center;
  color: #15803D;
  font-size: .9rem;
  font-weight: 600;
  margin-top: 1rem;
}

/* ── 14. FINANCEMENT OPTIONS ── */
.fin-option {
  display: flex;
  align-items: center;
  gap: 1rem;
  background: var(--c-bg);
  border-radius: var(--r-sm);
  padding: 1rem 1.2rem;
  border: 1.5px solid var(--c-border);
  transition: all var(--t-med);
  cursor: default;
}
.fin-option:hover {
  border-color: var(--c-teal);
  background: #F0FDFA;
  transform: translateX(5px);
}
.fin-option-ico {
  width: 44px; height: 44px;
  border-radius: 11px;
  background: #CCFBF1;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.1rem;
  flex-shrink: 0;
}
.fin-option-name { font-weight: 700; font-size: .92rem; color: var(--c-text); }
.fin-option-sub  { font-size: .77rem; color: var(--c-text-2); margin-top: .1rem; line-height: 1.5; }

.fin-highlight {
  background: linear-gradient(135deg, #F0FDF4, #DCFCE7 60%);
  border: 1.5px solid #86EFAC;
  border-radius: var(--r-xl);
  padding: 2.5rem;
  position: relative;
  overflow: hidden;
}
.fin-highlight::after {
  content: '100%';
  position: absolute;
  right: -8px; top: -30px;
  font-size: 8rem;
  font-weight: 900;
  color: rgba(22,163,74,.07);
  line-height: 1;
  pointer-events: none;
  letter-spacing: -4px;
}
.fin-highlight-label {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  background: rgba(22,163,74,.12);
  border: 1px solid #86EFAC;
  border-radius: 50px;
  padding: .35rem .9rem;
  font-size: .7rem;
  font-weight: 800;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: #15803D;
  margin-bottom: 1.2rem;
}
.fin-highlight-title { font-size: 1.8rem; font-weight: 900; color: var(--c-text); margin-bottom: .8rem; letter-spacing: -.3px; line-height: 1.15; }
.fin-highlight-desc { font-size: .9rem; color: var(--c-text-2); line-height: 1.75; margin-bottom: 1.5rem; }
.fin-steps { display: flex; flex-direction: column; gap: .75rem; margin-bottom: 1.8rem; }
.fin-step { display: flex; align-items: flex-start; gap: .85rem; font-size: .87rem; color: var(--c-text-2); }
.fin-step-n {
  width: 26px; height: 26px;
  border-radius: 50%;
  background: rgba(22,163,74,.14);
  color: #15803D;
  font-size: .68rem;
  font-weight: 800;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
  margin-top: 1px;
}

/* ── 15. TRUST / VALUES ── */
.trust-val {
  background: rgba(255,255,255,.04);
  border: 1px solid rgba(255,255,255,.07);
  border-radius: var(--r-sm);
  padding: 1.2rem;
  transition: background var(--t-fast);
}
.trust-val:hover { background: rgba(255,255,255,.07); }
.trust-val-ico { font-size: 1.5rem; margin-bottom: .5rem; }
.trust-val-name { font-weight: 700; font-size: .9rem; color: #fff; margin-bottom: .2rem; }
.trust-val-desc { font-size: .77rem; color: rgba(255,255,255,.45); line-height: 1.55; }

/* ── 16. CONTACT INFO ── */
.contact-item { display: flex; align-items: flex-start; gap: 1rem; }
.contact-ico {
  width: 46px; height: 46px;
  border-radius: 12px;
  background: var(--c-orange-l);
  border: 1.5px solid #FED7AA;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.1rem;
  flex-shrink: 0;
}
.contact-label { font-size: .68rem; font-weight: 800; letter-spacing: 1.5px; text-transform: uppercase; color: var(--c-orange); margin-bottom: .25rem; }
.contact-val { font-size: .92rem; color: var(--c-text-2); line-height: 1.65; }
.contact-val a { font-weight: 600; transition: color var(--t-fast); }
.contact-val a:hover { color: var(--c-text); }
.social-btn {
  width: 40px; height: 40px;
  border-radius: 10px;
  border: 1.5px solid var(--c-border);
  display: flex; align-items: center; justify-content: center;
  color: var(--c-text-2);
  font-size: .95rem;
  transition: all var(--t-fast);
  text-decoration: none;
}
.social-btn:hover { border-color: var(--c-orange); color: var(--c-orange); background: var(--c-orange-l); }

/* ── 17. CTA BANNER ── */
.cta-banner {
  background: linear-gradient(135deg, var(--c-orange) 0%, #EA580C 100%);
  border-radius: var(--r-xl);
  padding: 3.5rem 3rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  position: relative;
  overflow: hidden;
}
.cta-banner::before {
  content: '';
  position: absolute;
  right: -100px; bottom: -100px;
  width: 400px; height: 400px;
  border-radius: 50%;
  background: rgba(255,255,255,.06);
  pointer-events: none;
}
.cta-banner::after {
  content: '';
  position: absolute;
  left: -50px; top: -80px;
  width: 300px; height: 300px;
  border-radius: 50%;
  background: rgba(255,255,255,.04);
  pointer-events: none;
}
.cta-banner-text h2 { font-size: clamp(1.5rem,3vw,2.2rem); font-weight: 900; color: #fff; margin-bottom: .5rem; }
.cta-banner-text p  { color: rgba(255,255,255,.75); font-size: .95rem; }
.cta-banner-actions { display: flex; gap: .9rem; flex-shrink: 0; flex-wrap: wrap; position: relative; z-index: 1; }

/* ── 18. STATS BAR ── */
.stats-bar {
  background: var(--c-navy);
  padding: 1.8rem 0;
}
.stats-inner { display: flex; align-items: stretch; }
.stat-item {
  flex: 1;
  text-align: center;
  padding: 1rem 1.5rem;
  position: relative;
}
.stat-item + .stat-item::before {
  content: '';
  position: absolute;
  left: 0; top: 20%; bottom: 20%;
  width: 1px;
  background: rgba(255,255,255,.1);
}
.stat-num {
  font-size: clamp(1.8rem,3.5vw,2.8rem);
  font-weight: 900;
  color: var(--c-orange);
  line-height: 1;
  letter-spacing: -1px;
}
.stat-label {
  font-size: .72rem;
  font-weight: 600;
  color: rgba(255,255,255,.5);
  letter-spacing: 1px;
  text-transform: uppercase;
  margin-top: .3rem;
}

/* ── 19. CPF BANNER ── */
.cpf-banner {
  background: linear-gradient(135deg,#EFF6FF,#F0FDF4);
  border: 1px solid #BFDBFE;
  border-radius: var(--r-md);
  padding: 1.4rem 1.8rem;
  display: flex;
  align-items: center;
  gap: 1.2rem;
  margin-top: 2rem;
}
.cpf-banner-ico { font-size: 2rem; flex-shrink: 0; }
.cpf-banner p { font-size: .88rem; color: var(--c-text-2); line-height: 1.7; }
.cpf-banner a { color: var(--c-sky); font-weight: 600; text-decoration: underline; }
.cpf-banner a:hover { color: var(--c-blue); }

/* ── 20. SCROLL REVEAL ── */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity .65s ease, transform .65s ease;
}
.reveal.vis { opacity: 1; transform: none; }
.reveal.d1 { transition-delay: .1s; }
.reveal.d2 { transition-delay: .2s; }
.reveal.d3 { transition-delay: .3s; }
.reveal.d4 { transition-delay: .4s; }
.reveal.d5 { transition-delay: .5s; }

/* ── 21. FOOTER ── */
.site-footer {
  background: var(--c-dark);
  border-top: 1px solid rgba(255,255,255,.05);
}
.footer-main { padding: 5rem 0 2.5rem; }
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 3rem; margin-bottom: 3rem; }
.footer-brand img { height: 42px; margin-bottom: 1rem; }
.footer-brand p { font-size: .85rem; color: rgba(255,255,255,.4); line-height: 1.8; max-width: 250px; }
.footer-col h4 {
  font-size: .7rem;
  font-weight: 800;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: rgba(255,255,255,.35);
  margin-bottom: 1.2rem;
}
.footer-col ul { display: flex; flex-direction: column; gap: .55rem; }
.footer-col a { font-size: .85rem; color: rgba(255,255,255,.45); transition: color var(--t-fast); }
.footer-col a:hover { color: #fff; }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,.06);
  padding-top: 1.5rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 1rem;
}
.footer-copy { font-size: .75rem; color: rgba(255,255,255,.25); }
.footer-copy a { color: rgba(255,255,255,.35); transition: color var(--t-fast); }
.footer-copy a:hover { color: rgba(255,255,255,.7); }

/* ── 22. MISC UTILITIES ── */
.sr-only { position: absolute; width: 1px; height: 1px; overflow: hidden; clip: rect(0,0,0,0); white-space: nowrap; }
.divider { height: 1px; background: var(--c-border); margin: var(--sp-lg) 0; }
.divider-dark { background: rgba(255,255,255,.06); }
.text-center { text-align: center; }
.text-orange { color: var(--c-orange); }
.text-white  { color: #fff; }

/* Hours box */
.hours-box {
  background: #fff;
  border: 1.5px solid var(--c-border);
  border-radius: var(--r-sm);
  padding: 1.4rem;
}
.hours-title { font-size: .7rem; font-weight: 800; color: var(--c-orange); letter-spacing: 1.5px; text-transform: uppercase; margin-bottom: .75rem; }
.hours-box p { font-size: .87rem; color: var(--c-text-2); line-height: 1.8; }

/* Map embed */
.map-wrap { border-radius: var(--r-md); overflow: hidden; border: 1.5px solid var(--c-border); }
.map-wrap iframe { display: block; width: 100%; height: 280px; border: none; }

/* ── 23. RESPONSIVE ── */
@media (max-width: 1024px) {
  .grid-3, .footer-grid { grid-template-columns: repeat(2,1fr); }
  .grid-4 { grid-template-columns: repeat(2,1fr); }
}

@media (max-width: 768px) {
  .wrap, .wrap-sm { padding: 0 1.2rem; }
  .section-pad { padding: var(--sp-xl) 0; }
  .grid-2, .grid-3, .grid-4 { grid-template-columns: 1fr; }
  .nav-links, .nav-actions .btn { display: none; }
  .hamburger { display: flex; }
  .form-row { grid-template-columns: 1fr; }
  .cta-banner { flex-direction: column; padding: 2.5rem 2rem; }
  .cta-banner-actions { width: 100%; }
  .cta-banner-actions .btn { width: 100%; justify-content: center; }
  .stats-inner { flex-wrap: wrap; }
  .stat-item { flex: 0 0 50%; }
  .stat-item + .stat-item::before { display: none; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  #topbar .topbar-left .topbar-item:not(:first-child) { display: none; }
}

@media (max-width: 480px) {
  .footer-grid { grid-template-columns: 1fr; }
  .hero-btns { flex-direction: column; }
  .hero-btns .btn { width: 100%; justify-content: center; }
}
