/* ==========================================================================
   PHYSICIAN MEDICAL BILLING & RCM - MODERN DESIGN SYSTEM
   ========================================================================== */

@import url('https://fonts.googleapis.com/css2?family=Outfit:wght@400;500;600;700;800&family=Plus+Jakarta+Sans:ital,wght@0,300;0,400;0,500;0,600;0,700;0,800;1,400&display=swap');

:root {
  /* Brand Colors */
  --navy-950: #060D1A;
  --navy-900: #0A192F;
  --navy-850: #0E223D;
  --navy-800: #132E52;
  --navy-700: #1C4376;
  
  --teal-600: #0284C7;
  --teal-500: #0EA5E9;
  --teal-400: #38BDF8;
  --teal-100: #E0F2FE;
  --teal-50:  #F0F9FF;

  --emerald-600: #059669;
  --emerald-500: #10B981;
  --emerald-100: #D1FAE5;
  --emerald-50:  #ECFDF5;

  --amber-600: #D97706;
  --amber-500: #F59E0B;
  --amber-100: #FEF3C7;
  --amber-50:  #FFFBEB;

  --slate-900: #0F172A;
  --slate-800: #1E293B;
  --slate-700: #334155;
  --slate-600: #475569;
  --slate-500: #64748B;
  --slate-400: #94A3B8;
  --slate-300: #CBD5E1;
  --slate-200: #E2E8F0;
  --slate-100: #F1F5F9;
  --slate-50:  #F8FAFC;
  --white:     #FFFFFF;

  /* Typography */
  --font-heading: 'Outfit', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  --font-body:    'Plus Jakarta Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;

  /* Elevations */
  --shadow-xs: 0 1px 2px 0 rgba(15, 23, 42, 0.05);
  --shadow-sm: 0 2px 6px -1px rgba(15, 23, 42, 0.08), 0 1px 3px -1px rgba(15, 23, 42, 0.05);
  --shadow-md: 0 8px 20px -4px rgba(15, 23, 42, 0.1), 0 3px 8px -2px rgba(15, 23, 42, 0.06);
  --shadow-lg: 0 16px 36px -6px rgba(15, 23, 42, 0.12), 0 6px 16px -4px rgba(15, 23, 42, 0.08);
  --shadow-xl: 0 24px 52px -10px rgba(15, 23, 42, 0.16), 0 12px 24px -6px rgba(15, 23, 42, 0.1);
  --shadow-glow: 0 0 30px rgba(14, 165, 233, 0.25);

  /* Transitions */
  --transition-fast: 150ms cubic-bezier(0.4, 0, 0.2, 1);
  --transition-base: 250ms cubic-bezier(0.4, 0, 0.2, 1);
  --transition-slow: 400ms cubic-bezier(0.4, 0, 0.2, 1);

  /* Radius */
  --radius-sm: 8px;
  --radius-md: 12px;
  --radius-lg: 18px;
  --radius-xl: 24px;
  --radius-full: 9999px;
}

/* ==========================================================================
   RESET & GLOBAL BASE
   ========================================================================== */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  font-size: 16px;
  scroll-behavior: smooth;
  scroll-padding-top: 6rem;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

section[id] {
  scroll-margin-top: 6rem;
}

body {
  font-family: var(--font-body);
  color: var(--slate-700);
  background-color: var(--white);
  line-height: 1.6;
  overflow-x: hidden;
}

img {
  display: block;
  max-width: 100%;
  height: auto;
}

a {
  color: inherit;
  text-decoration: none;
  transition: color var(--transition-fast);
}

button, input, select, textarea {
  font: inherit;
  color: inherit;
}

button {
  cursor: pointer;
  border: none;
  background: none;
}

/* Accessible focus outline */
:focus-visible {
  outline: 2px solid var(--teal-500);
  outline-offset: 2px;
}

.container {
  width: 100%;
  max-width: 1280px;
  margin-left: auto;
  margin-right: auto;
  padding-left: 1.5rem;
  padding-right: 1.5rem;
}

/* ==========================================================================
   TYPOGRAPHY UTILITIES
   ========================================================================== */
h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-heading);
  color: var(--navy-900);
  line-height: 1.2;
  font-weight: 700;
  letter-spacing: -0.02em;
}

.kicker {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-family: var(--font-body);
  font-size: 0.78rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  padding: 0.35rem 0.85rem;
  border-radius: var(--radius-full);
  background-color: var(--teal-100);
  color: var(--teal-600);
  margin-bottom: 0.85rem;
}

.kicker.amber {
  background-color: var(--amber-100);
  color: var(--amber-600);
}

.kicker.emerald {
  background-color: var(--emerald-100);
  color: var(--emerald-600);
}

.section-head {
  text-align: center;
  max-width: 720px;
  margin: 0 auto 3.5rem auto;
}

.section-head h2 {
  font-size: clamp(2rem, 3.5vw, 2.75rem);
  margin-bottom: 1rem;
}

.section-head p {
  font-size: 1.1rem;
  color: var(--slate-500);
}

/* ==========================================================================
   BUTTONS & BADGES
   ========================================================================== */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.55rem;
  font-family: var(--font-body);
  font-size: 0.92rem;
  font-weight: 600;
  padding: 0.75rem 1.45rem;
  border-radius: var(--radius-full);
  transition: all var(--transition-base);
  text-align: center;
  white-space: nowrap;
}

