/* ============================================================
   LogeCall — Landing Page v2 — Premium Redesign
   ============================================================ */

/* ── Design Tokens ─────────────────────────────────────────── */
:root {
  --lc-primary:     #1a56db;
  --lc-primary-dk:  #1340b0;
  --lc-primary-lt:  #3b82f6;
  --lc-accent:      #06b6d4;
  --lc-accent-2:    #8b5cf6;

  --lc-dark:        #0a0f1e;
  --lc-dark-2:      #0f172a;
  --lc-dark-3:      #1e2d4e;
  --lc-surface:     #f8fafc;
  --lc-surface-2:   #f1f5f9;

  --lc-text:        #1e293b;
  --lc-muted:       #64748b;
  --lc-border:      #e2e8f0;

  --lc-radius:      1rem;
  --lc-radius-lg:   1.25rem;
  --lc-shadow:      0 4px 24px rgba(15,23,42,.08);
  --lc-shadow-lg:   0 20px 60px rgba(15,23,42,.14);
  --lc-shadow-blue: 0 8px 32px rgba(26,86,219,.25);

  --ease-spring: cubic-bezier(0.34, 1.56, 0.64, 1);
  --ease-out:    cubic-bezier(0.22, 1, 0.36, 1);
}

/* ── Reset & base ───────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; }

html, body {
  overflow-x: hidden;
  max-width: 100%;
  scroll-behavior: smooth;
}

body {
  font-family: 'Inter', system-ui, -apple-system, sans-serif;
  color: var(--lc-text);
  background: #fff;
  -webkit-font-smoothing: antialiased;
}

h1,h2,h3,h4,h5,h6 {
  font-family: 'Poppins', 'Inter', system-ui, sans-serif;
  color: var(--lc-dark-2);
  font-weight: 700;
  line-height: 1.2;
}

/* ── Utilities ──────────────────────────────────────────────── */
.text-accent   { color: var(--lc-accent) !important; }
.text-primary  { color: var(--lc-primary) !important; }
.text-muted-lc { color: var(--lc-muted)  !important; }
.nowrap { white-space: nowrap; }

.section-label {
  display: inline-flex;
  align-items: center;
  gap: .4rem;
  font-size: .72rem;
  font-weight: 700;
  letter-spacing: .15em;
  text-transform: uppercase;
  color: var(--lc-primary);
  background: linear-gradient(135deg, rgba(26,86,219,.1), rgba(6,182,212,.06));
  border: 1px solid rgba(26,86,219,.14);
  padding: .35rem 1rem;
  border-radius: 50rem;
  margin-bottom: 1.25rem;
}

.section-title {
  font-size: clamp(1.75rem, 4vw, 2.75rem);
  margin-bottom: .75rem;
  letter-spacing: -.02em;
}

.section-sub {
  font-size: 1.1rem;
  color: var(--lc-muted);
  max-width: 580px;
  margin-inline: auto;
  line-height: 1.75;
}

/* ── Navbar ─────────────────────────────────────────────────── */
#navbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  transition: background .35s var(--ease-out),
              box-shadow .35s var(--ease-out),
              padding .35s var(--ease-out);
  padding: 1.25rem 0;
}

#navbar.scrolled {
  background: rgba(255,255,255,.94) !important;
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  box-shadow: 0 1px 0 rgba(15,23,42,.06), 0 4px 24px rgba(15,23,42,.06);
  padding: .65rem 0;
}

#navbarCollapse .nav-link {
  color: rgba(255,255,255,.88);
  font-weight: 500;
  font-size: .9rem;
  padding: .5rem .75rem !important;
  transition: color .15s;
  border-radius: 8px;
}
#navbarCollapse .nav-link:hover { color: #fff; background: rgba(255,255,255,.08); }

#navbar.scrolled .nav-link,
#navbar.scrolled .brand-text { color: var(--lc-dark-2) !important; }
#navbar.scrolled .nav-link:hover { background: var(--lc-surface); color: var(--lc-primary) !important; }
#navbar.scrolled .nav-link.active { color: var(--lc-primary) !important; font-weight: 600; }
#navbar.scrolled .navbar-toggler i { color: var(--lc-dark-2) !important; }

/* Pages internes : navbar toujours en état scrolled avec fond blanc */
.page-inner #navbar {
  background: rgba(255,255,255,.97) !important;
  box-shadow: 0 1px 0 rgba(15,23,42,.06), 0 4px 24px rgba(15,23,42,.06);
}

.navbar-brand {
  display: flex;
  align-items: center;
  gap: .6rem;
  text-decoration: none;
}

.brand-text {
  font-size: 1.3rem;
  font-weight: 700;
  color: #fff;
  transition: color .3s;
}

.btn-nav {
  background: rgba(255,255,255,.14);
  backdrop-filter: blur(8px);
  color: #fff !important;
  font-weight: 600;
  border-radius: 10px;
  padding: .5rem 1.25rem !important;
  border: 1px solid rgba(255,255,255,.22);
  transition: background .15s, transform .15s;
}
.btn-nav:hover { background: rgba(255,255,255,.22); transform: translateY(-1px); }

#navbar.scrolled .btn-nav {
  background: var(--lc-primary);
  color: #fff !important;
  border-color: transparent;
  box-shadow: var(--lc-shadow-blue);
}
#navbar.scrolled .btn-nav:hover { background: var(--lc-primary-dk); transform: translateY(-1px); color: #fff !important; }

/* ── Mobile Drawer ──────────────────────────────────────────── */
:root {
  --accent: #3fb8ff;
  --accent-2: #6ee7ff;
  --text: #e9f2ff;
  --muted: #9db4d9;
  --green: #22e06a;
  --orange: #ffb547;
}

.drawer-overlay {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,.48);
  z-index: 1099;
  opacity: 0;
  transition: opacity .3s;
  backdrop-filter: blur(4px);
}
.drawer-overlay.active { display: block; opacity: 1; }

.mobile-drawer {
  position: fixed;
  top: 0; left: 0;
  height: 100%;
  width: 288px;
  max-width: 85vw;
  background: #fff;
  z-index: 1100;
  transform: translateX(-100%);
  transition: transform .35s var(--ease-out);
  display: flex;
  flex-direction: column;
  box-shadow: 8px 0 48px rgba(15,23,42,.18);
}
.mobile-drawer.open { transform: translateX(0); }

