/* ===========================
   ASSERTIVE MBS — styles.css
   =========================== */

/* Google Fonts: DM Serif Display + DM Sans */
@import url('https://fonts.googleapis.com/css2?family=DM+Serif+Display:ital@0;1&family=DM+Sans:ital,opsz,wght@0,9..40,300;0,9..40,400;0,9..40,500;0,9..40,600;0,9..40,700;1,9..40,400&display=swap');

/* ========================
   CSS VARIABLES
======================== */
:root {
  --navy:       #0B1F3A;
  --teal:       #0E7C86;
  --teal-light: #16A9B5;
  --teal-pale:  #E6F7F9;
  --accent:     #12B3A8;
  --white:      #FFFFFF;
  --off-white:  #F5F8FB;
  --gray-light: #EDF1F7;
  --gray-mid:   #9AAAB8;
  --gray-dark:  #4A5568;
  --text-body:  #2D3748;
  --text-head:  #0B1F3A;

  --shadow-sm: 0 2px 8px rgba(11,31,58,0.08);
  --shadow-md: 0 8px 32px rgba(11,31,58,0.12);
  --shadow-lg: 0 20px 60px rgba(11,31,58,0.16);

  --radius-sm: 6px;
  --radius-md: 12px;
  --radius-lg: 20px;
  --radius-xl: 32px;

  --transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  --font-display: 'DM Serif Display', serif;
  --font-body: 'DM Sans', sans-serif;
}

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

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  font-family: var(--font-body);
  color: var(--text-body);
  background: var(--white);
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
}

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

a {
  text-decoration: none;
  color: inherit;
}

ul, ol { list-style: none; }

/* ========================
   UTILITY CLASSES
======================== */
.container {
  max-width: 1160px;
  margin: 0 auto;
  padding: 0 24px;
}

.section {
  padding: 96px 0;
}

.section--alt {
  background: var(--off-white);
}

.section--navy {
  background: var(--navy);
  color: var(--white);
}

.section--teal {
  background: var(--teal);
  color: var(--white);
}

.section-label {
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 12px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--teal);
  margin-bottom: 12px;
  display: block;
}

.section--navy .section-label,
.section--teal .section-label {
  color: var(--teal-light);
}

.section-title {
  font-family: var(--font-display);
  font-size: clamp(28px, 4vw, 44px);
  color: var(--text-head);
  line-height: 1.2;
  margin-bottom: 20px;
}

.section--navy .section-title,
.section--teal .section-title {
  color: var(--white);
}

.section-subtitle {
  font-size: 17px;
  color: var(--gray-dark);
  max-width: 620px;
  line-height: 1.75;
}

.section--navy .section-subtitle,
.section--teal .section-subtitle {
  color: rgba(255,255,255,0.78);
}

.section-header {
  margin-bottom: 56px;
}

.section-header--center {
  text-align: center;
}

.section-header--center .section-subtitle {
  margin: 0 auto;
}

/* ========================
   BUTTONS
======================== */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 15px;
  padding: 14px 32px;
  border-radius: var(--radius-sm);
  cursor: pointer;
  transition: var(--transition);
  border: 2px solid transparent;
  position: relative;
  overflow: hidden;
}

.btn::after {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(255,255,255,0.08);
  opacity: 0;
  transition: var(--transition);
}

.btn:hover::after { opacity: 1; }

.btn-primary {
  background: var(--teal);
  color: var(--white);
  border-color: var(--teal);
  box-shadow: 0 4px 16px rgba(14,124,134,0.32);
}

.btn-primary:hover {
  background: #0D6E77;
  border-color: #0D6E77;
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(14,124,134,0.40);
}

.btn-outline {
  background: transparent;
  color: var(--teal);
  border-color: var(--teal);
}

.btn-outline:hover {
  background: var(--teal);
  color: var(--white);
  transform: translateY(-2px);
}

.btn-outline--white {
  color: var(--white);
  border-color: rgba(255,255,255,0.6);
}

.btn-outline--white:hover {
  background: var(--white);
  color: var(--navy);
  border-color: var(--white);
}

.btn-lg {
  padding: 18px 42px;
  font-size: 16px;
}

.btn svg {
  width: 18px;
  height: 18px;
  flex-shrink: 0;
}

/* ========================
   HEADER & NAV
======================== */
#header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: rgba(255,255,255,0.96);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid transparent;
  transition: var(--transition);
}

#header.scrolled {
  border-bottom-color: var(--gray-light);
  box-shadow: var(--shadow-sm);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 72px;
}