.btn-primary {
  background: linear-gradient(135deg, var(--teal-500) 0%, var(--teal-600) 100%);
  color: var(--white);
  box-shadow: 0 4px 14px rgba(2, 132, 199, 0.35);
}

.btn-primary:hover {
  background: linear-gradient(135deg, var(--teal-400) 0%, var(--teal-500) 100%);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(2, 132, 199, 0.45);
}

.btn-amber {
  background: linear-gradient(135deg, var(--amber-500) 0%, var(--amber-600) 100%);
  color: var(--white);
  box-shadow: 0 4px 14px rgba(217, 119, 6, 0.35);
}

.btn-amber:hover {
  background: linear-gradient(135deg, #FBBF24 0%, var(--amber-500) 100%);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(217, 119, 6, 0.45);
}

.btn-ghost {
  background-color: transparent;
  color: var(--slate-700);
  border: 1.5px solid var(--slate-300);
}

.btn-ghost:hover {
  border-color: var(--navy-900);
  color: var(--navy-900);
  background-color: var(--slate-50);
}

.btn-ghost-white {
  background-color: rgba(255, 255, 255, 0.1);
  color: var(--white);
  border: 1.5px solid rgba(255, 255, 255, 0.25);
  backdrop-filter: blur(8px);
}

.btn-ghost-white:hover {
  background-color: rgba(255, 255, 255, 0.2);
  border-color: var(--white);
  transform: translateY(-2px);
}

.btn-lg {
  padding: 0.95rem 2rem;
  font-size: 1.05rem;
}

.btn-sm {
  padding: 0.45rem 1rem;
  font-size: 0.85rem;
}

/* ==========================================================================
   TOP TRUST & ANNOUNCEMENT BAR
   ========================================================================== */
.top-bar {
  background-color: var(--navy-950);
  color: var(--slate-300);
  font-size: 0.8rem;
  padding: 0.5rem 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.top-bar-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 0.75rem;
}

.top-trust-badges {
  display: flex;
  align-items: center;
  gap: 1.25rem;
  flex-wrap: wrap;
}

.trust-item {
  display: flex;
  align-items: center;
  gap: 0.35rem;
}

.trust-item svg {
  width: 14px;
  height: 14px;
  color: var(--teal-400);
  flex-shrink: 0;
}

.top-bar-contact {
  display: flex;
  align-items: center;
  gap: 1.25rem;
}

.top-bar-contact a {
  display: flex;
  align-items: center;
  gap: 0.45rem;
  color: var(--slate-200);
  line-height: 1;
}

.top-bar-contact a svg {
  width: 14px;
  height: 14px;
  flex-shrink: 0;
  color: var(--teal-400);
}

.top-bar-contact a:hover {
  color: var(--teal-400);
}

/* ==========================================================================
   HEADER & NAVIGATION
   ========================================================================== */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background-color: rgba(255, 255, 255, 0.94);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--slate-200);
  transition: all var(--transition-base);
}

.site-header.scrolled {
  background-color: rgba(255, 255, 255, 0.98);
  box-shadow: var(--shadow-sm);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 5rem;
  gap: 1.5rem;
}

/* Brand Logo */
.brand {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-family: var(--font-heading);
  font-weight: 800;
  color: var(--navy-900);
  letter-spacing: -0.02em;
  flex-shrink: 0;
}

.brand-icon {
  width: 2.6rem;
  height: 2.6rem;
  background: linear-gradient(135deg, var(--navy-900) 0%, var(--teal-600) 100%);
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  box-shadow: 0 4px 10px rgba(10, 25, 47, 0.2);
  flex-shrink: 0;
}

.brand-icon svg {
  width: 1.45rem;
  height: 1.45rem;
}

.brand-text {
  display: flex;
  flex-direction: column;
  line-height: 1.1;
}

.brand-text span.brand-title {
  font-size: 1.25rem;
  font-weight: 800;
  color: var(--navy-900);
  white-space: nowrap;
}

.brand-text span.brand-title strong {
  color: var(--teal-600);
}

.brand-text span.brand-subtitle {
  font-size: 0.65rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--slate-400);
  margin-top: 2px;
}

/* Desktop Nav */
.desktop-nav {
  display: flex;
  align-items: center;
  gap: 0.2rem;
}

.nav-link {
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--slate-700);
  padding: 0.5rem 0.85rem;
  border-radius: var(--radius-full);
  transition: all var(--transition-fast);
  display: flex;
  align-items: center;
  gap: 0.3rem;
  white-space: nowrap;
}

.nav-link:hover {
  color: var(--teal-600);
  background-color: var(--teal-50);
}

/* Dropdown Menu */
.has-dropdown {
  position: relative;
}

.dropdown-menu {
  position: absolute;
  top: 100%;
  left: 0;
  min-width: 280px;
  background: var(--white);
  border: 1px solid var(--slate-200);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-xl);
  padding: 0.65rem;
  opacity: 0;
  visibility: hidden;
  transform: translateY(10px);
  transition: all var(--transition-base);
  z-index: 110;
}

.has-dropdown:hover .dropdown-menu,
.has-dropdown:focus-within .dropdown-menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(4px);
}