.drawer-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.25rem;
  border-bottom: 1px solid var(--lc-border);
}

.drawer-close {
  background: none;
  border: none;
  font-size: 1.1rem;
  color: var(--lc-muted);
  cursor: pointer;
  padding: .4rem .7rem;
  border-radius: 8px;
  transition: background .15s, color .15s;
}
.drawer-close:hover { background: var(--lc-surface); color: var(--lc-dark-2); }

.drawer-nav {
  display: flex;
  flex-direction: column;
  padding: 1rem .75rem;
  flex: 1;
  gap: .2rem;
}

.drawer-link {
  color: var(--lc-dark-2);
  font-weight: 500;
  font-size: .97rem;
  padding: .85rem 1rem;
  border-radius: 10px;
  text-decoration: none;
  transition: background .15s, color .15s, transform .2s var(--ease-spring);
}
.drawer-link:hover { background: var(--lc-surface); color: var(--lc-primary); transform: translateX(4px); }

.drawer-link-cta {
  margin-top: auto;
  background: linear-gradient(135deg, var(--lc-primary), var(--lc-primary-lt));
  color: #fff !important;
  font-weight: 600;
  text-align: center;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: var(--lc-shadow-blue);
}
.drawer-link-cta:hover { background: linear-gradient(135deg, var(--lc-primary-dk), var(--lc-primary)); color: #fff !important; transform: none; }

/* ═══════════════════════════════════════════════════════════
   HERO
═══════════════════════════════════════════════════════════ */
#hero {
  min-height: 100dvh;
  background: linear-gradient(140deg, #050d1f 0%, #0b1d52 40%, #122370 65%, #0d1a3a 100%);
  display: flex;
  align-items: center;
  padding-top: 90px;
  padding-bottom: 60px;
  position: relative;
  overflow: hidden;
}

#hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 80% 60% at 70% 40%, rgba(6,182,212,.13), transparent 60%),
    radial-gradient(ellipse 50% 40% at 15% 75%, rgba(139,92,246,.1), transparent 55%),
    radial-gradient(ellipse 90% 70% at 50% -10%, rgba(26,86,219,.16), transparent 65%);
  pointer-events: none;
}

.hero-grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,.022) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.022) 1px, transparent 1px);
  background-size: 64px 64px;
  mask-image: radial-gradient(ellipse 80% 80% at center, black 30%, transparent 100%);
  -webkit-mask-image: radial-gradient(ellipse 80% 80% at center, black 30%, transparent 100%);
}

