@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700;800;900&display=swap');

/* ======================== TOKENS ======================== */
:root {
  --primary: #10B981;
  --primary-dark: #059669;
  --primary-glow: rgba(16,185,129,.25);
  --accent: #F59E0B;
  --accent-dark: #D97706;
  --danger: #EF4444;
  --bg: #0B0F19;
  --bg-card: #131825;
  --bg-card-hover: #1A2035;
  --bg-elevated: #1E2538;
  --border: rgba(255,255,255,.06);
  --border-hover: rgba(255,255,255,.12);
  --text: #F1F5F9;
  --text-muted: #94A3B8;
  --text-dim: #64748B;
  --white: #ffffff;
  --radius: 16px;
  --radius-sm: 10px;
  --radius-xs: 6px;
  --shadow: 0 4px 24px rgba(0,0,0,.4);
  --shadow-lg: 0 12px 48px rgba(0,0,0,.5);
  --shadow-glow: 0 0 40px var(--primary-glow);
  --transition: .25s cubic-bezier(.4,0,.2,1);
}

/* ======================== RESET ======================== */
*,*::before,*::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-font-smoothing: antialiased; }
body {
  font-family: 'Inter', system-ui, sans-serif;
  background: var(--bg);
  color: var(--text);
  line-height: 1.6;
  overflow-x: hidden;
}
img, svg { display: block; max-width: 100%; }
a { color: var(--primary); text-decoration: none; transition: color var(--transition); }
a:hover { color: var(--accent); }

/* ======================== LAYOUT ======================== */
.container { width: min(1200px, 90%); margin: 0 auto; }

/* ======================== HEADER ======================== */
.site-header {
  position: sticky; top: 0; z-index: 100;
  background: rgba(11,15,25,.82);
  backdrop-filter: blur(20px) saturate(1.4);
  -webkit-backdrop-filter: blur(20px) saturate(1.4);
  border-bottom: 1px solid var(--border);
}
.nav-wrap {
  display: flex; justify-content: space-between; align-items: center;
  padding: 14px 0; gap: 16px;
}
.brand {
  font-weight: 900; font-size: 18px;
  background: linear-gradient(135deg, var(--primary), var(--accent));
  -webkit-background-clip: text; -webkit-text-fill-color: transparent;
  background-clip: text; text-decoration: none;
  letter-spacing: -.3px;
}
.main-nav { display: flex; flex-wrap: wrap; gap: 8px; align-items: center; }
.main-nav a {
  color: var(--text-muted); text-decoration: none; font-weight: 500;
  font-size: 14px; padding: 6px 12px; border-radius: 8px;
  transition: all var(--transition);
}
.main-nav a:hover { color: var(--white); background: rgba(255,255,255,.06); }
.nav-cta {
  background: var(--primary) !important; color: var(--bg) !important;
  font-weight: 700 !important; padding: 8px 18px !important;
  border-radius: 999px !important;
}
.nav-cta:hover { background: var(--primary-dark) !important; transform: translateY(-1px); box-shadow: var(--shadow-glow); }