.logo {
  display: flex;
  align-items: center;
  gap: 10px;
}

/* ========================
   LOGO — IMAGE VERSION
======================== */
.logo--img {
  display: flex;
  align-items: center;
  padding: 4px 0;
  flex-shrink: 0;
}

.logo-img {
  height: 48px;
  width: auto;
  display: block;
  object-fit: contain;
  /* Logo has transparent bg; invert on dark header backgrounds if needed */
  transition: opacity var(--transition), filter var(--transition);
}

.logo-img:hover {
  opacity: 0.88;
}

/* Footer variant — logo sits on very dark navy #071426.
   The orange/green is already vivid, just bump brightness slightly */
.logo-img--footer {
  height: 52px;
  /* slight brightness boost so it pops on the very dark footer */
  filter: brightness(1.08);
}

/* ========================
   LOGO — original CSS mark kept
   for backward compat but hidden
   when image logo is used
======================== */
.logo-mark {
  width: 38px;
  height: 38px;
  background: var(--navy);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
}

.logo-mark::before {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 40%;
  background: var(--teal);
}

.logo-mark span {
  font-family: var(--font-display);
  font-size: 18px;
  color: var(--white);
  position: relative;
  z-index: 1;
  line-height: 1;
}

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

.logo-text strong {
  font-family: var(--font-display);
  font-size: 17px;
  color: var(--navy);
}

.logo-text small {
  font-size: 10px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--teal);
  font-weight: 600;
}

/* Footer logo text override */
.footer-logo .logo-text strong {
  color: var(--white);
}

.nav-list {
  display: flex;
  align-items: center;
  gap: 4px;
}

.nav-list li a {
  font-size: 14px;
  font-weight: 500;
  color: var(--gray-dark);
  padding: 8px 14px;
  border-radius: var(--radius-sm);
  transition: var(--transition);
}

.nav-list li a:hover,
.nav-list li a.active {
  color: var(--teal);
  background: var(--teal-pale);
}

.nav-cta {
  background: var(--navy) !important;
  color: var(--white) !important;
  padding: 9px 20px !important;
  border-radius: var(--radius-sm) !important;
}

.nav-cta:hover {
  background: var(--teal) !important;
}

/* Hamburger */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 8px;
  border: none;
  background: none;
  border-radius: var(--radius-sm);
  transition: var(--transition);
}

.hamburger:hover { background: var(--gray-light); }

.hamburger span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--navy);
  transition: var(--transition);
  transform-origin: center;
}

.hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; transform: scaleX(0); }
.hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* Mobile Nav */
.mobile-nav {
  display: none;
  flex-direction: column;
  background: var(--white);
  border-top: 1px solid var(--gray-light);
  padding: 16px 24px 24px;
  gap: 4px;
}

.mobile-nav.open { display: flex; }

.mobile-nav a {
  font-size: 15px;
  font-weight: 500;
  color: var(--text-body);
  padding: 10px 14px;
  border-radius: var(--radius-sm);
  transition: var(--transition);
}

.mobile-nav a:hover,
.mobile-nav a.active {
  color: var(--teal);
  background: var(--teal-pale);
}

.mobile-nav .btn {
  margin-top: 8px;
  justify-content: center;
}

/* ========================
   HERO
======================== */
.hero {
  padding-top: 160px;
  padding-bottom: 100px;
  background: var(--navy);
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  top: -120px;
  right: -200px;
  width: 700px;
  height: 700px;
  background: radial-gradient(circle, rgba(14,124,134,0.22) 0%, transparent 70%);
  pointer-events: none;
}

.hero::after {
  content: '';
  position: absolute;
  bottom: -80px;
  left: -100px;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(18,179,168,0.12) 0%, transparent 70%);
  pointer-events: none;
}

/* Grid pattern overlay */
.hero-grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,0.025) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.025) 1px, transparent 1px);
  background-size: 60px 60px;
  pointer-events: none;
}

.hero-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
  position: relative;
  z-index: 1;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.14);
  border-radius: 100px;
  padding: 6px 16px;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--teal-light);
  margin-bottom: 24px;
}

.hero-badge::before {
  content: '';
  width: 6px;
  height: 6px;
  background: var(--accent);
  border-radius: 50%;
  animation: pulse 2s ease infinite;
}

@keyframes pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.5; transform: scale(1.4); }
}