.dropdown-item {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  padding: 0.65rem 0.85rem;
  border-radius: var(--radius-md);
  transition: background-color var(--transition-fast);
}

.dropdown-item:hover {
  background-color: var(--slate-50);
}

.dropdown-icon {
  width: 2rem;
  height: 2rem;
  border-radius: var(--radius-sm);
  background-color: var(--teal-100);
  color: var(--teal-600);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.dropdown-icon svg {
  width: 1.1rem;
  height: 1.1rem;
}

.dropdown-text h4 {
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--navy-900);
  margin-bottom: 0.15rem;
}

.dropdown-text p {
  font-size: 0.75rem;
  color: var(--slate-500);
  line-height: 1.3;
}

/* Header CTAs */
.header-actions {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.header-phone {
  display: flex;
  align-items: center;
  gap: 0.45rem;
  font-size: 0.9rem;
  font-weight: 700;
  color: var(--navy-900);
  transition: color var(--transition-fast);
}

.header-phone svg {
  width: 1.1rem;
  height: 1.1rem;
  color: var(--teal-600);
}

.header-phone:hover {
  color: var(--teal-600);
}

/* Mobile Toggle */
.mobile-toggle {
  display: none;
  width: 2.5rem;
  height: 2.5rem;
  align-items: center;
  justify-content: center;
  border-radius: var(--radius-md);
  color: var(--navy-900);
  background-color: var(--slate-100);
}

.mobile-toggle svg {
  width: 1.5rem;
  height: 1.5rem;
}

/* Mobile Menu Panel */
.mobile-nav-panel {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: rgba(6, 13, 26, 0.6);
  backdrop-filter: blur(6px);
  z-index: 200;
  opacity: 0;
  visibility: hidden;
  transition: all var(--transition-base);
}

.mobile-nav-panel.open {
  opacity: 1;
  visibility: visible;
}

.mobile-nav-content {
  position: absolute;
  top: 0;
  right: 0;
  width: 100%;
  max-width: 380px;
  height: 100%;
  background-color: var(--white);
  padding: 1.75rem 1.5rem;
  display: flex;
  flex-direction: column;
  overflow-y: auto;
  transform: translateX(100%);
  transition: transform var(--transition-base);
  box-shadow: var(--shadow-xl);
}

.mobile-nav-panel.open .mobile-nav-content {
  transform: translateX(0);
}

.mobile-nav-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 2rem;
  padding-bottom: 1rem;
  border-bottom: 1px solid var(--slate-200);
}

.mobile-nav-links {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.mobile-nav-links a {
  font-size: 1.05rem;
  font-weight: 600;
  color: var(--navy-900);
  padding: 0.65rem 0.5rem;
  border-radius: var(--radius-sm);
}

.mobile-nav-links a:hover {
  background-color: var(--slate-100);
  color: var(--teal-600);
}

.mobile-nav-footer {
  margin-top: auto;
  padding-top: 1.5rem;
  border-top: 1px solid var(--slate-200);
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

/* ==========================================================================
   HERO SECTION
   ========================================================================== */
.hero {
  position: relative;
  background: linear-gradient(175deg, #07152B 0%, var(--navy-900) 45%, #0B1E38 100%);
  color: var(--white);
  padding: 4.5rem 0 5.5rem 0;
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  top: -15%;
  right: -10%;
  width: 650px;
  height: 650px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(14, 165, 233, 0.18) 0%, rgba(2, 132, 199, 0) 70%);
  pointer-events: none;
}

.hero::after {
  content: '';
  position: absolute;
  bottom: -20%;
  left: -10%;
  width: 500px;
  height: 500px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(16, 185, 129, 0.12) 0%, rgba(16, 185, 129, 0) 70%);
  pointer-events: none;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  align-items: center;
  gap: 3.5rem;
  position: relative;
  z-index: 2;
}

.hero-copy {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

.hero-pill {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(56, 189, 248, 0.3);
  padding: 0.45rem 1rem;
  border-radius: var(--radius-full);
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--teal-400);
  width: fit-content;
  backdrop-filter: blur(8px);
}

.pulse-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background-color: var(--emerald-500);
  box-shadow: 0 0 0 0 rgba(16, 185, 129, 0.7);
  animation: pulse-green 2s infinite;
}

@keyframes pulse-green {
  0% { transform: scale(0.95); box-shadow: 0 0 0 0 rgba(16, 185, 129, 0.7); }
  70% { transform: scale(1); box-shadow: 0 0 0 8px rgba(16, 185, 129, 0); }
  100% { transform: scale(0.95); box-shadow: 0 0 0 0 rgba(16, 185, 129, 0); }
}

.hero-title {
  font-size: clamp(2.35rem, 4.2vw, 3.85rem);
  font-weight: 800;
  color: var(--white);
  line-height: 1.1;
  letter-spacing: -0.03em;
}