.hero-glow {
  position: absolute;
  border-radius: 50%;
  filter: blur(90px);
  opacity: .22;
  will-change: transform;
  pointer-events: none;
}
.hero-glow-1 {
  width: 700px; height: 700px;
  background: radial-gradient(circle, var(--lc-accent), transparent 70%);
  top: -250px; right: -150px;
  animation: halo-drift-1 14s ease-in-out infinite;
}
.hero-glow-2 {
  width: 500px; height: 500px;
  background: radial-gradient(circle, #6366f1, transparent 70%);
  bottom: -100px; left: 5%;
  animation: halo-drift-2 12s ease-in-out infinite;
}

@keyframes halo-drift-1 {
  0%,100% { transform: translate(0,0) scale(1); }
  33%      { transform: translate(-100px,80px) scale(1.1); }
  66%      { transform: translate(60px,140px) scale(.92); }
}
@keyframes halo-drift-2 {
  0%,100% { transform: translate(0,0) scale(1); }
  40%      { transform: translate(120px,-60px) scale(1.12); }
  70%      { transform: translate(-40px,90px) scale(.9); }
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  background: rgba(255,255,255,.08);
  border: 1px solid rgba(255,255,255,.14);
  backdrop-filter: blur(12px);
  color: rgba(255,255,255,.9);
  border-radius: 50rem;
  padding: .4rem 1.1rem;
  font-size: .8rem;
  font-weight: 600;
  margin-bottom: 1.5rem;
  animation: fadeSlideDown .6s var(--ease-out) both;
}

.hero-badge .dot {
  width: 8px; height: 8px;
  background: #4ade80;
  border-radius: 50%;
  box-shadow: 0 0 8px #4ade80;
  animation: pulse-dot 2s ease-in-out infinite;
}

@keyframes pulse-dot {
  0%,100% { opacity: 1; transform: scale(1); box-shadow: 0 0 8px #4ade80; }
  50%      { opacity: .6; transform: scale(1.4); box-shadow: 0 0 16px #4ade80; }
}

.hero-title {
  font-family: 'Poppins', sans-serif;
  font-size: clamp(2.5rem, 6vw, 4.1rem);
  font-weight: 800;
  color: #fff;
  line-height: 1.1;
  margin-bottom: 1.5rem;
  letter-spacing: -.03em;
  animation: fadeSlideUp .7s var(--ease-out) .1s both;
}

.hero-title .highlight {
  background: linear-gradient(100deg, #38bdf8 0%, var(--lc-accent) 40%, #818cf8 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero-desc {
  font-size: 1.1rem;
  color: rgba(255,255,255,.65);
  line-height: 1.85;
  margin-bottom: 2.5rem;
  max-width: 520px;
  animation: fadeSlideUp .7s var(--ease-out) .2s both;
}

.btn-hero-primary {
  background: #fff;
  color: var(--lc-primary);
  font-family: 'Poppins', sans-serif;
  font-weight: 700;
  font-size: .97rem;
  padding: .9rem 2.1rem;
  border-radius: var(--lc-radius);
  border: none;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: .55rem;
  transition: transform .25s var(--ease-spring), box-shadow .25s;
  box-shadow: 0 4px 7px rgba(0,0,0,.28), inset 0 1px 0 rgba(255,255,255,.5);
  animation: fadeSlideUp .7s var(--ease-out) .3s both;
}
.btn-hero-primary:hover {
  transform: translateY(-3px) scale(1.02);
  
  color: var(--lc-primary);
  text-decoration: none;
}
.btn-hero-primary:active { transform: scale(.97); }

.btn-hero-ghost {
  background: transparent;
  color: rgba(255,255,255,.82);
  font-weight: 600;
  font-size: .97rem;
  padding: .9rem 2.1rem;
  border-radius: var(--lc-radius);
  border: 1.5px solid rgba(255,255,255,.24);
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: .55rem;
  transition: background .2s, border-color .2s, transform .25s var(--ease-spring), color .2s;
  animation: fadeSlideUp .7s var(--ease-out) .35s both;
}
.btn-hero-ghost:hover {
  background: rgba(255,255,255,.1);
  border-color: rgba(255,255,255,.48);
  color: #fff;
  text-decoration: none;
  transform: translateY(-2px);
}

.hero-mockup {
  position: relative;
  z-index: 2;
  animation: fadeSlideUp .9s var(--ease-out) .2s both;
}

.hero-stats {
  display: flex;
  gap: 2.5rem;
  margin-top: 3rem;
  flex-wrap: wrap;
  animation: fadeSlideUp .7s var(--ease-out) .45s both;
}

.hero-stat-value {
  font-family: 'Poppins', sans-serif;
  font-size: 2rem;
  font-weight: 800;
  color: #fff;
  line-height: 1;
}

.hero-stat-label {
  font-size: .78rem;
  color: rgba(255,255,255,.45);
  margin-top: .3rem;
  font-weight: 500;
}

/* ── Call ticker ──────────────────────────────────────────── */
.call-ticker {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 46px;
  overflow: hidden;
  background: rgba(255,255,255,.04);
  border-top: 1px solid rgba(255,255,255,.07);
  backdrop-filter: blur(6px);
  z-index: 3;
}

.call-ticker__track {
  display: flex;
  align-items: center;
  height: 100%;
  white-space: nowrap;
  animation: ticker-scroll 38s linear infinite;
  will-change: transform;
}

@keyframes ticker-scroll {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}

.ct-event {
  display: inline-flex;
  align-items: center;
  gap: .6rem;
  padding: 0 2rem;
  height: 100%;
  border-right: 1px solid rgba(255,255,255,.06);
  font-size: .72rem;
  letter-spacing: .03em;
}

.ct-time  { color: rgba(255,255,255,.3); font-variant-numeric: tabular-nums; font-size: .68rem; }
.ct-icon  { color: rgba(255,255,255,.45); font-size: .7rem; }
.ct-label { color: rgba(255,255,255,.72); font-weight: 500; }
.ct-sep   { color: rgba(255,255,255,.18); }
.ct-dest  { color: #38bdf8; font-weight: 600; }

/* ═══════════════════════════════════════════════════════════
   TRUSTED
═══════════════════════════════════════════════════════════ */
#trusted {
  padding: 5rem 0;
  background: var(--lc-surface);
  border-top: 1px solid var(--lc-border);
  border-bottom: 1px solid var(--lc-border);
}

.trusted-label {
  font-size: .8rem;
  text-transform: uppercase;
  letter-spacing: .12em;
  color: var(--lc-muted);
  font-weight: 600;
}

.trusted-card {
  background: #fff;
  border: 1px solid var(--lc-border);
  border-radius: var(--lc-radius);
  padding: 1.5rem 1rem;
  text-align: center;
  transition: box-shadow .25s, transform .25s var(--ease-spring), border-color .25s;
  height: 100%;
  cursor: pointer;
  position: relative;
  overflow: hidden;
}
.trusted-card::before {
  content: '';
  position: absolute; inset: 0;
  background: linear-gradient(135deg, rgba(26,86,219,.04), rgba(6,182,212,.04));
  opacity: 0;
  transition: opacity .25s;
}
.trusted-card:hover {
  box-shadow: 0 12px 40px rgba(26,86,219,.1);
  transform: translateY(-4px);
  border-color: rgba(26,86,219,.18);
}
.trusted-card:hover::before { opacity: 1; }

.trusted-icon {
  width: 52px; height: 52px;
  border-radius: 14px;
  background: linear-gradient(135deg, rgba(26,86,219,.1), rgba(6,182,212,.12));
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto .85rem;
  transition: transform .25s var(--ease-spring);
}
.trusted-card:hover .trusted-icon { transform: scale(1.1) rotate(-3deg); }
.trusted-icon i { font-size: 1.2rem; color: var(--lc-primary); }

.trusted-card-label {
  font-size: .85rem;
  font-weight: 700;
  color: var(--lc-text);
  margin-bottom: .3rem;
  line-height: 1.3;
}
.trusted-card-desc { font-size: .75rem; color: var(--lc-muted); line-height: 1.4; }

/* ═══════════════════════════════════════════════════════════
   FEATURES
═══════════════════════════════════════════════════════════ */
#features {
  padding: 7rem 0;
  background: #fff;
}

.feature-card {
  background: #fff;
  border: 1px solid var(--lc-border);
  border-radius: var(--lc-radius-lg);
  padding: 2rem;
  height: 100%;
  transition: transform .25s var(--ease-spring), box-shadow .25s, border-color .25s;
  position: relative;
  overflow: hidden;
}
.feature-card::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--lc-primary), var(--lc-accent));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform .3s var(--ease-out);
}
.feature-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 20px 60px rgba(15,23,42,.1);
  border-color: rgba(26,86,219,.18);
}
.feature-card:hover::after { transform: scaleX(1); }

.step-card {
  background: #fff;
  border: 1px solid var(--lc-border);
  border-radius: var(--lc-radius-lg);
  padding: 2rem;
  
  position: relative;
  transition: box-shadow .25s, transform .25s var(--ease-spring);
}
.step-card:hover {
  box-shadow: 0 16px 48px rgba(15,23,42,.09);
  transform: translateY(-4px);
}
.step-card h3 { font-family: 'Poppins', sans-serif; }

.feature-icon {
  width: 56px; height: 56px;
  border-radius: 16px;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.45rem;
  margin-bottom: 1.25rem;
  transition: transform .25s var(--ease-spring);
}
.feature-card:hover .feature-icon,
.step-card:hover .feature-icon { transform: scale(1.12) rotate(-4deg); }