.hero-title {
  font-family: var(--font-display);
  font-size: clamp(34px, 5vw, 58px);
  color: var(--white);
  line-height: 1.12;
  margin-bottom: 24px;
}

.hero-title em {
  font-style: italic;
  color: var(--teal-light);
}

.hero-desc {
  font-size: 17px;
  color: rgba(255,255,255,0.72);
  max-width: 480px;
  line-height: 1.8;
  margin-bottom: 40px;
}

.hero-actions {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

.hero-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-top: 48px;
  padding-top: 40px;
  border-top: 1px solid rgba(255,255,255,0.1);
}

.hero-stat {
  text-align: center;
}

.hero-stat-num {
  font-family: var(--font-display);
  font-size: 32px;
  color: var(--teal-light);
  display: block;
  line-height: 1;
  margin-bottom: 6px;
}

.hero-stat-label {
  font-size: 12px;
  color: rgba(255,255,255,0.55);
  font-weight: 500;
  letter-spacing: 0.06em;
}

/* Hero Visual */
.hero-visual {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero-card-stack {
  width: 100%;
  max-width: 420px;
  margin: 0 auto;
  position: relative;
}

.hero-card {
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: var(--radius-lg);
  padding: 28px;
  backdrop-filter: blur(8px);
}

.hero-card-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 20px;
}

.hero-card-title {
  font-size: 13px;
  font-weight: 600;
  color: rgba(255,255,255,0.7);
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.hero-card-badge {
  font-size: 11px;
  font-weight: 700;
  color: var(--accent);
  background: rgba(18,179,168,0.15);
  border: 1px solid rgba(18,179,168,0.3);
  padding: 3px 10px;
  border-radius: 100px;
}

.rcm-bars {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.rcm-bar-item {
  display: flex;
  align-items: center;
  gap: 12px;
}

.rcm-bar-label {
  font-size: 12px;
  color: rgba(255,255,255,0.65);
  width: 100px;
  flex-shrink: 0;
}

.rcm-bar-track {
  flex: 1;
  height: 6px;
  background: rgba(255,255,255,0.1);
  border-radius: 100px;
  overflow: hidden;
}

.rcm-bar-fill {
  height: 100%;
  border-radius: 100px;
  background: linear-gradient(90deg, var(--teal), var(--accent));
  width: 0;
  transition: width 1.2s ease 0.4s;
}

.rcm-bar-pct {
  font-size: 12px;
  color: var(--teal-light);
  font-weight: 600;
  width: 36px;
  text-align: right;
  flex-shrink: 0;
}

.hero-card-float {
  position: absolute;
  background: var(--white);
  border-radius: var(--radius-md);
  padding: 14px 18px;
  box-shadow: var(--shadow-lg);
  display: flex;
  align-items: center;
  gap: 10px;
}

.hero-card-float--1 {
  top: -24px;
  right: -24px;
}

.hero-card-float--2 {
  bottom: -24px;
  left: -24px;
}

.float-icon {
  width: 36px;
  height: 36px;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.float-icon--green { background: #E6F9F4; }
.float-icon--blue  { background: var(--teal-pale); }

.float-icon svg {
  width: 18px;
  height: 18px;
}

.float-text strong {
  display: block;
  font-size: 13px;
  font-weight: 700;
  color: var(--text-head);
}

.float-text span {
  font-size: 11px;
  color: var(--gray-mid);
}

/* ========================
   TRUST BAR
======================== */
.trust-bar {
  background: var(--white);
  padding: 28px 0;
  border-bottom: 1px solid var(--gray-light);
}

.trust-bar-inner {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 48px;
  flex-wrap: wrap;
}

.trust-item {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 13px;
  font-weight: 600;
  color: var(--gray-dark);
  letter-spacing: 0.04em;
}

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

/* ========================
   SERVICES CARDS
======================== */
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.service-card {
  background: var(--white);
  border: 1px solid var(--gray-light);
  border-radius: var(--radius-md);
  padding: 36px 28px;
  transition: var(--transition);
  position: relative;
  overflow: hidden;
}

.service-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--teal), var(--accent));
  transform: scaleX(0);
  transform-origin: left;
  transition: var(--transition);
}

.service-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-md);
  border-color: rgba(14,124,134,0.2);
}

.service-card:hover::before {
  transform: scaleX(1);
}

.service-icon {
  width: 52px;
  height: 52px;
  background: var(--teal-pale);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  transition: var(--transition);
}

.service-card:hover .service-icon {
  background: var(--teal);
}