.hero-title .text-gradient {
  background: linear-gradient(135deg, #38BDF8 0%, #0EA5E9 50%, #34D399 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.hero-lead {
  font-size: 1.18rem;
  color: var(--slate-300);
  line-height: 1.6;
  max-width: 600px;
}

.hero-actions {
  display: flex;
  align-items: center;
  gap: 1.15rem;
  margin-top: 0.5rem;
  flex-wrap: wrap;
}

.hero-trust-row {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
  padding-top: 1.75rem;
  margin-top: 1.5rem;
  border-top: 1px solid rgba(255, 255, 255, 0.15);
}

.hero-trust-stat {
  display: flex;
  flex-direction: column;
}

.hero-trust-stat .num {
  font-family: var(--font-heading);
  font-size: 1.75rem;
  font-weight: 800;
  color: var(--white);
  line-height: 1;
}

.hero-trust-stat .lbl {
  font-size: 0.8rem;
  color: var(--slate-400);
  margin-top: 0.35rem;
}

/* Hero Visual & Floating Badges */
.hero-visual-wrapper {
  position: relative;
  padding: 0.75rem;
}

.hero-card-frame {
  position: relative;
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.45);
  border: 1px solid rgba(255, 255, 255, 0.15);
  background-color: var(--navy-850);
}

.hero-card-frame img {
  width: 100%;
  height: 460px;
  object-fit: cover;
  display: block;
}

/* Floating Badges */
.floating-badge {
  position: absolute;
  background: rgba(10, 25, 47, 0.88);
  border: 1px solid rgba(255, 255, 255, 0.18);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-radius: var(--radius-lg);
  padding: 0.85rem 1.15rem;
  box-shadow: 0 16px 36px rgba(0, 0, 0, 0.35);
  display: flex;
  align-items: center;
  gap: 0.75rem;
  z-index: 5;
  color: var(--white);
  animation: float 4s ease-in-out infinite;
}

@keyframes float {
  0% { transform: translateY(0px); }
  50% { transform: translateY(-8px); }
  100% { transform: translateY(0px); }
}

.floating-badge.badge-top {
  top: 1.25rem;
  right: -0.5rem;
  animation-delay: 0.5s;
}

.floating-badge.badge-bottom {
  bottom: 1.5rem;
  left: -0.5rem;
  animation-delay: 1.5s;
}

.badge-icon {
  width: 2.65rem;
  height: 2.65rem;
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.badge-icon.emerald {
  background: rgba(16, 185, 129, 0.2);
  color: var(--emerald-500);
}

.badge-icon.teal {
  background: rgba(14, 165, 233, 0.2);
  color: var(--teal-400);
}

.badge-icon svg {
  width: 1.4rem;
  height: 1.4rem;
}

.badge-content h4 {
  font-size: 1.25rem;
  font-weight: 800;
  color: var(--white);
  line-height: 1.1;
}

.badge-content p {
  font-size: 0.75rem;
  color: var(--slate-300);
  margin-top: 0.1rem;
}

/* ==========================================================================
   EHR / PMS COMPATIBILITY STRIP
   ========================================================================== */
.ehr-strip {
  background-color: var(--slate-50);
  border-bottom: 1px solid var(--slate-200);
  padding: 2.25rem 0;
}

.ehr-strip-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.25rem;
  text-align: center;
}

.ehr-label {
  font-size: 0.8rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--slate-400);
}

.ehr-grid {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 1rem 2rem;
  max-width: 1120px;
  margin: 0 auto;
}

.ehr-badge {
  font-family: var(--font-heading);
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--slate-400);
  transition: all var(--transition-fast);
  cursor: default;
  display: flex;
  align-items: center;
  gap: 0.4rem;
}

.ehr-badge:hover {
  color: var(--navy-900);
  transform: translateY(-2px);
}

.ehr-badge svg {
  width: 1rem;
  height: 1rem;
  color: var(--teal-500);
}

/* ==========================================================================
   STATS IMPACT RIBBON
   ========================================================================== */
.impact-ribbon {
  background-color: var(--white);
  padding: 4.5rem 0;
}

.impact-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
}

.impact-card {
  background: var(--slate-50);
  border: 1px solid var(--slate-200);
  border-radius: var(--radius-xl);
  padding: 2rem 1.5rem;
  text-align: center;
  transition: all var(--transition-base);
  position: relative;
  overflow: hidden;
}

.impact-card:hover {
  transform: translateY(-4px);
  border-color: var(--teal-400);
  box-shadow: var(--shadow-lg);
  background: var(--white);
}

.impact-number {
  font-family: var(--font-heading);
  font-size: 2.85rem;
  font-weight: 800;
  color: var(--navy-900);
  line-height: 1.1;
  margin-bottom: 0.5rem;
}

.impact-number span.accent {
  color: var(--teal-600);
}

.impact-title {
  font-size: 0.98rem;
  font-weight: 700;
  color: var(--navy-900);
  margin-bottom: 0.35rem;
}

.impact-desc {
  font-size: 0.82rem;
  color: var(--slate-500);
}

/* ==========================================================================
   SERVICES SECTION
   ========================================================================== */
.services-section {
  background-color: var(--slate-50);
  padding: 6rem 0;
  position: relative;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  align-items: stretch;
}

.service-card {
  background-color: var(--white);
  border: 1px solid var(--slate-200);
  border-radius: var(--radius-xl);
  padding: 2.25rem;
  box-shadow: var(--shadow-sm);
  display: flex;
  flex-direction: column;
  transition: all var(--transition-base);
  position: relative;
  height: 100%;
}

.service-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-xl);
  border-color: var(--teal-400);
}