.step-number {
  position: absolute;
  top: -16px; left: 1.5rem;
  width: 36px; height: 36px;
  background: linear-gradient(135deg, var(--lc-primary), var(--lc-primary-lt));
  color: #fff;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: .85rem;
  font-weight: 800;
  box-shadow: 0 4px 16px rgba(26,86,219,.4);
}

/* ═══════════════════════════════════════════════════════════
   HOW IT WORKS
═══════════════════════════════════════════════════════════ */
#how {
  padding: 7rem 0;
  background: var(--lc-surface);
  position: relative;
}
#how::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--lc-border), transparent);
}

.logecall-flow {
  --lc-blue-1: #0f172a;
  --lc-blue-2: #1d4ed8;
  --lc-blue-3: #2563eb;
  --lc-blue-4: #60a5fa;
  --lc-border: #dbe7f5;
  --lc-text: #0f172a;
  --lc-muted: #64748b;
  --lc-green: #22c55e;
  --lc-bg-soft: rgba(255,255,255,.95);
  --lc-shadow: 0 12px 40px rgba(37,99,235,.1);
  position: relative;
  background: transparent;
}

.logecall-step {
  position: relative;
  background: var(--lc-bg-soft);
  border: 1px solid var(--lc-border);
  border-radius: 20px;
  padding: 30px 20px 20px;
  text-align: center;
  min-height: 200px;
  box-shadow: var(--lc-shadow);
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
  transition: transform .25s var(--ease-spring), box-shadow .25s;
}
.logecall-step:hover {
  transform: translateY(-4px);
  box-shadow: 0 20px 50px rgba(37,99,235,.15);
}

.logecall-step--main {
  background: linear-gradient(135deg, #16245c 0%, #1d4ed8 100%);
  border-color: rgba(255,255,255,.12);
  color: #fff;
  box-shadow: 0 20px 50px rgba(29,78,216,.28);
}

.logecall-badge {
  position: absolute;
  top: -14px; right: 18px;
  width: 38px; height: 38px;
  border-radius: 50%;
  display: inline-flex;
  align-items: center; justify-content: center;
  font-weight: 700; font-size: 14px; color: #fff;
  background: linear-gradient(135deg, #1d4ed8, #38bdf8);
  box-shadow: 0 8px 20px rgba(37,99,235,.28);
}

.logecall-icon {
  width: 72px; height: 72px;
  margin: 0 auto 16px;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 28px;
  color: var(--lc-blue-3);
  background: linear-gradient(135deg, rgba(37,99,235,.1), rgba(56,189,248,.1));
  transition: transform .25s var(--ease-spring);
}
.logecall-step:hover .logecall-icon { transform: scale(1.08) rotate(-5deg); }

.logecall-step--main .logecall-icon {
  color: #fff;
  background: rgba(255,255,255,.12);
  border: 1px solid rgba(255,255,255,.15);
}

.logecall-title {
  font-family: 'Poppins', sans-serif;
  font-weight: 700;
  font-size: 1.05rem;
  line-height: 1.2;
  color: var(--lc-text);
  margin-bottom: 8px;
}
.logecall-step--main .logecall-title { color: #fff; }

.logecall-desc {
  font-size: .9rem;
  line-height: 1.5;
  color: var(--lc-muted);
  margin: 0;
}
.logecall-step--main .logecall-desc { color: rgba(255,255,255,.78); }

.logecall-arrow-wrap {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 200px;
}

.logecall-arrow {
  position: relative;
  width: 100%;
  height: 5px;
  border-radius: 999px;
  background: linear-gradient(90deg, #1d4ed8 0%, #38bdf8 100%);
  overflow: hidden;
}
.logecall-arrow::before {
  content: '';
  position: absolute;
  top: 0; left: -60%; right: auto; bottom: 0;
  width: 60%;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,.6), transparent);
  animation: arrow-shimmer 2s ease-in-out infinite;
}
@keyframes arrow-shimmer {
  0%   { left: -60%; }
  100% { left: 120%; }
}
.logecall-arrow::after {
  content: "";
  position: absolute;
  right: -2px; top: 50%;
  transform: translateY(-50%);
  border-top: 10px solid transparent;
  border-bottom: 10px solid transparent;
  border-left: 18px solid #38bdf8;
}

.logecall-arrow-label {
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -34px);
  white-space: nowrap;
  padding: 6px 12px;
  font-size: .78rem;
  font-weight: 600;
  color: var(--lc-blue-3);
  background: rgba(255,255,255,.95);
  border: 1px solid #dbe7f5;
  border-radius: 999px;
  box-shadow: 0 6px 18px rgba(15,23,42,.07);
}

.logecall-arrow--success {
  background: linear-gradient(90deg, #2563eb 0%, #22c55e 100%);
}
.logecall-arrow--success::after { border-left-color: #22c55e; }

@media (max-width: 991.98px) {
  .logecall-arrow-wrap { min-height: 64px; }
  .logecall-arrow {
    width: 5px; height: 52px;
    background: linear-gradient(180deg, #1d4ed8, #38bdf8);
    overflow: hidden;
  }
  .logecall-arrow::before { animation: none; }
  .logecall-arrow::after {
    right: 50%; top: auto; bottom: -2px;
    transform: translateX(50%);
    border-left: 10px solid transparent;
    border-right: 10px solid transparent;
    border-top: 18px solid #38bdf8;
    border-bottom: 0;
  }
  .logecall-arrow--success::after { border-top-color: #22c55e; }
  .logecall-arrow-label {
    top: 50%; left: 50%;
    transform: translate(-50%, -50%);
    white-space: normal;
    text-align: center;
    min-width: 140px;
  }
}

/* ═══════════════════════════════════════════════════════════
   DETAIL MODULES
═══════════════════════════════════════════════════════════ */
#detail {
  padding: 7rem 0;
  background: #fff;
}

.detail-panel { padding: 4rem 0; }
.detail-panel + .detail-panel { border-top: 1px solid var(--lc-border); }

.detail-screen {
  border-radius: 14px;
  border: 1px solid var(--lc-border);
  box-shadow: 0 20px 60px rgba(15,23,42,.1);
  overflow: hidden;
  background: var(--lc-surface);
  transition: box-shadow .4s var(--ease-out), transform .4s var(--ease-out);
}
.detail-screen:hover {
  box-shadow: 0 32px 80px rgba(26,86,219,.14);
  transform: translateY(-4px) rotate(.3deg);
}

.detail-screen-img {
  display: block;
  width: 100%;
  height: auto;
}

.detail-chip {
  display: inline-flex;
  align-items: center;
  gap: .4rem;
  background: linear-gradient(135deg, rgba(26,86,219,.08), rgba(6,182,212,.05));
  color: var(--lc-primary);
  border: 1px solid rgba(26,86,219,.12);
  border-radius: 50rem;
  padding: .25rem .85rem;
  font-size: .78rem;
  font-weight: 600;
  margin: .25rem .25rem 0 0;
  transition: background .15s, transform .2s var(--ease-spring);
}
.detail-chip:hover {
  background: linear-gradient(135deg, rgba(26,86,219,.14), rgba(6,182,212,.08));
  transform: translateY(-1px);
}

/* ═══════════════════════════════════════════════════════════
   STATS
═══════════════════════════════════════════════════════════ */
#stats {
  padding: 6rem 0;
  background: linear-gradient(140deg, #070e20 0%, #0b1c50 50%, #0d1535 100%);
  position: relative;
  overflow: hidden;
}

#stats::before {
  content: '';
  position: absolute; inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,.02) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.02) 1px, transparent 1px);
  background-size: 64px 64px;
}
#stats::after {
  content: '';
  position: absolute;
  top: -120px; left: 50%; transform: translateX(-50%);
  width: 700px; height: 400px;
  background: radial-gradient(ellipse, rgba(6,182,212,.1), transparent 70%);
  pointer-events: none;
}