.service-icon svg {
  width: 24px;
  height: 24px;
  color: var(--teal);
  transition: var(--transition);
}

.service-card:hover .service-icon svg {
  color: var(--white);
}

.service-card h3 {
  font-family: var(--font-display);
  font-size: 20px;
  color: var(--text-head);
  margin-bottom: 12px;
  line-height: 1.3;
}

.service-card p {
  font-size: 14px;
  color: var(--gray-dark);
  line-height: 1.7;
  margin-bottom: 20px;
}

.service-link {
  font-size: 13px;
  font-weight: 600;
  color: var(--teal);
  display: inline-flex;
  align-items: center;
  gap: 6px;
  transition: var(--transition);
}

.service-link:hover { gap: 10px; }

.service-link svg {
  width: 14px;
  height: 14px;
}

/* ========================
   WHY CHOOSE US
======================== */
.why-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}

.why-features {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

.why-feature {
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: var(--radius-md);
  padding: 24px 20px;
  transition: var(--transition);
}

.why-feature:hover {
  background: rgba(255,255,255,0.1);
  border-color: rgba(18,179,168,0.3);
  transform: translateY(-3px);
}

.why-feature-icon {
  width: 40px;
  height: 40px;
  background: rgba(14,124,134,0.25);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 14px;
}

.why-feature-icon svg {
  width: 20px;
  height: 20px;
  color: var(--teal-light);
}

.why-feature h4 {
  font-size: 15px;
  font-weight: 600;
  color: var(--white);
  margin-bottom: 8px;
}

.why-feature p {
  font-size: 13px;
  color: rgba(255,255,255,0.58);
  line-height: 1.6;
}

/* ========================
   COMPLIANCE SECTION
======================== */
.compliance-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.compliance-card {
  background: var(--white);
  border-radius: var(--radius-md);
  padding: 36px 28px;
  text-align: center;
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
  border: 1px solid var(--gray-light);
}

.compliance-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}

.compliance-badge {
  width: 72px;
  height: 72px;
  background: var(--teal-pale);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
}

.compliance-badge svg {
  width: 32px;
  height: 32px;
  color: var(--teal);
}

.compliance-card h3 {
  font-family: var(--font-display);
  font-size: 19px;
  color: var(--text-head);
  margin-bottom: 12px;
}

.compliance-card p {
  font-size: 14px;
  color: var(--gray-dark);
  line-height: 1.7;
}

/* ========================
   CTA BAND
======================== */
.cta-band {
  background: linear-gradient(135deg, var(--navy) 0%, #0E3A5C 100%);
  padding: 80px 0;
  position: relative;
  overflow: hidden;
}

.cta-band::before {
  content: '';
  position: absolute;
  top: -100px;
  right: -100px;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(14,124,134,0.3) 0%, transparent 70%);
}

.cta-band-inner {
  position: relative;
  z-index: 1;
  text-align: center;
}

.cta-band h2 {
  font-family: var(--font-display);
  font-size: clamp(28px, 4vw, 44px);
  color: var(--white);
  margin-bottom: 16px;
}

.cta-band p {
  font-size: 17px;
  color: rgba(255,255,255,0.72);
  max-width: 520px;
  margin: 0 auto 40px;
  line-height: 1.75;
}

.cta-band-actions {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
}

/* ========================
   PROCESS STEPS
======================== */
.process-steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 32px;
  position: relative;
}

.process-steps::before {
  content: '';
  position: absolute;
  top: 36px;
  left: calc(12.5% + 16px);
  right: calc(12.5% + 16px);
  height: 1px;
  background: linear-gradient(90deg, var(--teal), var(--accent));
  opacity: 0.3;
}

.process-step {
  text-align: center;
  position: relative;
}

.process-step-num {
  width: 56px;
  height: 56px;
  background: var(--teal-pale);
  border: 2px solid var(--teal);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
  font-family: var(--font-display);
  font-size: 20px;
  color: var(--teal);
  background: var(--white);
  position: relative;
  z-index: 1;
}

.process-step h4 {
  font-size: 15px;
  font-weight: 700;
  color: var(--text-head);
  margin-bottom: 8px;
}

.process-step p {
  font-size: 13px;
  color: var(--gray-dark);
  line-height: 1.6;
}

/* ========================
   SERVICES PAGE
======================== */
.page-hero {
  padding: 140px 0 80px;
  background: var(--navy);
  position: relative;
  overflow: hidden;
}