/* ======================== HERO ======================== */
.hero {
  position: relative; padding: 80px 0 60px;
  background: radial-gradient(ellipse 80% 60% at 50% -20%, rgba(16,185,129,.12), transparent),
              radial-gradient(ellipse 60% 40% at 80% 80%, rgba(245,158,11,.06), transparent),
              var(--bg);
  overflow: hidden;
}
.hero::before {
  content: ''; position: absolute; inset: 0; pointer-events: none;
  background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.015'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}
.hero-grid { display: grid; gap: 32px; align-items: center; position: relative; z-index: 1; }
.hero .eyebrow {
  display: inline-flex; align-items: center; gap: 8px;
  font-size: 13px; font-weight: 700; text-transform: uppercase; letter-spacing: 1.5px;
  color: var(--primary); margin-bottom: 16px;
}
.hero .eyebrow::before {
  content: ''; width: 8px; height: 8px; border-radius: 50%;
  background: var(--primary); animation: pulse-dot 2s ease infinite;
}
@keyframes pulse-dot {
  0%, 100% { box-shadow: 0 0 0 0 var(--primary-glow); }
  50% { box-shadow: 0 0 0 8px transparent; }
}
.hero h1 {
  font-size: clamp(32px, 5vw, 52px); font-weight: 900; line-height: 1.1;
  letter-spacing: -1px; margin-bottom: 16px;
}
.hero h1 strong, .hero h1 em {
  background: linear-gradient(135deg, var(--primary), var(--accent));
  -webkit-background-clip: text; -webkit-text-fill-color: transparent;
  background-clip: text; font-style: normal;
}
.hero p { font-size: 17px; color: var(--text-muted); max-width: 560px; margin-bottom: 24px; }
.hero-actions { display: flex; flex-wrap: wrap; gap: 12px; }

/* ======================== BUTTONS ======================== */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 8px;
  padding: 14px 28px; border-radius: 999px; font-weight: 700;
  font-size: 15px; cursor: pointer; border: none;
  transition: all var(--transition); text-decoration: none;
}
.btn-primary, .btn {
  background: linear-gradient(135deg, var(--primary), var(--primary-dark));
  color: var(--bg); box-shadow: 0 4px 20px var(--primary-glow);
}
.btn-primary:hover, .btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 32px var(--primary-glow);
  color: var(--bg);
}
.btn-secondary {
  background: var(--bg-elevated); color: var(--text);
  border: 1px solid var(--border-hover);
}
.btn-secondary:hover { background: var(--bg-card-hover); border-color: var(--primary); color: var(--primary); }
.btn-accent {
  background: linear-gradient(135deg, var(--accent), var(--accent-dark));
  color: var(--bg);
}
.btn-danger {
  background: var(--danger); color: var(--white);
  animation: pulse-urgent 2.5s ease infinite;
}
@keyframes pulse-urgent {
  0%, 100% { box-shadow: 0 0 0 0 rgba(239,68,68,.3); }
  50% { box-shadow: 0 0 0 10px transparent; }
}
.btn-sm { padding: 10px 20px; font-size: 13px; }
.btn-lg { padding: 18px 36px; font-size: 17px; }

/* ======================== CARDS ======================== */
.card, .panel {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 28px;
  transition: all var(--transition);
}
.card:hover {
  border-color: var(--border-hover);
  background: var(--bg-card-hover);
  transform: translateY(-2px);
  box-shadow: var(--shadow);
}
.card h2, .card h3 { color: var(--white); }
.card p { color: var(--text-muted); }

.card-glow {
  background: var(--bg-card);
  border: 1px solid rgba(16,185,129,.2);
  border-radius: var(--radius);
  padding: 28px;
  position: relative; overflow: hidden;
}
.card-glow::before {
  content: ''; position: absolute; top: 0; left: 0; right: 0; height: 2px;
  background: linear-gradient(90deg, var(--primary), var(--accent));
}

/* ======================== SECTION ======================== */
.section { padding: 64px 0; }
.section-header { text-align: center; margin-bottom: 48px; }
.section-header h2 {
  font-size: clamp(26px, 3.5vw, 38px); font-weight: 800;
  letter-spacing: -.5px; margin-bottom: 12px;
}
.section-header p { color: var(--text-muted); font-size: 17px; max-width: 600px; margin: 0 auto; }

/* ======================== GRIDS ======================== */
.grid-2 { display: grid; gap: 20px; }
.grid-3 { display: grid; gap: 16px; }
.grid-4 { display: grid; gap: 16px; }

/* ======================== BADGES ======================== */
.badge {
  display: inline-flex; align-items: center; gap: 6px;
  padding: 6px 14px; border-radius: 999px; font-size: 12px; font-weight: 700;
  text-transform: uppercase; letter-spacing: .5px;
}
.badge-green { background: rgba(16,185,129,.12); color: var(--primary); border: 1px solid rgba(16,185,129,.2); }
.badge-orange { background: rgba(245,158,11,.12); color: var(--accent); border: 1px solid rgba(245,158,11,.2); }
.badge-red { background: rgba(239,68,68,.12); color: var(--danger); border: 1px solid rgba(239,68,68,.2); }