.stat-box {
  text-align: center;
  position: relative;
  z-index: 1;
  padding: 2.25rem 1.5rem;
  background: rgba(255,255,255,.04);
  border: 1px solid rgba(255,255,255,.08);
  border-radius: var(--lc-radius-lg);
  backdrop-filter: blur(4px);
  transition: background .25s, transform .25s var(--ease-spring), box-shadow .25s;
}
.stat-box:hover {
  background: rgba(255,255,255,.07);
  transform: translateY(-5px);
  box-shadow: 0 20px 50px rgba(0,0,0,.28);
}

.stat-box .stat-num {
  font-family: 'Poppins', sans-serif;
  font-size: clamp(2.5rem, 5vw, 3.8rem);
  font-weight: 800;
  color: #fff;
  line-height: 1;
}
.stat-box .stat-label {
  color: rgba(255,255,255,.85);
  margin-top: .6rem;
  font-size: .95rem;
  font-weight: 600;
}
.stat-box .stat-sub {
  color: rgba(255,255,255,.38);
  font-size: .78rem;
  margin-top: .35rem;
  line-height: 1.4;
}
.stat-box .stat-icon {
  width: 52px; height: 52px;
  border-radius: 50%;
  background: rgba(255,255,255,.08);
  border: 1px solid rgba(255,255,255,.12);
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 1.1rem;
  transition: transform .25s var(--ease-spring);
}
.stat-box:hover .stat-icon { transform: scale(1.12) rotate(-5deg); }
.stat-box .stat-icon i { font-size: 1.1rem; color: var(--lc-accent); }

/* ═══════════════════════════════════════════════════════════
   REVIEWS / AVIS
═══════════════════════════════════════════════════════════ */
#reviews {
  padding: 7rem 0;
  background: var(--lc-surface);
  position: relative;
  overflow: hidden;
}
#reviews::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--lc-border), transparent);
}