.page-hero::before {
  content: '';
  position: absolute;
  top: -80px;
  right: -80px;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(14,124,134,0.2) 0%, transparent 70%);
}

.page-hero::after {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,0.02) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.02) 1px, transparent 1px);
  background-size: 60px 60px;
}

.page-hero-content {
  position: relative;
  z-index: 1;
  max-width: 680px;
}

.page-hero h1 {
  font-family: var(--font-display);
  font-size: clamp(32px, 5vw, 52px);
  color: var(--white);
  margin-bottom: 20px;
  line-height: 1.15;
}

.page-hero p {
  font-size: 18px;
  color: rgba(255,255,255,0.72);
  line-height: 1.75;
}

.service-section {
  padding: 80px 0;
}

.service-section:nth-child(even) {
  background: var(--off-white);
}

.service-section-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: start;
}

.service-section-inner.reverse {
  direction: rtl;
}

.service-section-inner.reverse > * {
  direction: ltr;
}

.service-content h2 {
  font-family: var(--font-display);
  font-size: clamp(26px, 3.5vw, 38px);
  color: var(--text-head);
  margin-bottom: 20px;
  line-height: 1.2;
}

.service-content p {
  font-size: 16px;
  color: var(--gray-dark);
  line-height: 1.8;
  margin-bottom: 16px;
}

.service-checklist {
  margin: 28px 0;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.service-checklist li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 14px;
  color: var(--text-body);
  line-height: 1.5;
}

.service-checklist li::before {
  content: '';
  width: 18px;
  height: 18px;
  background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 20 20' fill='%230E7C86'%3E%3Cpath fill-rule='evenodd' d='M10 18a8 8 0 100-16 8 8 0 000 16zm3.857-9.809a.75.75 0 00-1.214-.882l-3.483 4.79-1.88-1.88a.75.75 0 10-1.06 1.061l2.5 2.5a.75.75 0 001.137-.089l4-5.5z'/%3E%3C/svg%3E") center/contain no-repeat;
  flex-shrink: 0;
  margin-top: 2px;
}

.service-visual-panel {
  background: var(--navy);
  border-radius: var(--radius-xl);
  padding: 40px;
  position: relative;
  overflow: hidden;
}

.service-visual-panel::before {
  content: '';
  position: absolute;
  top: -60px;
  right: -60px;
  width: 240px;
  height: 240px;
  background: radial-gradient(circle, rgba(14,124,134,0.35) 0%, transparent 70%);
}

.service-visual-panel h3 {
  font-family: var(--font-display);
  font-size: 16px;
  color: rgba(255,255,255,0.6);
  margin-bottom: 24px;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  position: relative;
  z-index: 1;
}

.specialty-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  position: relative;
  z-index: 1;
}

.specialty-pill {
  background: rgba(255,255,255,0.07);
  border: 1px solid rgba(255,255,255,0.14);
  border-radius: 100px;
  padding: 8px 16px;
  font-size: 13px;
  font-weight: 500;
  color: rgba(255,255,255,0.8);
  transition: var(--transition);
}

.specialty-pill:hover {
  background: rgba(14,124,134,0.3);
  border-color: var(--teal);
  color: var(--white);
}

.stats-visual {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  position: relative;
  z-index: 1;
  margin-top: 24px;
}

.stat-box {
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: var(--radius-md);
  padding: 20px;
  text-align: center;
}

.stat-box strong {
  display: block;
  font-family: var(--font-display);
  font-size: 28px;
  color: var(--teal-light);
  margin-bottom: 4px;
}

.stat-box span {
  font-size: 12px;
  color: rgba(255,255,255,0.5);
}

/* ========================
   ABOUT PAGE
======================== */
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.about-image-wrap {
  position: relative;
}

.about-image-card {
  background: var(--teal-pale);
  border-radius: var(--radius-xl);
  padding: 48px;
  position: relative;
  overflow: hidden;
}

.about-image-card::before {
  content: '';
  position: absolute;
  bottom: -40px;
  right: -40px;
  width: 200px;
  height: 200px;
  background: radial-gradient(circle, rgba(14,124,134,0.15) 0%, transparent 70%);
}

.about-initials {
  width: 80px;
  height: 80px;
  background: var(--navy);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-size: 28px;
  color: var(--white);
  margin-bottom: 20px;
}

.about-image-card h3 {
  font-family: var(--font-display);
  font-size: 22px;
  color: var(--text-head);
  margin-bottom: 4px;
}