/* ======================== STAT BLOCKS ======================== */
.stats-bar {
  display: flex; flex-wrap: wrap; gap: 16px; justify-content: center;
  padding: 32px 0;
}
.stat {
  text-align: center; padding: 20px 28px;
  background: var(--bg-card); border: 1px solid var(--border);
  border-radius: var(--radius); min-width: 160px;
}
.stat-value {
  font-size: 36px; font-weight: 900; letter-spacing: -1px;
  background: linear-gradient(135deg, var(--primary), var(--accent));
  -webkit-background-clip: text; -webkit-text-fill-color: transparent;
  background-clip: text;
}
.stat-label { font-size: 13px; color: var(--text-dim); margin-top: 4px; font-weight: 600; text-transform: uppercase; letter-spacing: .5px; }

/* ======================== TRUST BAR ======================== */
.trust-bar {
  display: flex; flex-wrap: wrap; gap: 24px; justify-content: center;
  align-items: center; padding: 20px 0;
}
.trust-item {
  display: flex; align-items: center; gap: 8px;
  font-size: 14px; font-weight: 600; color: var(--text-muted);
}
.trust-item svg, .trust-item i { color: var(--primary); width: 20px; height: 20px; }

/* ======================== URGENCY BANNER ======================== */
.urgency-banner {
  background: linear-gradient(90deg, rgba(239,68,68,.1), rgba(245,158,11,.1));
  border: 1px solid rgba(239,68,68,.2);
  border-radius: var(--radius);
  padding: 20px 28px;
  display: flex; flex-wrap: wrap; align-items: center; gap: 16px;
  justify-content: space-between;
}
.urgency-banner p { color: var(--text); font-weight: 600; margin: 0; }
.urgency-banner strong { color: var(--danger); }

/* ======================== SERVICE CARDS (cross-links) ======================== */
.cross-link {
  display: flex; align-items: center; gap: 12px;
  padding: 16px 20px;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  text-decoration: none;
  color: var(--text);
  font-weight: 600;
  font-size: 14px;
  transition: all var(--transition);
}
.cross-link:hover {
  border-color: var(--primary);
  background: rgba(16,185,129,.06);
  color: var(--primary);
  transform: translateY(-2px);
  box-shadow: 0 4px 16px rgba(16,185,129,.1);
}
.cross-link::before {
  content: '';
  width: 8px; height: 8px;
  border-radius: 50%;
  background: var(--primary);
  flex-shrink: 0;
}

/* ======================== BREADCRUMB ======================== */
.breadcrumb {
  font-size: 13px; color: var(--text-dim); margin-bottom: 24px;
  display: flex; flex-wrap: wrap; align-items: center; gap: 4px;
}
.breadcrumb a { color: var(--text-muted); }
.breadcrumb a:hover { color: var(--primary); }
.breadcrumb span { color: var(--text); font-weight: 600; }

/* ======================== LISTS ======================== */
.list-clean { list-style: none; }
.list-clean li {
  padding: 12px 0; border-bottom: 1px solid var(--border);
  display: flex; align-items: center; gap: 10px;
  color: var(--text-muted); font-size: 15px;
}
.list-clean li::before {
  content: '';
  width: 6px; height: 6px; border-radius: 50%;
  background: var(--primary); flex-shrink: 0;
}
.list-clean li:last-child { border-bottom: none; }
.list-clean li a { color: var(--text); font-weight: 500; }
.list-clean li a:hover { color: var(--primary); }

/* ======================== FAQ ======================== */
.faq-item {
  padding: 24px 0;
  border-bottom: 1px solid var(--border);
}
.faq-item:last-child { border-bottom: none; }
.faq-item h3 {
  font-size: 17px; font-weight: 700; color: var(--white);
  margin-bottom: 8px; display: flex; align-items: flex-start; gap: 10px;
}
.faq-item h3::before {
  content: 'Q';
  font-size: 11px; font-weight: 800;
  background: var(--primary); color: var(--bg);
  width: 22px; height: 22px; border-radius: 6px;
  display: inline-flex; align-items: center; justify-content: center;
  flex-shrink: 0; margin-top: 2px;
}
.faq-item p { color: var(--text-muted); padding-left: 32px; }