.reviews-banner {
  background: linear-gradient(135deg, rgba(26,86,219,.05), rgba(6,182,212,.03));
  border: 1px solid rgba(26,86,219,.1);
  border-radius: var(--lc-radius);
  padding: 1.5rem 2rem;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 3rem;
  flex-wrap: wrap;
  margin-bottom: 3.5rem;
}
.reviews-banner-stat { text-align: center; }
.reviews-banner-num {
  font-family: 'Poppins', sans-serif;
  font-size: 2rem;
  font-weight: 800;
  color: var(--lc-dark-2);
  line-height: 1;
}
.reviews-banner-label {
  font-size: .78rem;
  color: var(--lc-muted);
  font-weight: 500;
  margin-top: .3rem;
}
.reviews-banner-stars { color: #f59e0b; font-size: 1rem; margin-top: .15rem; }

.review-card {
  background: #fff;
  border: 1px solid var(--lc-border);
  border-radius: var(--lc-radius-lg);
  padding: 1.75rem;
  height: 100%;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  transition: box-shadow .25s, transform .25s var(--ease-spring), border-color .25s;
  position: relative;
  overflow: hidden;
}
.review-card::before {
  content: '\201C';
  position: absolute;
  top: .5rem; right: 1.25rem;
  font-size: 5rem;
  font-family: Georgia, serif;
  color: rgba(26,86,219,.06);
  line-height: 1;
  pointer-events: none;
  font-weight: 700;
}
.review-card:hover {
  box-shadow: 0 16px 48px rgba(26,86,219,.1);
  transform: translateY(-4px);
  border-color: rgba(26,86,219,.16);
}

.review-stars { display: flex; gap: .2rem; color: #f59e0b; font-size: .88rem; }

.review-text {
  font-size: .93rem;
  line-height: 1.78;
  color: var(--lc-text);
  flex: 1;
  font-style: italic;
}

.review-author {
  display: flex;
  align-items: center;
  gap: .85rem;
  padding-top: 1rem;
  border-top: 1px solid var(--lc-border);
}

.review-avatar {
  width: 42px; height: 42px;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-weight: 700;
  font-size: .85rem;
  color: #fff;
  flex-shrink: 0;
}

.review-name {
  font-family: 'Poppins', sans-serif;
  font-weight: 700;
  font-size: .88rem;
  color: var(--lc-dark-2);
  margin-bottom: .12rem;
  line-height: 1.2;
}
.review-role { font-size: .76rem; color: var(--lc-muted); }

/* ═══════════════════════════════════════════════════════════
   TARIFS
═══════════════════════════════════════════════════════════ */
#tarifs {
  padding: 7rem 0;
  background: var(--lc-surface);
}

.pricing-card {
  background: #fff;
  border: 2px solid var(--lc-primary);
  border-radius: var(--lc-radius-lg);
  padding: 2.75rem 2.5rem;
  text-align: center;
  position: relative;
  box-shadow: 0 12px 48px rgba(26,86,219,.14);
}

.pricing-badge {
  position: absolute;
  top: -14px; left: 50%;
  transform: translateX(-50%);
  background: linear-gradient(135deg, var(--lc-primary), var(--lc-primary-lt));
  color: #fff;
  font-size: .72rem;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  padding: .35rem 1.25rem;
  border-radius: 50rem;
  white-space: nowrap;
  box-shadow: 0 4px 16px rgba(26,86,219,.3);
}

.pricing-price {
  display: flex; align-items: center; justify-content: center;
  gap: .4rem; margin: 1.75rem 0 1.25rem;
}
.pricing-amount {
  font-family: 'Poppins', sans-serif;
  font-size: 4.5rem; font-weight: 800;
  color: var(--lc-dark-2); line-height: 1;
}
.pricing-unit { display: flex; flex-direction: column; align-items: flex-start; gap: .1rem; }
.pricing-currency { font-size: 1.5rem; font-weight: 700; color: var(--lc-primary); line-height: 1; }
.pricing-period { font-size: .85rem; color: var(--lc-muted); line-height: 1.4; }
.pricing-period small { font-size: .78rem; color: var(--lc-muted); }
.pricing-desc { color: var(--lc-muted); font-size: .95rem; line-height: 1.7; margin-bottom: 2rem; }
.pricing-features { list-style: none; padding: 0; margin: 0 0 2rem; text-align: left; }
.pricing-features li {
  display: flex; align-items: center; gap: .65rem;
  padding: .55rem 0;
  font-size: .93rem;
  border-bottom: 1px solid var(--lc-border);
}
.pricing-features li:last-child { border-bottom: none; }
.pricing-features .fa-check {
  color: var(--lc-primary);
  font-size: .75rem; flex-shrink: 0;
  background: rgba(26,86,219,.1);
  width: 22px; height: 22px;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
}

.btn-pricing {
  display: flex; align-items: center; justify-content: center; gap: .5rem;
  background: linear-gradient(135deg, var(--lc-primary), var(--lc-primary-lt));
  color: #fff;
  font-family: 'Poppins', sans-serif;
  font-weight: 700; font-size: 1rem;
  padding: .95rem 2rem;
  border-radius: var(--lc-radius);
  text-decoration: none; width: 100%;
  transition: transform .25s var(--ease-spring), box-shadow .25s;
  box-shadow: var(--lc-shadow-blue);
}
.btn-pricing:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 32px rgba(26,86,219,.35);
  color: #fff; text-decoration: none;
}
.pricing-note { margin: 1rem 0 0; font-size: .8rem; color: var(--lc-muted); }
/* ═══════════════════════════════════════════════════════════
   FAQ
═══════════════════════════════════════════════════════════ */

#faq {
  padding: 7rem 0;
  text-align: center;
  position: relative;
  overflow: hidden;
  background: var(--lc-surface);
 
}

/* ═══════════════════════════════════════════════════════════
   CTA
═══════════════════════════════════════════════════════════ */

#cta {
  padding: 7rem 0;
  text-align: center;
  position: relative;
  overflow: hidden;
  background: linear-gradient(140deg, #080f25 0%, #163a9e 50%, #0c1e55 100%);
}
#cta::before {
  content: '';
  position: absolute; inset: 0;
  background:
    radial-gradient(ellipse 60% 80% at 50% -20%, rgba(6,182,212,.22), transparent 60%),
    radial-gradient(ellipse 40% 60% at 80% 110%, rgba(139,92,246,.16), transparent 55%);
  pointer-events: none;
}

#cta .section-label {
  background: rgba(255,255,255,.1);
  border-color: rgba(255,255,255,.18);
  color: rgba(255,255,255,.88);
}
#cta h2 {
  font-family: 'Poppins', sans-serif;
  font-size: clamp(1.8rem, 4vw, 2.8rem);
  color: #fff;
  margin-bottom: 1rem;
  letter-spacing: -.02em;
}
#cta p { color: rgba(255,255,255,.62); }

.btn-cta {
  background: #fff;
  color: var(--lc-primary);
  font-family: 'Poppins', sans-serif;
  font-weight: 700; font-size: 1.05rem;
  padding: 1rem 2.5rem;
  border-radius: var(--lc-radius);
  border: none;
  text-decoration: none;
  display: inline-flex; align-items: center; gap: .5rem;
  transition: transform .25s var(--ease-spring), box-shadow .25s;
  box-shadow: 0 8px 32px rgba(0,0,0,.22);
}
.btn-cta:hover {
  transform: translateY(-3px) scale(1.02);
  box-shadow: 0 16px 48px rgba(0,0,0,.28);
  color: var(--lc-primary);
  text-decoration: none;
}

/* ═══════════════════════════════════════════════════════════
   FOOTER
═══════════════════════════════════════════════════════════ */
#footer {
  position: relative;
  overflow: hidden;
  background: #07090f;
  color: rgba(255,255,255,.5);
  padding: 4rem 0 1.75rem;
}

.footer-canvas {
  position: absolute;
  inset: 0; width: 100%; height: 100%;
  pointer-events: none;
}

#footer .brand-text { color: #fff; }
#footer a {
  color: rgba(255,255,255,.48);
  text-decoration: none;
  font-size: .9rem;
  transition: color .15s;
}
#footer a:hover { color: rgba(255,255,255,.88); }
.footer-sep { border-color: rgba(255,255,255,.07); margin: 2.5rem 0 1.5rem; }

/* ═══════════════════════════════════════════════════════════
   CALL FLOW VISUAL
═══════════════════════════════════════════════════════════ */
.call-flow-visual {
  position: relative;
  width: 100%; max-width: 520px;
  height: 0; padding-bottom: 80.77%;
  margin: 0 auto;
}

.cfv-svg {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  overflow: visible; pointer-events: none; z-index: 1;
}