.about-image-card .role {
  font-size: 14px;
  font-weight: 600;
  color: var(--teal);
  margin-bottom: 16px;
}

.about-image-card p {
  font-size: 14px;
  color: var(--gray-dark);
  line-height: 1.7;
}

.about-float-badge {
  position: absolute;
  background: var(--navy);
  color: var(--white);
  border-radius: var(--radius-md);
  padding: 14px 18px;
  bottom: -20px;
  right: -20px;
  text-align: center;
  box-shadow: var(--shadow-md);
}

.about-float-badge strong {
  display: block;
  font-family: var(--font-display);
  font-size: 22px;
  color: var(--teal-light);
}

.about-float-badge span {
  font-size: 11px;
  color: rgba(255,255,255,0.6);
}

.about-content p {
  font-size: 16px;
  color: var(--gray-dark);
  line-height: 1.85;
  margin-bottom: 16px;
}

.values-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
  margin-top: 32px;
}

.value-item {
  display: flex;
  gap: 14px;
  align-items: flex-start;
}

.value-dot {
  width: 10px;
  height: 10px;
  background: var(--teal);
  border-radius: 50%;
  margin-top: 7px;
  flex-shrink: 0;
}

.value-item h4 {
  font-size: 14px;
  font-weight: 700;
  color: var(--text-head);
  margin-bottom: 4px;
}

.value-item p {
  font-size: 13px;
  color: var(--gray-dark) !important;
  margin-bottom: 0 !important;
}

.mission-vision-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
}

.mv-card {
  border-radius: var(--radius-lg);
  padding: 40px;
  position: relative;
  overflow: hidden;
}

.mv-card--mission {
  background: var(--navy);
  color: var(--white);
}

.mv-card--vision {
  background: var(--teal-pale);
}

.mv-card-label {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--teal-light);
  margin-bottom: 16px;
}

.mv-card--vision .mv-card-label {
  color: var(--teal);
}

.mv-card h3 {
  font-family: var(--font-display);
  font-size: 24px;
  margin-bottom: 14px;
  color: var(--white);
}

.mv-card--vision h3 {
  color: var(--text-head);
}

.mv-card p {
  font-size: 15px;
  line-height: 1.8;
  color: rgba(255,255,255,0.72);
}

.mv-card--vision p {
  color: var(--gray-dark);
}

/* Team Section */
.team-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}

.team-card {
  background: var(--white);
  border: 1px solid var(--gray-light);
  border-radius: var(--radius-md);
  overflow: hidden;
  transition: var(--transition);
}

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

.team-card-header {
  background: var(--navy);
  padding: 32px;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.team-card-header::before {
  content: '';
  position: absolute;
  bottom: -30px;
  left: 50%;
  transform: translateX(-50%);
  width: 120px;
  height: 120px;
  background: radial-gradient(circle, rgba(14,124,134,0.3) 0%, transparent 70%);
}

.team-avatar {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--teal), var(--accent));
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 16px;
  font-family: var(--font-display);
  font-size: 28px;
  color: var(--white);
  position: relative;
  z-index: 1;
}

.team-card-header h3 {
  font-family: var(--font-display);
  font-size: 19px;
  color: var(--white);
  margin-bottom: 4px;
}

.team-role {
  font-size: 12px;
  font-weight: 600;
  color: var(--teal-light);
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.team-card-body {
  padding: 24px;
}

.team-card-body p {
  font-size: 14px;
  color: var(--gray-dark);
  line-height: 1.7;
  margin-bottom: 16px;
}

.team-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
}

.team-tag {
  font-size: 11px;
  font-weight: 600;
  color: var(--teal);
  background: var(--teal-pale);
  padding: 4px 10px;
  border-radius: 100px;
}

/* ========================
   CONTACT PAGE
======================== */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 64px;
  align-items: start;
}

.contact-info h2 {
  font-family: var(--font-display);
  font-size: clamp(26px, 3vw, 38px);
  color: var(--white);
  margin-bottom: 16px;
}

.contact-info p {
  font-size: 16px;
  color: rgba(255,255,255,0.7);
  line-height: 1.8;
  margin-bottom: 36px;
}