/* ======================== CTA SECTION ======================== */
.cta-section {
  background: linear-gradient(135deg, rgba(16,185,129,.08), rgba(245,158,11,.05));
  border: 1px solid rgba(16,185,129,.15);
  border-radius: var(--radius);
  padding: 48px 36px;
  text-align: center;
  position: relative; overflow: hidden;
}
.cta-section::before {
  content: ''; position: absolute; top: -50%; left: -50%;
  width: 200%; height: 200%;
  background: radial-gradient(circle, rgba(16,185,129,.05), transparent 60%);
  animation: rotate-glow 20s linear infinite;
}
@keyframes rotate-glow { to { transform: rotate(360deg); } }
.cta-section > * { position: relative; z-index: 1; }
.cta-section h2 { font-size: 28px; font-weight: 800; margin-bottom: 12px; }
.cta-section p { color: var(--text-muted); margin-bottom: 24px; max-width: 480px; margin-inline: auto; }

/* ======================== FORMS ======================== */
input, select, textarea {
  width: 100%; padding: 14px 18px;
  background: var(--bg-elevated);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  color: var(--text); font-size: 15px;
  font-family: inherit;
  transition: all var(--transition);
}
input:focus, select:focus, textarea:focus {
  outline: none;
  border-color: var(--primary);
  box-shadow: 0 0 0 3px var(--primary-glow);
}
input::placeholder { color: var(--text-dim); }
label { display: block; font-size: 14px; font-weight: 600; color: var(--text-muted); margin-bottom: 6px; }

/* ======================== FOOTER ======================== */
.site-footer {
  margin-top: 80px;
  background: var(--bg-card);
  border-top: 1px solid var(--border);
  padding: 60px 0 24px;
}
.footer-grid { display: grid; gap: 32px; }
.site-footer h3 {
  font-size: 16px; font-weight: 700; color: var(--white);
  margin-bottom: 16px;
}
.site-footer p { color: var(--text-dim); font-size: 14px; line-height: 1.7; }
.site-footer ul { list-style: none; }
.site-footer li { padding: 5px 0; }
.site-footer a { color: var(--text-muted); font-size: 14px; }
.site-footer a:hover { color: var(--primary); }
.copy {
  margin-top: 40px; padding-top: 20px;
  border-top: 1px solid var(--border);
  font-size: 13px; color: var(--text-dim);
  text-align: center;
}
.footer-brand {
  font-weight: 800; font-size: 20px;
  background: linear-gradient(135deg, var(--primary), var(--accent));
  -webkit-background-clip: text; -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 12px;
}

/* ======================== PAGE-LEVEL ======================== */
.page-section { padding: 48px 0; }
.page-section + .page-section { border-top: 1px solid var(--border); }

/* ======================== ANIMATIONS ======================== */
.reveal-on-scroll {
  opacity: 0; transform: translateY(24px);
  transition: opacity .6s cubic-bezier(.4,0,.2,1), transform .6s cubic-bezier(.4,0,.2,1);
}
.reveal-on-scroll.revealed { opacity: 1; transform: translateY(0); }
.reveal-on-scroll:nth-child(2) { transition-delay: .08s; }
.reveal-on-scroll:nth-child(3) { transition-delay: .16s; }
.reveal-on-scroll:nth-child(4) { transition-delay: .24s; }

/* ======================== REGION/DEPT CARDS ======================== */
.geo-card {
  background: var(--bg-card); border: 1px solid var(--border);
  border-radius: var(--radius); padding: 24px;
  transition: all var(--transition);
  display: flex; flex-direction: column; gap: 8px;
}
.geo-card:hover {
  border-color: var(--primary);
  transform: translateY(-3px);
  box-shadow: 0 8px 24px rgba(16,185,129,.08);
}
.geo-card h2 { font-size: 18px; font-weight: 700; margin: 0; }
.geo-card p { font-size: 14px; color: var(--text-dim); margin: 0; }
.geo-card .geo-link {
  margin-top: auto; font-weight: 700; font-size: 14px;
  color: var(--primary); display: inline-flex; align-items: center; gap: 6px;
}
.geo-card .geo-link::after { content: '\2192'; transition: transform var(--transition); }
.geo-card:hover .geo-link::after { transform: translateX(4px); }