.cfv-line {
  stroke: rgba(0,212,255,.18);
  stroke-width: 1.5;
  stroke-dasharray: 8 5;
  animation: cfv-dash 3s linear infinite;
}
.cfv-line--b { animation-delay: -.6s;  stroke: rgba(96,165,250,.18); }
.cfv-line--c { animation-delay: -1.2s; stroke: rgba(129,140,248,.18); }
.cfv-line--d { animation-delay: -.9s; }
.cfv-line--e { animation-delay: -1.8s; stroke: rgba(34,197,94,.18); }

@keyframes cfv-dash {
  from { stroke-dashoffset: 0; }
  to   { stroke-dashoffset: -52; }
}

.cfv-hub {
  position: absolute;
  left: 50%; top: 50%;
  width: 88px; height: 88px;
  transform: translate(-50%, -50%);
  z-index: 3;
}

.cfv-hub-core {
  position: absolute; inset: 0;
  border-radius: 50%;
  background: linear-gradient(135deg, #1a6bff, #00b8d9);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.8rem; color: #fff;
  box-shadow: 0 0 0 12px rgba(0,212,255,.1), 0 0 60px rgba(0,184,217,.5);
  z-index: 2;
  animation: hub-pulse 3s ease-in-out infinite;
}
@keyframes hub-pulse {
  0%,100% { box-shadow: 0 0 0 12px rgba(0,212,255,.1), 0 0 60px rgba(0,184,217,.5); }
  50%      { box-shadow: 0 0 0 20px rgba(0,212,255,.05), 0 0 90px rgba(0,184,217,.65); }
}

.cfv-ring {
  position: absolute; border-radius: 50%;
  border: 1.5px solid rgba(0,212,255,.3);
  animation: cfv-ring 3s ease-out infinite;
}
.cfv-ring:nth-child(1) { inset: -16px; animation-delay: 0s; }
.cfv-ring:nth-child(2) { inset: -34px; animation-delay: 1s; }
.cfv-ring:nth-child(3) { inset: -52px; animation-delay: 2s; }

@keyframes cfv-ring {
  0%   { opacity: .7; transform: scale(.88); }
  100% { opacity: 0;  transform: scale(1.08); }
}

.cfv-node {
  position: absolute;
  transform: translate(-50%, -50%);
  z-index: 4;
}

.cfv-node-icon {
  width: 70px; height: 70px;
  border-radius: 16px;
  background: rgba(255,255,255,.07);
  border: 1px solid rgba(255,255,255,.15);
  backdrop-filter: blur(14px);
  display: flex; align-items: center; justify-content: center;
  font-size: 28px; color: #60c8ff;
  box-shadow: 0 4px 24px rgba(0,0,0,.15), inset 0 1px 0 rgba(255,255,255,.1);
  transition: transform .25s var(--ease-spring), box-shadow .25s;
}
.cfv-node:hover .cfv-node-icon {
  transform: scale(1.12) translateY(-3px);
  box-shadow: 0 8px 32px rgba(0,212,255,.4);
}

.cfv-node-label {
  position: absolute;
  top: calc(100% + 6px); left: 50%;
  transform: translateX(-50%);
  font-size: .62rem; font-weight: 700;
  color: rgba(255,255,255,.52);
  text-transform: uppercase; letter-spacing: .08em;
  white-space: nowrap;
}

/* ═══════════════════════════════════════════════════════════
   ANIMATIONS
═══════════════════════════════════════════════════════════ */
@keyframes fadeSlideUp {
  from { opacity: 0; transform: translateY(24px); }
  to   { opacity: 1; transform: translateY(0); }
}
@keyframes fadeSlideDown {
  from { opacity: 0; transform: translateY(-16px); }
  to   { opacity: 1; transform: translateY(0); }
}

.fade-in-up {
  opacity: 0;
  transform: translateY(32px);
  transition: opacity .65s var(--ease-out), transform .65s var(--ease-out);
}
.fade-in-up.visible { opacity: 1; transform: none; }

.stagger-1 { transition-delay: .08s; }
.stagger-2 { transition-delay: .16s; }
.stagger-3 { transition-delay: .24s; }
.stagger-4 { transition-delay: .32s; }
.stagger-5 { transition-delay: .40s; }
.stagger-6 { transition-delay: .48s; }

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: .01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: .01ms !important;
  }
  .fade-in-up { opacity: 1; transform: none; }
}

/* ── Forms ──────────────────────────────────────────────────── */
input:focus, textarea:focus, select:focus,
button:focus, .form-control:focus, .form-select:focus,
.btn:focus, .btn:active:focus {
  outline: none !important;
  box-shadow: none !important;
}

.swal-easter-popup .swal2-html-container { overflow: hidden !important; }
.swal-easter-popup { z-index: 99999999; }

/* ── Nav tabs ───────────────────────────────────────────────── */
.nav-tabs .nav-link {
  color: var(--lc-muted);
  border: 1px solid transparent;
  border-radius: 8px 8px 0 0;
  font-size: .87rem; font-weight: 500;
  transition: color .15s, background .15s;
}
.nav-tabs .nav-link.active {
  color: var(--lc-primary);
  background: #fff;
  border-color: var(--lc-border) var(--lc-border) #fff;
  font-weight: 600;
}
.nav-tabs .nav-link:hover:not(.active) {
  color: var(--lc-text);
  background: rgba(0,0,0,.03);
}

/* ── Responsive ─────────────────────────────────────────────── */
@media (max-width: 991px) {
  .call-ticker__track { animation-duration: 22s; }
  .hero-mockup { margin-top: 2rem; }
}
@media (max-width: 767px) {
  .call-ticker__track { animation-duration: 16s; }
  #hero { text-align: center; padding-top: 100px; }
  .hero-desc { margin-inline: auto; }
  .hero-stats { justify-content: center; }
  .btn-hero-primary, .btn-hero-ghost { width: 100%; justify-content: center; }
  .reviews-banner { gap: 1.5rem; padding: 1.25rem 1rem; }
  .reviews-banner-num { font-size: 1.5rem; }
  .stat-box { padding: 1.5rem 1rem; }
  #cta { padding: 5rem 0; }
}