.service-icon-box {
  width: 3.5rem;
  height: 3.5rem;
  border-radius: var(--radius-lg);
  background: var(--teal-50);
  color: var(--teal-600);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.5rem;
  transition: all var(--transition-base);
}

.service-card:hover .service-icon-box {
  background: linear-gradient(135deg, var(--teal-500) 0%, var(--teal-600) 100%);
  color: var(--white);
  transform: scale(1.05);
}

.service-icon-box svg {
  width: 1.85rem;
  height: 1.85rem;
}

.service-card h3 {
  font-size: 1.35rem;
  margin-bottom: 0.85rem;
  min-height: 2.2rem;
  display: flex;
  align-items: center;
}

.service-card p {
  font-size: 0.92rem;
  color: var(--slate-600);
  margin-bottom: 1.5rem;
  line-height: 1.55;
  flex-grow: 1;
}

.service-features {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.65rem;
  margin-top: auto;
  padding-top: 1.25rem;
  border-top: 1px solid var(--slate-100);
}

.service-features li {
  display: flex;
  align-items: center;
  gap: 0.55rem;
  font-size: 0.85rem;
  color: var(--slate-700);
  font-weight: 500;
}

.service-features svg {
  width: 16px;
  height: 16px;
  color: var(--emerald-500);
  flex-shrink: 0;
}

/* ==========================================================================
   INTERACTIVE REVENUE RECOVERY CALCULATOR
   ========================================================================== */
.calculator-section {
  background: linear-gradient(180deg, var(--white) 0%, var(--slate-50) 100%);
  padding: 6rem 0;
}

.calculator-wrapper {
  background: var(--navy-900);
  border-radius: var(--radius-xl);
  padding: 3.5rem;
  color: var(--white);
  box-shadow: var(--shadow-xl);
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3.5rem;
  align-items: stretch;
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.12);
}

.calculator-wrapper::before {
  content: '';
  position: absolute;
  top: -20%;
  right: -10%;
  width: 450px;
  height: 450px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(14, 165, 233, 0.2) 0%, transparent 70%);
  pointer-events: none;
}

.calc-intro {
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.calc-intro h2 {
  font-size: clamp(1.85rem, 3vw, 2.45rem);
  color: var(--white);
  margin-bottom: 1rem;
}

.calc-intro p {
  color: var(--slate-300);
  font-size: 1.02rem;
  margin-bottom: 2rem;
}

.calc-sliders {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.slider-group {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.slider-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.slider-label {
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--slate-200);
}

.slider-val-box {
  font-family: var(--font-heading);
  font-size: 1.25rem;
  font-weight: 800;
  color: var(--teal-400);
  background: rgba(255, 255, 255, 0.08);
  padding: 0.25rem 0.85rem;
  border-radius: var(--radius-md);
  border: 1px solid rgba(255, 255, 255, 0.12);
}

.calc-range {
  -webkit-appearance: none;
  appearance: none;
  width: 100%;
  height: 8px;
  border-radius: var(--radius-full);
  background: var(--navy-800);
  outline: none;
  cursor: pointer;
}

.calc-range::-webkit-slider-thumb {
  -webkit-appearance: none;
  appearance: none;
  width: 24px;
  height: 24px;
  border-radius: 50%;
  background: var(--teal-400);
  border: 3px solid var(--white);
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.4);
  cursor: pointer;
  transition: transform var(--transition-fast);
}

.calc-range::-webkit-slider-thumb:hover {
  transform: scale(1.15);
}

/* Calculator Output Panel */
.calc-results-panel {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.15);
  backdrop-filter: blur(12px);
  border-radius: var(--radius-lg);
  padding: 2.25rem;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 1.75rem;
  height: 100%;
}

.result-main {
  text-align: center;
  padding-bottom: 1.75rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
}

.result-kicker {
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--emerald-500);
  font-weight: 700;
  margin-bottom: 0.5rem;
}

.result-big-number {
  font-family: var(--font-heading);
  font-size: clamp(2.5rem, 4vw, 3.5rem);
  font-weight: 800;
  color: var(--white);
  line-height: 1;
}

.result-sub {
  font-size: 0.85rem;
  color: var(--slate-400);
  margin-top: 0.5rem;
}

.result-breakdown {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.25rem;
}

.breakdown-box {
  background: rgba(255, 255, 255, 0.04);
  border-radius: var(--radius-md);
  padding: 1rem;
  text-align: center;
}

.breakdown-val {
  font-family: var(--font-heading);
  font-size: 1.35rem;
  font-weight: 700;
  color: var(--teal-400);
}

.breakdown-lbl {
  font-size: 0.75rem;
  color: var(--slate-300);
  margin-top: 0.25rem;
}

/* ==========================================================================
   THE 4-STEP PROCESS
   ========================================================================== */
.process-section {
  background-color: var(--white);
  padding: 6rem 0;
}

.process-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
  position: relative;
  align-items: stretch;
}

.process-grid::before {
  content: '';
  position: absolute;
  top: 3.25rem;
  left: 12%;
  right: 12%;
  height: 2px;
  background: repeating-linear-gradient(90deg, var(--teal-400) 0, var(--teal-400) 6px, transparent 6px, transparent 12px);
  z-index: 1;
}