/* ======================== CITY GRID ======================== */
.city-grid {
  display: grid; gap: 10px;
}
.city-grid a {
  display: block; padding: 12px 16px;
  background: var(--bg-elevated); border: 1px solid var(--border);
  border-radius: var(--radius-xs); font-size: 14px; font-weight: 500;
  color: var(--text-muted); transition: all var(--transition);
}
.city-grid a:hover {
  color: var(--primary); border-color: var(--primary);
  background: rgba(16,185,129,.04);
}

/* ======================== 404 ======================== */
.error-page { text-align: center; padding: 100px 0; }
.error-page h1 {
  font-size: 80px; font-weight: 900;
  background: linear-gradient(135deg, var(--primary), var(--accent));
  -webkit-background-clip: text; -webkit-text-fill-color: transparent;
  background-clip: text;
}
.error-page p { color: var(--text-muted); font-size: 18px; margin: 16px 0 32px; }

/* ======================== RESPONSIVE ======================== */
@media (min-width: 640px) {
  .grid-4 { grid-template-columns: repeat(2, 1fr); }
  .city-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (min-width: 768px) {
  .hero-grid { grid-template-columns: 1.4fr 1fr; }
  .grid-2 { grid-template-columns: 1fr 1fr; }
  .grid-3 { grid-template-columns: repeat(3, 1fr); }
  .footer-grid { grid-template-columns: 2fr 1fr 1fr 1fr; }
  .city-grid { grid-template-columns: repeat(3, 1fr); }
}
@media (min-width: 1024px) {
  .grid-4 { grid-template-columns: repeat(4, 1fr); }
  .city-grid { grid-template-columns: repeat(4, 1fr); }
}
@media (max-width: 767px) {
  .main-nav { gap: 4px; }
  .main-nav a { font-size: 13px; padding: 6px 8px; }
  .hero { padding: 48px 0 36px; }
  .section { padding: 40px 0; }
}

/* ======================== BRAND LOGO ======================== */
.brand {
  display: inline-flex !important; align-items: baseline; gap: 6px;
  -webkit-background-clip: initial !important; -webkit-text-fill-color: initial !important;
  background-clip: initial !important; background: none !important;
  color: var(--text) !important;
}
.brand-mark {
  font-weight: 900; font-size: 22px; letter-spacing: -1px;
  background: linear-gradient(135deg, var(--primary), var(--accent));
  -webkit-background-clip: text; -webkit-text-fill-color: transparent;
  background-clip: text;
}
.brand-text {
  font-weight: 700; font-size: 16px; color: var(--text);
  letter-spacing: -.3px;
}

/* ======================== NAV PHONE (DESKTOP) ======================== */
.nav-phone {
  display: inline-flex !important; align-items: center; gap: 8px;
  background: var(--danger) !important; color: var(--white) !important;
  font-weight: 800 !important; font-size: 14px !important;
  padding: 9px 16px !important; border-radius: 999px !important;
  margin-left: 6px;
  box-shadow: 0 2px 12px rgba(239,68,68,.35);
  transition: all var(--transition);
}
.nav-phone:hover {
  background: #DC2626 !important; color: var(--white) !important;
  transform: translateY(-1px);
  box-shadow: 0 4px 20px rgba(239,68,68,.5);
}

/* ======================== PHONE CTA BUTTONS ======================== */
.btn-xxl {
  font-size: 20px; padding: 18px 32px; font-weight: 800;
  border-radius: 14px; letter-spacing: .2px;
  display: inline-flex; align-items: center; gap: 12px; justify-content: center;
}
.phone-cta {
  box-shadow: 0 6px 24px rgba(239,68,68,.35);
  animation: phone-pulse 2.4s ease-in-out infinite;
}
.phone-cta:hover { transform: translateY(-2px) scale(1.02); box-shadow: 0 10px 36px rgba(239,68,68,.5); }
@keyframes phone-pulse {
  0%, 100% { box-shadow: 0 6px 24px rgba(239,68,68,.35); }
  50% { box-shadow: 0 6px 36px rgba(239,68,68,.65); }
}
.phone-sub {
  margin-top: 10px; font-size: 13px; color: var(--text-muted);
  display: flex; align-items: center; gap: 6px; flex-wrap: wrap;
}
.hero-phone { margin-top: 24px; }

/* ======================== BENEFITS CARD (HERO) ======================== */
.benefits-card { padding: 28px; }
.benefits-title {
  font-size: 13px; font-weight: 700; color: var(--primary);
  text-transform: uppercase; letter-spacing: 1.2px; margin-bottom: 18px;
}
.benefits-grid { list-style: none; display: flex; flex-direction: column; gap: 14px; }
.benefits-grid li {
  display: flex; align-items: flex-start; gap: 12px;
  padding: 10px 0; border-bottom: 1px solid var(--border);
}
.benefits-grid li:last-child { border-bottom: none; padding-bottom: 0; }
.benefits-grid li > svg { flex-shrink: 0; width: 22px; height: 22px; margin-top: 2px; }
.benefits-grid li > div { display: flex; flex-direction: column; }
.benefits-grid li strong { color: var(--white); font-size: 15px; font-weight: 700; }
.benefits-grid li span { color: var(--text-muted); font-size: 13px; }

/* ======================== WHY US (4 COLONNES) ======================== */
.why-us-grid {
  display: grid; gap: 20px;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
}
.why-card {
  background: var(--bg-card); border: 1px solid var(--border);
  border-radius: var(--radius); padding: 24px;
  transition: all var(--transition);
}
.why-card:hover { border-color: var(--border-hover); transform: translateY(-4px); box-shadow: var(--shadow); }
.why-card h3 { font-size: 17px; margin: 12px 0 8px; color: var(--white); }
.why-card p { font-size: 14px; color: var(--text-muted); }

/* ======================== URGENCY BANNER TEL ======================== */
.urgency-banner-tel {
  background: linear-gradient(135deg, rgba(239,68,68,.18), rgba(245,158,11,.12));
  border: 1px solid rgba(239,68,68,.35);
  border-radius: var(--radius); padding: 28px;
  display: flex; gap: 24px; align-items: center; justify-content: space-between;
  flex-wrap: wrap;
}
.urgency-banner-tel .urg-title {
  display: flex; align-items: center; gap: 10px;
  font-size: 20px; font-weight: 800; color: var(--white); margin-bottom: 6px;
}
.urgency-banner-tel p { color: var(--text-muted); font-size: 15px; max-width: 520px; }

/* ======================== FOOTER PHONE ======================== */
.footer-phone {
  display: inline-flex; align-items: center; gap: 10px;
  margin-top: 14px; padding: 10px 18px;
  background: var(--danger); color: var(--white) !important;
  border-radius: 999px; font-weight: 800; font-size: 15px;
  box-shadow: 0 4px 16px rgba(239,68,68,.3);
  transition: all var(--transition);
}
.footer-phone:hover { background: #DC2626; color: var(--white) !important; transform: translateY(-1px); }
.copy a { color: var(--primary); font-weight: 700; }

/* ======================== MOBILE STICKY PHONE BAR ======================== */
.mobile-phone-bar {
  display: none;
  position: fixed; left: 0; right: 0; bottom: 0; z-index: 999;
  background: linear-gradient(135deg, var(--danger), #DC2626);
  color: var(--white) !important;
  padding: 14px 16px;
  text-align: center; font-weight: 800; font-size: 15px;
  text-decoration: none !important;
  box-shadow: 0 -4px 20px rgba(0,0,0,.4);
  align-items: center; justify-content: center; gap: 10px;
}
.mobile-phone-bar strong { font-size: 16px; }

@media (max-width: 767px) {
  .nav-phone { display: none !important; }
  .mobile-phone-bar { display: flex; }
  body { padding-bottom: 64px; }
  .btn-xxl { font-size: 17px; padding: 14px 22px; }
  .urgency-banner-tel { padding: 20px; }
  .urgency-banner-tel .urg-title { font-size: 17px; }
  .hero-phone .btn-xxl { width: 100%; }
}