.contact-methods {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.contact-method {
  display: flex;
  align-items: center;
  gap: 16px;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: var(--radius-md);
  padding: 18px 20px;
  transition: var(--transition);
}

.contact-method:hover {
  border-color: rgba(14,124,134,0.4);
  background: rgba(14,124,134,0.1);
}

.contact-method-icon {
  width: 44px;
  height: 44px;
  background: rgba(14,124,134,0.2);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.contact-method-icon svg {
  width: 20px;
  height: 20px;
  color: var(--teal-light);
}

.contact-method-text strong {
  display: block;
  font-size: 13px;
  font-weight: 600;
  color: rgba(255,255,255,0.55);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 2px;
}

.contact-method-text a,
.contact-method-text span {
  font-size: 15px;
  color: var(--white);
  font-weight: 500;
}

.contact-method-text a:hover {
  color: var(--teal-light);
}

/* Contact Form */
.contact-form-wrap {
  background: var(--white);
  border-radius: var(--radius-xl);
  padding: 48px;
  box-shadow: var(--shadow-lg);
}

.contact-form-wrap h3 {
  font-family: var(--font-display);
  font-size: 24px;
  color: var(--text-head);
  margin-bottom: 6px;
}

.contact-form-wrap p {
  font-size: 14px;
  color: var(--gray-dark);
  margin-bottom: 32px;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.form-group {
  margin-bottom: 20px;
}

.form-group label {
  display: block;
  font-size: 13px;
  font-weight: 600;
  color: var(--text-head);
  margin-bottom: 7px;
  letter-spacing: 0.02em;
}

.form-group input,
.form-group textarea,
.form-group select {
  width: 100%;
  padding: 12px 16px;
  background: var(--off-white);
  border: 1.5px solid var(--gray-light);
  border-radius: var(--radius-sm);
  font-family: var(--font-body);
  font-size: 15px;
  color: var(--text-body);
  transition: var(--transition);
  outline: none;
  resize: vertical;
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
  border-color: var(--teal);
  background: var(--white);
  box-shadow: 0 0 0 3px rgba(14,124,134,0.1);
}

.form-group textarea {
  min-height: 120px;
}

.form-group.error input,
.form-group.error textarea {
  border-color: #E53E3E;
}

.form-error-msg {
  font-size: 12px;
  color: #E53E3E;
  margin-top: 5px;
  display: none;
}

.form-group.error .form-error-msg {
  display: block;
}

.form-submit-btn {
  width: 100%;
  justify-content: center;
}

.form-success {
  display: none;
  text-align: center;
  padding: 32px;
}

.form-success.show { display: block; }

.form-success-icon {
  width: 64px;
  height: 64px;
  background: #E6F9F4;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
}

.form-success-icon svg {
  width: 32px;
  height: 32px;
  color: #38A169;
}

.form-success h4 {
  font-family: var(--font-display);
  font-size: 22px;
  color: var(--text-head);
  margin-bottom: 10px;
}

.form-success p {
  font-size: 15px;
  color: var(--gray-dark);
}

/* ========================
   FOOTER
======================== */
.footer {
  background: #071426;
  padding: 72px 0 0;
  color: rgba(255,255,255,0.65);
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.5fr;
  gap: 48px;
  padding-bottom: 56px;
}

.footer-brand p {
  font-size: 14px;
  line-height: 1.8;
  margin-top: 16px;
  max-width: 280px;
}

.footer-logo .logo-text strong {
  color: var(--white);
}

.footer-col h4 {
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--white);
  margin-bottom: 20px;
}

.footer-col ul {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.footer-col ul li a {
  font-size: 14px;
  color: rgba(255,255,255,0.55);
  transition: var(--transition);
}

.footer-col ul li a:hover {
  color: var(--teal-light);
}

.footer-contact-item {
  display: flex;
  gap: 10px;
  align-items: flex-start;
  margin-bottom: 14px;
}

.footer-contact-item svg {
  width: 16px;
  height: 16px;
  color: var(--teal-light);
  flex-shrink: 0;
  margin-top: 2px;
}

.footer-contact-item span,
.footer-contact-item a {
  font-size: 14px;
  color: rgba(255,255,255,0.55);
  line-height: 1.5;
}

.footer-contact-item a:hover {
  color: var(--teal-light);
}

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.08);
  padding: 24px 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
}

.footer-bottom p {
  font-size: 13px;
  color: rgba(255,255,255,0.35);
}

.footer-bottom-links {
  display: flex;
  gap: 24px;
}

.footer-bottom-links a {
  font-size: 13px;
  color: rgba(255,255,255,0.35);
  transition: var(--transition);
}

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

.hipaa-seal {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 12px;
  font-weight: 700;
  color: var(--teal-light);
  letter-spacing: 0.06em;
  background: rgba(14,124,134,0.15);
  border: 1px solid rgba(14,124,134,0.3);
  padding: 5px 12px;
  border-radius: 100px;
  margin-top: 16px;
  display: inline-flex;
}

.hipaa-seal svg {
  width: 14px;
  height: 14px;
}

/* ========================
   ANIMATIONS
======================== */
.fade-in {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.65s ease, transform 0.65s ease;
}

.fade-in.visible {
  opacity: 1;
  transform: translateY(0);
}

.fade-in-delay-1 { transition-delay: 0.1s; }
.fade-in-delay-2 { transition-delay: 0.2s; }
.fade-in-delay-3 { transition-delay: 0.3s; }
.fade-in-delay-4 { transition-delay: 0.4s; }
.fade-in-delay-5 { transition-delay: 0.5s; }

/* ========================
   RESPONSIVE
======================== */
@media (max-width: 1024px) {
  .services-grid { grid-template-columns: repeat(2, 1fr); }
  .compliance-grid { grid-template-columns: repeat(2, 1fr); }
  .hero-inner { gap: 40px; }
  .why-grid { gap: 40px; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 36px; }
  .process-steps { grid-template-columns: repeat(2, 1fr); }
  .process-steps::before { display: none; }
  .team-grid { grid-template-columns: repeat(2, 1fr); }
  .service-section-inner { grid-template-columns: 1fr; gap: 40px; }
  .service-section-inner.reverse { direction: ltr; }
  .mission-vision-grid { grid-template-columns: 1fr; }
}

@media (max-width: 768px) {
  .section { padding: 64px 0; }
  .nav-list { display: none; }
  .hamburger { display: flex; }
  .hero { padding-top: 120px; padding-bottom: 64px; }
  .hero-inner { grid-template-columns: 1fr; gap: 48px; }
  .hero-visual { display: none; }
  .hero-stats { grid-template-columns: repeat(3, 1fr); }
  .services-grid { grid-template-columns: 1fr; }
  .compliance-grid { grid-template-columns: 1fr; }
  .why-grid { grid-template-columns: 1fr; }
  .why-features { grid-template-columns: 1fr; }
  .about-grid { grid-template-columns: 1fr; }
  .contact-grid { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }
  .contact-form-wrap { padding: 28px; }
  .footer-grid { grid-template-columns: 1fr; gap: 28px; }
  .footer-bottom { flex-direction: column; text-align: center; }
  .team-grid { grid-template-columns: 1fr; }
  .values-grid { grid-template-columns: 1fr; }
  .trust-bar-inner { gap: 20px; }
  .hero-actions { flex-direction: column; align-items: flex-start; }
  .cta-band-actions { flex-direction: column; align-items: center; }

  /* Logo image responsive */
  .logo-img        { height: 38px; }
  .logo-img--footer { height: 42px; }
}

@media (max-width: 480px) {
  .hero-stats { grid-template-columns: 1fr; text-align: left; gap: 12px; }
  .hero-stat { text-align: left; display: flex; align-items: center; gap: 12px; }
  .hero-stat-num { font-size: 26px; }
}

/* ========================
   BREADCRUMB
======================== */
.breadcrumb {
  display: flex;
  gap: 8px;
  align-items: center;
  margin-bottom: 20px;
}

.breadcrumb a {
  font-size: 13px;
  color: rgba(255,255,255,0.5);
  transition: var(--transition);
}

.breadcrumb a:hover { color: var(--teal-light); }

.breadcrumb span {
  font-size: 13px;
  color: rgba(255,255,255,0.3);
}

.breadcrumb .current {
  font-size: 13px;
  color: var(--teal-light);
}

/* Scroll to top */
.scroll-top {
  position: fixed;
  bottom: 32px;
  right: 32px;
  width: 44px;
  height: 44px;
  background: var(--teal);
  color: var(--white);
  border: none;
  border-radius: 50%;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: var(--shadow-md);
  opacity: 0;
  pointer-events: none;
  transition: var(--transition);
  z-index: 999;
}

.scroll-top.visible {
  opacity: 1;
  pointer-events: auto;
}

.scroll-top:hover {
  background: var(--navy);
  transform: translateY(-3px);
}

.scroll-top svg {
  width: 18px;
  height: 18px;
}

/* Page loader line */
.page-progress {
  position: fixed;
  top: 0;
  left: 0;
  height: 2px;
  background: linear-gradient(90deg, var(--teal), var(--accent));
  z-index: 9999;
  width: 0;
  transition: width 0.3s ease;
}