.process-card {
  position: relative;
  z-index: 2;
  background: var(--white);
  text-align: center;
  padding: 1.5rem 1rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  height: 100%;
}

.step-num-badge {
  width: 4rem;
  height: 4rem;
  border-radius: 50%;
  background: var(--teal-50);
  border: 3px solid var(--white);
  box-shadow: var(--shadow-md);
  color: var(--teal-600);
  font-family: var(--font-heading);
  font-size: 1.6rem;
  font-weight: 800;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.5rem auto;
  transition: all var(--transition-base);
  flex-shrink: 0;
}

.process-card:hover .step-num-badge {
  background: var(--teal-600);
  color: var(--white);
  transform: scale(1.1);
  box-shadow: 0 0 0 6px var(--teal-100);
}

.process-card h3 {
  font-size: 1.25rem;
  margin-bottom: 0.65rem;
  min-height: 2rem;
  display: flex;
  align-items: center;
  justify-content: center;
}

.process-card p {
  font-size: 0.88rem;
  color: var(--slate-500);
  line-height: 1.5;
  flex-grow: 1;
  margin: 0;
}

/* ==========================================================================
   SPECIALTIES DIRECTORY
   ========================================================================== */
.specialties-section {
  background-color: var(--slate-50);
  padding: 6rem 0;
}

.specialties-tabs {
  display: flex;
  justify-content: center;
  gap: 0.65rem;
  flex-wrap: wrap;
  margin-bottom: 2.5rem;
}

.spec-tab-btn {
  padding: 0.6rem 1.25rem;
  border-radius: var(--radius-full);
  font-size: 0.88rem;
  font-weight: 600;
  background-color: var(--white);
  border: 1px solid var(--slate-200);
  color: var(--slate-600);
  transition: all var(--transition-fast);
}

.spec-tab-btn:hover {
  border-color: var(--teal-500);
  color: var(--teal-600);
}

.spec-tab-btn.active {
  background-color: var(--navy-900);
  color: var(--white);
  border-color: var(--navy-900);
  box-shadow: var(--shadow-sm);
}

.specialties-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
  align-items: stretch;
}

.spec-card {
  background: var(--white);
  border: 1px solid var(--slate-200);
  border-radius: var(--radius-lg);
  padding: 1.75rem;
  transition: all var(--transition-base);
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  height: 100%;
}

.spec-card:hover {
  border-color: var(--teal-400);
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}

.spec-icon {
  width: 2.75rem;
  height: 2.75rem;
  border-radius: var(--radius-md);
  background: var(--teal-50);
  color: var(--teal-600);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.spec-icon svg {
  width: 1.4rem;
  height: 1.4rem;
}

.spec-card h3 {
  font-size: 1.15rem;
  color: var(--navy-900);
  min-height: 1.8rem;
  display: flex;
  align-items: center;
}

.spec-card p {
  font-size: 0.82rem;
  color: var(--slate-500);
  line-height: 1.45;
  flex-grow: 1;
}

.spec-tag {
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: uppercase;
  color: var(--teal-600);
  letter-spacing: 0.05em;
  margin-top: auto;
  padding-top: 0.75rem;
  border-top: 1px solid var(--slate-100);
}

/* ==========================================================================
   TRANSPARENT PRICING SECTION
   ========================================================================== */
.pricing-section {
  background-color: var(--white);
  padding: 6rem 0;
}

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  align-items: stretch;
}

.pricing-card {
  border: 1px solid var(--slate-200);
  border-radius: var(--radius-xl);
  padding: 2.75rem 2.25rem;
  display: flex;
  flex-direction: column;
  background-color: var(--white);
  box-shadow: var(--shadow-sm);
  position: relative;
  transition: all var(--transition-base);
  height: 100%;
}

.pricing-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-xl);
}

.pricing-card.featured {
  border-color: var(--teal-500);
  box-shadow: 0 16px 40px -8px rgba(14, 165, 233, 0.22);
  background: linear-gradient(180deg, #FFFFFF 0%, #F0F9FF 100%);
}

.featured-pill {
  position: absolute;
  top: -0.85rem;
  left: 50%;
  transform: translateX(-50%);
  background: linear-gradient(135deg, var(--teal-500) 0%, var(--teal-600) 100%);
  color: var(--white);
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  padding: 0.35rem 1.15rem;
  border-radius: var(--radius-full);
  box-shadow: 0 4px 10px rgba(2, 132, 199, 0.3);
  white-space: nowrap;
}

.plan-name {
  font-size: 1.45rem;
  margin-bottom: 0.5rem;
}

.plan-desc {
  font-size: 0.88rem;
  color: var(--slate-500);
  margin-bottom: 1.75rem;
  min-height: 2.6rem;
}

.plan-rate {
  font-family: var(--font-heading);
  font-size: 3rem;
  font-weight: 800;
  color: var(--navy-900);
  line-height: 1;
  margin-bottom: 0.35rem;
}

.plan-rate span.suffix {
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--slate-500);
}

.plan-sub {
  font-size: 0.78rem;
  color: var(--emerald-600);
  font-weight: 600;
  margin-bottom: 1.75rem;
  min-height: 2.2rem;
}

.plan-features {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.85rem;
  margin-bottom: 2rem;
  flex-grow: 1;
}