/* ══════════════════════════════════════════════════════════════
   BLOG — cartes listing
══════════════════════════════════════════════════════════════ */
.blog-card {
  background: #fff;
  border-radius: 1rem;
  padding: 1.75rem;
  border: 1px solid #e9ecef;
  transition: box-shadow .2s, transform .2s;
  height: 100%;
}
.blog-card:hover {
  box-shadow: 0 8px 30px rgba(26,86,219,.12);
  transform: translateY(-3px);
}
.blog-card h2 a { color: var(--lc-dark); text-decoration: none; }
.blog-card h2 a:hover { color: var(--lc-primary); }

.blog-tag {
  font-size: .75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: .08em;
  color: var(--lc-primary);
  background: rgba(26,86,219,.08);
  padding: .25rem .75rem;
  border-radius: 2rem;
  display: inline-block;
  margin-bottom: 1rem;
}
.blog-meta { font-size: .8rem; color: var(--lc-muted); margin-top: 1rem; }

/* ══════════════════════════════════════════════════════════════
   ARTICLE — contenu
══════════════════════════════════════════════════════════════ */
.article-toc {
  background: rgba(26,86,219,.04);
  border-left: 3px solid var(--lc-primary);
  border-radius: 0 .75rem .75rem 0;
  padding: 1.25rem 1.5rem;
  margin: 2rem 0;
  font-size: .92rem;
}
.article-toc ol { margin: 0; padding-left: 1.25rem; }
.article-toc li { margin-bottom: .4rem; }
.article-toc a { color: var(--lc-primary); text-decoration: none; }
.article-toc a:hover { text-decoration: underline; }

.article-body { line-height: 1.8; }
.article-body h2 {
  font-size: 1.35rem;
  font-weight: 700;
  color: var(--lc-dark);
  margin: 2.5rem 0 1rem;
  padding-bottom: .5rem;
  border-bottom: 2px solid var(--lc-border);
}
.article-body h3 {
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--lc-dark);
  margin: 1.75rem 0 .75rem;
}
.article-body p, .article-body li { color: #374151; }
.article-body ul, .article-body ol { margin-bottom: 1rem; padding-left: 1.5rem; }
.article-body li { margin-bottom: .4rem; }
.article-body code {
  background: rgba(26,86,219,.07);
  color: var(--lc-primary);
  padding: .15rem .4rem;
  border-radius: .3rem;
  font-size: .9em;
}

.article-callout {
  background: rgba(26,86,219,.06);
  border-left: 4px solid var(--lc-primary);
  border-radius: 0 .75rem .75rem 0;
  padding: 1.25rem 1.5rem;
  margin: 2rem 0;
  font-size: .95rem;
  line-height: 1.7;
}
.article-callout.warning {
  background: rgba(220,38,38,.05);
  border-color: #dc2626;
}

.comparison-table {
  width: 100%;
  border-collapse: collapse;
  margin: 1.5rem 0;
  font-size: .9rem;
}
.comparison-table th {
  background: var(--lc-primary);
  color: #fff;
  padding: .75rem 1rem;
  text-align: left;
  font-weight: 600;
}
.comparison-table td {
  padding: .65rem 1rem;
  border-bottom: 1px solid var(--lc-border);
}
.comparison-table tr:last-child td { border-bottom: none; }
.comparison-table tr:nth-child(even) td { background: rgba(26,86,219,.03); }

/* ── Active drawer link (pages secondaires) ─────────────────── */
.drawer-link--active {
  background: rgba(26,86,219,.08);
  color: var(--lc-primary);
}

.contact-hero {
  background: linear-gradient(135deg, var(--lc-surface) 0%, #fff 100%);
  border-bottom: 1px solid var(--lc-border);
  padding: 5.5rem 0 3rem;
}

.contact-form-wrap {
  background: #fff;
  border: 1px solid var(--lc-border);
  border-radius: var(--lc-radius-lg);
  padding: 2.25rem;
  box-shadow: var(--lc-shadow);
}

.contact-info-item {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  padding: 1.25rem 0;
  border-bottom: 1px solid var(--lc-border);
}
.contact-info-item:last-child { border-bottom: none; }

.contact-info-icon {
  width: 42px; height: 42px;
  border-radius: 12px;
  background: rgba(26,86,219,.08);
  color: var(--lc-primary);
  display: flex; align-items: center; justify-content: center;
  font-size: 1rem;
  flex-shrink: 0;
}

.contact-info-label {
  font-size: .75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .08em;
  color: var(--lc-muted);
  margin-bottom: .2rem;
}
.contact-info-value {
  font-size: .92rem;
  color: var(--lc-text);
  font-weight: 500;
  line-height: 1.5;
}

.contact-sidebar {
  position: sticky;
  top: 6rem;
}

.contact-sidebar-card {
  background: #fff;
  border: 1px solid var(--lc-border);
  border-radius: var(--lc-radius-lg);
  padding: 1.75rem;
  box-shadow: var(--lc-shadow);
}

.form-control, .form-select {
  border: 1px solid var(--lc-border);
  border-radius: 10px;
  padding: .65rem .9rem;
  font-size: .93rem;
  color: var(--lc-text);
  background: var(--lc-surface);
  transition: border-color .15s, background .15s;
}
.form-control:focus, .form-select:focus {
  border-color: var(--lc-primary);
  background: #fff;
  outline: none;
  box-shadow: 0 0 0 3px rgba(26,86,219,.08) !important;
}
.form-control::placeholder { color: #aab4c0; }

.btn-contact {
  background: linear-gradient(135deg, var(--lc-primary), var(--lc-primary-lt));
  color: #fff;
  font-family: 'Poppins', sans-serif;
  font-weight: 600;
  font-size: .97rem;
  padding: .85rem 2rem;
  border-radius: 10px;
  border: none;
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  cursor: pointer;
  transition: opacity .15s, transform .15s;
  box-shadow: var(--lc-shadow-blue);
  width: 100%;
  justify-content: center;
}
.btn-contact:hover { opacity: .9; transform: translateY(-1px); }
.btn-contact:active { transform: none; opacity: 1; }


#ch2-dialog{ opacity: 0.9; }
.ch2-dialog-branding , .ch2-learn-more{ display: none;}