.plan-features li {
  display: flex;
  align-items: center;
  gap: 0.65rem;
  font-size: 0.88rem;
  color: var(--slate-700);
}

.plan-features svg {
  width: 18px;
  height: 18px;
  color: var(--teal-500);
  flex-shrink: 0;
}

.pricing-card .btn {
  margin-top: auto;
  width: 100%;
}

/* ==========================================================================
   TESTIMONIALS & REVIEWS
   ========================================================================== */
.testimonials-section {
  background-color: var(--slate-50);
  padding: 6rem 0;
}

.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  align-items: stretch;
}

.testimonial-card {
  background: var(--white);
  border: 1px solid var(--slate-200);
  border-radius: var(--radius-xl);
  padding: 2.25rem;
  box-shadow: var(--shadow-sm);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 1.5rem;
  transition: all var(--transition-base);
  height: 100%;
}

.testimonial-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
  border-color: var(--slate-300);
}

.star-rating {
  display: flex;
  align-items: center;
  gap: 0.25rem;
  color: var(--amber-500);
}

.star-rating svg {
  width: 18px;
  height: 18px;
  fill: currentColor;
}

.testimonial-quote {
  font-size: 0.95rem;
  color: var(--slate-700);
  line-height: 1.6;
  font-style: italic;
  flex-grow: 1;
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding-top: 1.25rem;
  border-top: 1px solid var(--slate-100);
  margin-top: auto;
}

.author-avatar {
  width: 3.25rem;
  height: 3.25rem;
  border-radius: 50%;
  object-fit: cover;
}

.author-info h4 {
  font-size: 0.98rem;
  color: var(--navy-900);
}

.author-info p {
  font-size: 0.78rem;
  color: var(--slate-500);
}

/* ==========================================================================
   FAQ ACCORDION
   ========================================================================== */
.faq-section {
  background-color: var(--white);
  padding: 6rem 0;
}

.faq-list {
  max-width: 840px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.faq-item {
  border: 1px solid var(--slate-200);
  border-radius: var(--radius-lg);
  background-color: var(--slate-50);
  overflow: hidden;
  transition: all var(--transition-fast);
}

.faq-item.active {
  border-color: var(--teal-400);
  background-color: var(--white);
  box-shadow: var(--shadow-sm);
}

.faq-question {
  width: 100%;
  padding: 1.35rem 1.75rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  text-align: left;
  font-family: var(--font-heading);
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--navy-900);
  cursor: pointer;
}

.faq-icon {
  width: 1.75rem;
  height: 1.75rem;
  border-radius: 50%;
  background-color: var(--slate-200);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  color: var(--slate-700);
  transition: transform var(--transition-base), background-color var(--transition-base);
}

.faq-item.active .faq-icon {
  transform: rotate(45deg);
  background-color: var(--teal-600);
  color: var(--white);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height var(--transition-slow) ease-out, padding var(--transition-slow);
  padding: 0 1.75rem;
  color: var(--slate-600);
  font-size: 0.92rem;
  line-height: 1.6;
}

.faq-item.active .faq-answer {
  padding-bottom: 1.5rem;
}

/* ==========================================================================
   LEAD CAPTURE AUDIT SECTION
   ========================================================================== */
.audit-cta-section {
  background: linear-gradient(135deg, var(--navy-950) 0%, var(--navy-900) 100%);
  color: var(--white);
  padding: 6rem 0;
  position: relative;
  overflow: hidden;
}

.audit-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

.audit-content h2 {
  font-size: clamp(2rem, 3.5vw, 2.75rem);
  color: var(--white);
  margin-bottom: 1rem;
}

.audit-content p {
  color: var(--slate-300);
  font-size: 1.05rem;
  margin-bottom: 2rem;
}

.audit-points {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.audit-point-item {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
}

.audit-point-item svg {
  width: 20px;
  height: 20px;
  color: var(--teal-400);
  flex-shrink: 0;
  margin-top: 0.2rem;
}

.audit-point-item h4 {
  font-size: 0.98rem;
  color: var(--white);
  margin-bottom: 0.15rem;
}

.audit-point-item p {
  font-size: 0.82rem;
  color: var(--slate-400);
  margin: 0;
}

.audit-form-card {
  background: var(--white);
  border-radius: var(--radius-xl);
  padding: 2.5rem;
  color: var(--slate-900);
  box-shadow: var(--shadow-xl);
}

.audit-form-card h3 {
  font-size: 1.45rem;
  margin-bottom: 0.5rem;
}

.audit-form-card p.sub {
  font-size: 0.85rem;
  color: var(--slate-500);
  margin-bottom: 1.75rem;
}

.form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
  text-align: left;
}

.form-group.full {
  grid-column: span 2;
}

.form-group label {
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--slate-700);
}

.form-control {
  width: 100%;
  padding: 0.75rem 1rem;
  border-radius: var(--radius-md);
  border: 1px solid var(--slate-300);
  background: var(--slate-50);
  font-size: 0.9rem;
  transition: all var(--transition-fast);
}

.form-control:focus {
  outline: none;
  border-color: var(--teal-500);
  background: var(--white);
  box-shadow: 0 0 0 3px rgba(14, 165, 233, 0.15);
}

.form-submit-btn {
  width: 100%;
  margin-top: 1rem;
}

.form-status {
  margin-top: 1rem;
  padding: 0.75rem;
  border-radius: var(--radius-md);
  font-size: 0.85rem;
  text-align: center;
  display: none;
}

.form-status.success {
  display: block;
  background: var(--emerald-50);
  color: var(--emerald-600);
  border: 1px solid var(--emerald-100);
}

.form-status.error {
  display: block;
  background: #FEF2F2;
  color: #DC2626;
  border: 1px solid #FEE2E2;
}

/* ==========================================================================
   FOOTER
   ========================================================================== */
.site-footer {
  background-color: var(--navy-950);
  color: var(--slate-400);
  padding: 5rem 0 2.5rem 0;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1.2fr;
  gap: 3rem;
  margin-bottom: 3.5rem;
  align-items: flex-start;
}

.footer-brand .brand {
  color: var(--white);
  margin-bottom: 1.25rem;
}

.footer-brand p {
  font-size: 0.88rem;
  line-height: 1.6;
  margin-bottom: 1.5rem;
  color: var(--slate-400);
}

.footer-badges {
  display: flex;
  align-items: center;
  gap: 0.65rem;
  flex-wrap: wrap;
}

.footer-badge {
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: uppercase;
  padding: 0.35rem 0.75rem;
  border-radius: var(--radius-full);
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.12);
  color: var(--slate-300);
}

.footer-col h4 {
  font-size: 1.05rem;
  color: var(--white);
  margin-bottom: 1.25rem;
}

.footer-links {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.65rem;
}

.footer-links a {
  font-size: 0.88rem;
  color: var(--slate-400);
  transition: color var(--transition-fast);
}

.footer-links a:hover {
  color: var(--teal-400);
}

.footer-contact-info {
  display: flex;
  flex-direction: column;
  gap: 0.85rem;
  font-size: 0.88rem;
}

.footer-contact-item {
  display: flex;
  align-items: flex-start;
  gap: 0.65rem;
}

.footer-contact-item svg {
  width: 18px;
  height: 18px;
  color: var(--teal-400);
  flex-shrink: 0;
  margin-top: 0.2rem;
}

.footer-bottom {
  padding-top: 2rem;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 1rem;
  font-size: 0.8rem;
}

.footer-legal-links {
  display: flex;
  gap: 1.5rem;
}

.footer-legal-links a:hover {
  color: var(--teal-400);
}

/* ==========================================================================
   MODAL OVERLAY (AUDIT REQUEST)
   ========================================================================== */
.modal-overlay {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: rgba(6, 13, 26, 0.7);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  z-index: 300;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1.5rem;
  opacity: 0;
  visibility: hidden;
  transition: all var(--transition-base);
}

.modal-overlay.open {
  opacity: 1;
  visibility: visible;
}

.modal-dialog {
  background: var(--white);
  border-radius: var(--radius-xl);
  max-width: 580px;
  width: 100%;
  max-height: 90vh;
  overflow-y: auto;
  box-shadow: var(--shadow-xl);
  padding: 2.5rem;
  position: relative;
  transform: scale(0.95);
  transition: transform var(--transition-base);
}

.modal-overlay.open .modal-dialog {
  transform: scale(1);
}

.modal-close-btn {
  position: absolute;
  top: 1.25rem;
  right: 1.25rem;
  width: 2.25rem;
  height: 2.25rem;
  border-radius: 50%;
  background: var(--slate-100);
  color: var(--slate-600);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all var(--transition-fast);
}

.modal-close-btn:hover {
  background: var(--slate-200);
  color: var(--navy-900);
}

.modal-close-btn svg {
  width: 1.25rem;
  height: 1.25rem;
}

/* ==========================================================================
   RESPONSIVE BREAKPOINTS
   ========================================================================== */
@media (max-width: 1080px) {
  .hero-grid {
    grid-template-columns: 1fr;
    gap: 3rem;
  }
  .hero-visual-wrapper {
    max-width: 550px;
    margin: 0 auto;
  }
  .services-grid,
  .pricing-grid,
  .testimonials-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .impact-grid,
  .specialties-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .process-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .process-grid::before {
    display: none;
  }
  .calculator-wrapper,
  .audit-grid {
    grid-template-columns: 1fr;
    gap: 2.5rem;
    padding: 2.5rem;
  }
  .footer-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 820px) {
  .desktop-nav,
  .header-actions .header-phone {
    display: none;
  }
  .mobile-toggle {
    display: flex;
  }
  .services-grid,
  .pricing-grid,
  .testimonials-grid,
  .specialties-grid {
    grid-template-columns: 1fr;
  }
  .form-grid {
    grid-template-columns: 1fr;
  }
  .form-group.full {
    grid-column: span 1;
  }
  .floating-badge.badge-top {
    right: 0;
  }
  .floating-badge.badge-bottom {
    left: 0;
  }
}

@media (max-width: 640px) {
  .top-bar {
    display: none;
  }
  .impact-grid,
  .process-grid,
  .footer-grid {
    grid-template-columns: 1fr;
  }
  .result-breakdown {
    grid-template-columns: 1fr;
  }
  .hero-trust-row {
    gap: 1.25rem;
  }
  .footer-bottom {
    flex-direction: column;
    text-align: center;
  }
  .modal-dialog {
    padding: 1.75rem 1.25rem;
  }
}
