/* ============================================================
   DASTCARE — Global Stylesheet
   File: /style.css
   ============================================================ */

:root {
  --teal: #5AC6F1;
  --teal-rgb: 90, 198, 241;
  --teal-deep: #3AB8EC;
  --teal-dark: #2AA3D6;
  --navy: #0E143C;
  --navy-rgb: 14, 20, 60;
  --aqua: #7DD4F4;
  --aqua-rgb: 125, 212, 244;
  --charcoal: #222222;
  --grey: #C6CCD8;
  --grey-rgb: 198, 204, 216;
  --lightgrey: #F6F7FB;
  --white: #FFFFFF;
  --red: #B3261E;
  --green: #2E7D32;
  --amber: #F4A300;
  --font: 'Poppins', -apple-system, sans-serif;
  --max-w: 1200px;
  --card-radius: 16px;
  --transition: cubic-bezier(0.4, 0, 0.2, 1);
  --side-pad: clamp(24px, 5vw, 80px);
}

*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  font-family: var(--font);
  color: var(--charcoal);
  background: var(--white);
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

/* ============================================================
   SCROLL REVEAL
   ============================================================ */
.reveal { opacity: 0; transform: translateY(30px); transition: all 0.7s var(--transition); }
.reveal.vis { opacity: 1; transform: translateY(0); }
.reveal-d1 { transition-delay: 0.1s; }
.reveal-d2 { transition-delay: 0.2s; }
.reveal-d3 { transition-delay: 0.3s; }
.reveal-d4 { transition-delay: 0.4s; }
.reveal-d5 { transition-delay: 0.5s; }
.reveal-d6 { transition-delay: 0.6s; }

/* ============================================================
   NAV — Shared base styles
   ============================================================ */
.nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
  padding: 18px var(--side-pad);
  display: flex; align-items: center; justify-content: space-between;
  transition: all 0.4s var(--transition);
}

/* Scrolled state — used on homepage via JS */
.nav.scrolled {
  background: rgba(255,255,255,0.96);
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
  box-shadow: 0 1px 0 rgba(var(--grey-rgb),0.5);
  padding-top: 12px;
  padding-bottom: 12px;
}

/* Always-visible state — used on inner pages */
.nav.nav-solid {
  background: rgba(255,255,255,0.96);
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
  box-shadow: 0 1px 0 rgba(var(--grey-rgb),0.5);
}

.nav-brand { display: flex; align-items: center; gap: 10px; text-decoration: none; }
.nav-logo-img { height: 48px; width: auto; display: block; }
.nav-links { display: flex; align-items: center; gap: 8px; list-style: none; }
.nav-links a {
  font-size: 11px; font-weight: 500; letter-spacing: 1.5px; text-transform: uppercase;
  color: rgba(var(--navy-rgb),0.75); text-decoration: none;
  padding: 8px 14px; border-radius: 4px; transition: all 0.3s;
}
.nav-links a:hover { color: var(--navy); background: rgba(var(--teal-rgb),0.06); }
.nav-links a.active { color: var(--navy); background: rgba(var(--teal-rgb),0.1); }
.nav-links .nav-cta {
  background: var(--teal); color: var(--navy) !important;
  padding: 10px 24px; margin-left: 8px; letter-spacing: 2px; font-weight: 600;
}
.nav-links .nav-cta:hover { background: var(--navy); color: var(--white) !important; }
.nav-toggle { display: none; background: none; border: none; cursor: pointer; padding: 8px; }
.nav-toggle span { display: block; width: 22px; height: 2px; background: var(--navy); margin: 5px 0; transition: all 0.3s; }

/* ============================================================
   PAGE HERO (internal pages — shorter than homepage)
   ============================================================ */
.page-hero {
  position: relative; min-height: 420px;
  display: flex; align-items: center; justify-content: center;
  padding: 140px var(--side-pad) 80px;
  background: linear-gradient(145deg, #0A0E2E 0%, #0E143C 40%, #152055 100%);
  overflow: hidden; text-align: center;
}
.page-hero::before {
  content: ''; position: absolute; inset: 0;
  background:
    radial-gradient(ellipse 70% 60% at 30% 20%, rgba(var(--teal-rgb),0.18) 0%, transparent 55%),
    radial-gradient(ellipse 50% 50% at 80% 70%, rgba(var(--teal-rgb),0.12) 0%, transparent 55%);
}
.page-hero-bg {
  position: absolute; font-family: var(--font); font-weight: 700;
  color: rgba(255,255,255,0.03); user-select: none; line-height: 1;
}
.page-hero-inner { max-width: 880px; position: relative; z-index: 2; }
.page-hero-badge {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 8px 20px; border-radius: 40px;
  background: rgba(255,255,255,0.1); backdrop-filter: blur(8px);
  border: 1px solid rgba(255,255,255,0.15);
  font-size: 11px; font-weight: 600; letter-spacing: 3px; text-transform: uppercase;
  color: rgba(255,255,255,0.85); margin-bottom: 28px;
  opacity: 0; animation: fadeUp 0.8s ease forwards 0.3s;
}
.page-hero-badge::before {
  content: ''; width: 6px; height: 6px; border-radius: 50%;
  background: var(--teal); animation: pulse 2s ease infinite;
}
.page-hero-title {
  font-size: clamp(32px, 4.5vw, 56px); font-weight: 700;
  color: var(--white); line-height: 1.1; margin-bottom: 20px;
  opacity: 0; animation: fadeUp 0.8s ease forwards 0.5s;
}
.page-hero-title em { font-style: italic; color: var(--teal); }
.page-hero-line {
  width: 60px; height: 2px; background: var(--teal); margin: 0 auto 24px;
  opacity: 0; animation: fadeUp 0.8s ease forwards 0.65s;
}
.page-hero-desc {
  font-size: 16px; font-weight: 300; color: rgba(255,255,255,0.9);
  line-height: 1.75; max-width: 560px; margin: 0 auto;
  opacity: 0; animation: fadeUp 0.8s ease forwards 0.75s;
}

/* ============================================================
   HOMEPAGE HERO
   ============================================================ */
.hero {
  position: relative; min-height: 100vh;
  display: flex; align-items: center; justify-content: center;
  padding: 140px var(--side-pad) 80px;
  background: linear-gradient(145deg, #0A0E2E 0%, #0E143C 40%, #152055 100%);
  overflow: hidden;
}
.hero::before {
  content: ''; position: absolute; inset: 0;
  background:
    radial-gradient(ellipse 70% 60% at 30% 20%, rgba(var(--teal-rgb),0.18) 0%, transparent 55%),
    radial-gradient(ellipse 50% 50% at 80% 70%, rgba(var(--teal-rgb),0.12) 0%, transparent 55%),
    radial-gradient(ellipse 80% 50% at 20% 80%, rgba(var(--navy-rgb),0.4) 0%, transparent 70%);
}
.hero-bg-letter {
  position: absolute; font-family: var(--font); font-weight: 700;
  color: rgba(255,255,255,0.03); user-select: none; line-height: 1;
}
.hero-inner { max-width: 880px; text-align: center; position: relative; z-index: 2; }
.hero-badge {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 8px 20px; border-radius: 40px;
  background: rgba(255,255,255,0.1); backdrop-filter: blur(8px);
  border: 1px solid rgba(255,255,255,0.15);
  font-size: 11px; font-weight: 600; letter-spacing: 3px; text-transform: uppercase;
  color: rgba(255,255,255,0.85); margin-bottom: 36px;
  opacity: 0; animation: fadeUp 0.8s ease forwards 0.3s;
}
.hero-badge::before {
  content: ''; width: 6px; height: 6px; border-radius: 50%;
  background: var(--teal); animation: pulse 2s ease infinite;
}
.hero-title {
  font-size: clamp(38px, 5.5vw, 64px); font-weight: 700;
  color: var(--white); line-height: 1.08; margin-bottom: 24px;
  opacity: 0; animation: fadeUp 0.8s ease forwards 0.5s;
}
.hero-title em { font-style: italic; color: var(--teal); }
.hero-line {
  width: 60px; height: 2px; background: var(--teal); margin: 0 auto 28px;
  opacity: 0; animation: fadeUp 0.8s ease forwards 0.65s;
}
.hero-desc {
  font-size: 17px; font-weight: 300; color: rgba(255,255,255,0.92);
  line-height: 1.75; max-width: 580px; margin: 0 auto 40px;
  opacity: 0; animation: fadeUp 0.8s ease forwards 0.75s;
}
.hero-ctas {
  display: flex; justify-content: center; gap: 16px; flex-wrap: wrap;
  opacity: 0; animation: fadeUp 0.8s ease forwards 0.9s;
}
.hero-stats {
  display: flex; justify-content: center; gap: 48px; margin-top: 56px;
  opacity: 0; animation: fadeUp 0.8s ease forwards 1.1s;
}
.hero-stat-val { font-size: 32px; font-weight: 700; color: var(--white); }
.hero-stat-lbl {
  font-size: 10px; font-weight: 600; letter-spacing: 2px; text-transform: uppercase;
  color: rgba(255,255,255,0.85); margin-top: 4px;
}
.scroll-cue {
  position: absolute; bottom: 32px; left: 50%; transform: translateX(-50%);
  display: flex; flex-direction: column; align-items: center; gap: 8px;
  opacity: 0; animation: fadeUp 0.8s ease forwards 1.4s;
}
.scroll-cue span { font-size: 9px; font-weight: 600; letter-spacing: 3px; text-transform: uppercase; color: rgba(255,255,255,0.5); }
.scroll-cue .scroll-line {
  width: 1px; height: 36px;
  background: linear-gradient(to bottom, var(--teal), transparent);
  animation: scrollPulse 2s ease-in-out infinite;
}

/* ============================================================
   KEYFRAMES
   ============================================================ */
@keyframes fadeUp { from { opacity: 0; transform: translateY(28px); } to { opacity: 1; transform: translateY(0); } }
@keyframes pulse { 0%, 100% { opacity: 1; } 50% { opacity: 0.4; } }
@keyframes scrollPulse { 0%, 100% { opacity: 0.3; transform: scaleY(0.7); } 50% { opacity: 1; transform: scaleY(1); } }

/* ============================================================
   TRUST BAR
   ============================================================ */
.trust-bar {
  background: var(--navy); padding: 32px var(--side-pad);
  display: flex; align-items: center; justify-content: center; gap: 48px; flex-wrap: wrap;
}
.trust-item {
  font-size: 11px; font-weight: 500; letter-spacing: 2px; text-transform: uppercase;
  color: rgba(255,255,255,0.9);
  display: flex; align-items: center; gap: 8px;
}
.trust-item::before { content: ''; width: 4px; height: 4px; border-radius: 50%; background: var(--teal); }

/* ============================================================
   SECTION FRAMEWORK
   ============================================================ */
.section {
  position: relative; z-index: 1;
  padding: clamp(80px,10vw,120px) var(--side-pad);
  overflow: hidden;
}
.section-inner { max-width: var(--max-w); margin: 0 auto; position: relative; z-index: 2; }
.section-num {
  font-size: 11px; font-weight: 600; letter-spacing: 5px; text-transform: uppercase;
  color: var(--navy); margin-bottom: 12px; opacity: 0.6;
}
.section-title {
  font-size: clamp(30px,4vw,48px); font-weight: 700;
  color: var(--navy); line-height: 1.15; margin-bottom: 8px;
}
.section-title em { font-style: italic; color: var(--teal); }
.section-divider { width: 60px; height: 2px; background: var(--teal); margin-bottom: 40px; }
.section-desc {
  font-size: 16px; font-weight: 300; color: rgba(var(--navy-rgb),0.8);
  line-height: 1.75; max-width: 680px; margin-bottom: 48px;
}

/* ============================================================
   BUTTONS
   ============================================================ */
.btn-primary {
  display: inline-flex; align-items: center; gap: 10px;
  padding: 14px 36px; background: var(--navy); color: var(--white);
  font-size: 12px; font-weight: 600; letter-spacing: 2px; text-transform: uppercase;
  text-decoration: none; border-radius: 4px; border: none; cursor: pointer;
  transition: all 0.3s var(--transition); font-family: var(--font);
}
.btn-primary:hover { background: var(--teal); color: var(--navy); transform: translateY(-2px); box-shadow: 0 12px 36px rgba(var(--navy-rgb),0.3); }
.btn-primary svg { width: 14px; height: 14px; stroke: currentColor; stroke-width: 2; fill: none; }

/* Hero-specific primary button override */
.hero .btn-primary { background: var(--teal); color: var(--navy); }
.hero .btn-primary:hover { background: var(--white); color: var(--navy); }

.btn-ghost {
  display: inline-flex; align-items: center; gap: 10px;
  padding: 14px 36px; background: transparent; color: var(--white);
  font-size: 12px; font-weight: 600; letter-spacing: 2px; text-transform: uppercase;
  text-decoration: none; border-radius: 4px; border: 1px solid rgba(255,255,255,0.25);
  transition: all 0.3s var(--transition); font-family: var(--font);
}
.btn-ghost:hover { background: rgba(255,255,255,0.1); border-color: rgba(255,255,255,0.5); }

/* ============================================================
   KEYWORDS
   ============================================================ */
.keyword {
  padding: 6px 16px; background: rgba(var(--teal-rgb),0.08);
  border-radius: 4px; font-size: 11px; font-weight: 600;
  letter-spacing: 1.5px; text-transform: uppercase; color: var(--teal);
}

/* ============================================================
   VALUE CARDS
   ============================================================ */
.value-card { background: var(--teal); padding: 28px 20px; text-align: center; transition: all 0.4s var(--transition); }
.value-card:hover { background: var(--navy); }
.value-card .v-name { font-size: 18px; font-weight: 600; color: var(--navy); transition: color 0.3s; }
.value-card:hover .v-name { color: var(--white); }
.value-card .v-sub { font-size: 11px; font-weight: 300; color: rgba(var(--navy-rgb),0.75); margin-top: 4px; transition: color 0.3s; }
.value-card:hover .v-sub { color: rgba(255,255,255,0.5); }

/* ============================================================
   SERVICE CARDS
   ============================================================ */
.services-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 24px; }
.service-card {
  position: relative; background: var(--white);
  border: 1px solid rgba(var(--grey-rgb),0.35);
  border-radius: var(--card-radius); padding: 40px 28px 36px;
  overflow: hidden; transition: all 0.5s var(--transition);
}
.service-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 60px rgba(var(--navy-rgb),0.08), 0 4px 16px rgba(var(--teal-rgb),0.06);
  border-color: rgba(var(--teal-rgb),0.35);
}
.service-card-bg {
  position: absolute; top: 50%; left: 50%; transform: translate(-50%,-50%);
  font-weight: 700; font-size: 200px; line-height: 1;
  color: var(--teal); opacity: 0.03; user-select: none; transition: all 0.5s ease;
}
.service-card:hover .service-card-bg { opacity: 0.05; transform: translate(-50%,-50%) scale(1.05); }
.service-icon {
  display: inline-flex; align-items: center; justify-content: center;
  width: 56px; height: 56px; border-radius: 50%;
  background: var(--teal); margin-bottom: 20px;
  position: relative; z-index: 1; transition: all 0.4s ease;
}
.service-card:hover .service-icon { background: var(--navy); transform: scale(1.06); }
.service-icon svg { width: 24px; height: 24px; stroke: var(--white); stroke-width: 2; fill: none; stroke-linecap: round; stroke-linejoin: round; }
.service-title { font-size: 20px; font-weight: 600; color: var(--navy); margin-bottom: 6px; position: relative; z-index: 1; }
.service-sub { font-size: 11px; font-weight: 600; letter-spacing: 2px; text-transform: uppercase; color: var(--teal); margin-bottom: 14px; position: relative; z-index: 1; }
.service-line { width: 32px; height: 1.5px; background: rgba(var(--teal-rgb),0.35); margin-bottom: 14px; position: relative; z-index: 1; transition: all 0.4s ease; }
.service-card:hover .service-line { width: 56px; background: var(--teal); }
.service-desc { font-size: 14px; font-weight: 300; color: rgba(var(--navy-rgb),0.82); line-height: 1.7; position: relative; z-index: 1; }

/* Service detail list (used on services page) */
.service-detail-list { margin-top: 16px; position: relative; z-index: 1; }
.service-detail-item { display: flex; align-items: flex-start; gap: 10px; margin-bottom: 10px; }
.service-detail-dot { width: 6px; height: 6px; border-radius: 50%; background: var(--teal); margin-top: 7px; flex-shrink: 0; }
.service-detail-text { font-size: 13px; font-weight: 400; color: rgba(var(--navy-rgb),0.7); line-height: 1.6; }

/* ============================================================
   RCM CARDS
   ============================================================ */
.rcm-cards { display: grid; grid-template-columns: repeat(3,1fr); gap: 28px; }
.rcm-card {
  position: relative; background: var(--white);
  border: 1px solid rgba(var(--grey-rgb),0.35);
  border-radius: var(--card-radius); padding: 44px 32px 40px;
  text-align: center; overflow: hidden; transition: all 0.5s var(--transition);
}
.rcm-card:hover { transform: translateY(-6px); box-shadow: 0 20px 60px rgba(var(--navy-rgb),0.08); border-color: rgba(var(--teal-rgb),0.4); }
.rcm-card-bg { position: absolute; top: 50%; left: 50%; transform: translate(-50%,-50%); font-weight: 700; font-size: 220px; line-height: 1; color: var(--teal); opacity: 0.03; user-select: none; }
.rcm-icon { display: inline-flex; align-items: center; justify-content: center; width: 60px; height: 60px; border-radius: 50%; background: var(--teal); margin-bottom: 20px; position: relative; z-index: 1; }
.rcm-icon span { font-size: 26px; font-weight: 700; color: var(--navy); }
.rcm-title { font-size: 20px; font-weight: 600; color: var(--navy); margin-bottom: 4px; position: relative; z-index: 1; }
.rcm-full { font-size: 10px; font-weight: 600; letter-spacing: 3px; text-transform: uppercase; color: var(--navy); opacity: 0.5; margin-bottom: 14px; position: relative; z-index: 1; }
.rcm-line { width: 32px; height: 1.5px; background: rgba(var(--teal-rgb),0.35); margin: 0 auto 14px; position: relative; z-index: 1; }
.rcm-desc { font-size: 14px; font-weight: 300; color: rgba(var(--navy-rgb),0.82); line-height: 1.7; position: relative; z-index: 1; }
.rcm-metric { margin-top: 20px; padding-top: 18px; border-top: 1px solid rgba(var(--grey-rgb),0.3); position: relative; z-index: 1; }
.rcm-metric-val { font-size: 32px; font-weight: 700; color: var(--navy); }
.rcm-metric-lbl { font-size: 10px; font-weight: 500; letter-spacing: 2px; text-transform: uppercase; color: rgba(var(--navy-rgb),0.65); margin-top: 2px; }

/* ============================================================
   PROCESS STEPS (homepage / overview)
   ============================================================ */
.process-steps { display: grid; grid-template-columns: repeat(4,1fr); gap: 0; position: relative; }
.process-steps::before { content: ''; position: absolute; top: 36px; left: 10%; right: 10%; height: 2px; background: rgba(var(--teal-rgb),0.15); }
.process-step { text-align: center; position: relative; padding: 0 16px; }
.step-num {
  display: inline-flex; align-items: center; justify-content: center;
  width: 72px; height: 72px; border-radius: 50%;
  background: var(--teal); color: var(--navy);
  font-size: 24px; font-weight: 700; margin-bottom: 20px;
  position: relative; z-index: 1; transition: all 0.4s var(--transition);
}
.process-step:hover .step-num { background: var(--navy); color: var(--white); transform: scale(1.08); }
.step-title { font-size: 16px; font-weight: 600; color: var(--navy); margin-bottom: 6px; }
.step-desc { font-size: 13px; font-weight: 300; color: rgba(var(--navy-rgb),0.75); line-height: 1.6; }

/* ============================================================
   PROCESS DETAILED (process page timeline)
   ============================================================ */
.process-detailed { display: flex; flex-direction: column; gap: 0; }
.process-detail-row { display: grid; grid-template-columns: 1fr 80px 1fr; align-items: flex-start; gap: 0; min-height: 200px; }
.process-detail-content { padding: 40px 32px; }
.process-detail-content h3 { font-size: 22px; font-weight: 600; color: var(--navy); margin-bottom: 8px; }
.process-detail-content .pd-sub { font-size: 11px; font-weight: 600; letter-spacing: 2px; text-transform: uppercase; color: var(--teal); margin-bottom: 14px; }
.process-detail-content p { font-size: 14px; font-weight: 300; color: rgba(var(--navy-rgb),0.82); line-height: 1.75; }
.process-detail-content .pd-details { margin-top: 16px; display: flex; flex-direction: column; gap: 8px; }
.process-detail-content .pd-detail-item { display: flex; align-items: flex-start; gap: 10px; }
.process-detail-content .pd-detail-item::before { content: ''; width: 6px; height: 6px; border-radius: 50%; background: var(--teal); margin-top: 7px; flex-shrink: 0; }
.process-detail-content .pd-detail-item span { font-size: 13px; font-weight: 400; color: rgba(var(--navy-rgb),0.7); line-height: 1.5; }
.process-timeline-center { display: flex; flex-direction: column; align-items: center; position: relative; }
.process-timeline-center::before { content: ''; position: absolute; top: 0; bottom: 0; left: 50%; width: 2px; background: rgba(var(--teal-rgb),0.2); transform: translateX(-50%); }
.process-timeline-num {
  width: 56px; height: 56px; border-radius: 50%; background: var(--teal);
  display: flex; align-items: center; justify-content: center;
  font-size: 20px; font-weight: 700; color: var(--navy);
  position: relative; z-index: 1; margin-top: 40px;
  transition: all 0.4s var(--transition);
}
.process-detail-row:hover .process-timeline-num { background: var(--navy); color: var(--white); transform: scale(1.1); }
.process-detail-empty { padding: 40px 32px; }
.process-detail-row:nth-child(even) .process-detail-content { order: 3; }
.process-detail-row:nth-child(even) .process-detail-empty { order: 1; }

/* ============================================================
   SPECIALTIES
   ============================================================ */
.specialties-wrap { display: flex; flex-wrap: wrap; gap: 8px; }
.spec-tag {
  padding: 10px 20px; background: var(--white);
  border: 1px solid rgba(var(--grey-rgb),0.3);
  border-radius: 6px; font-size: 13px; font-weight: 500; color: var(--navy);
  transition: all 0.3s var(--transition);
}
.spec-tag:hover { background: var(--teal); color: var(--navy); border-color: var(--teal); transform: translateY(-2px); }

/* Specialty category cards */
.spec-categories { display: grid; grid-template-columns: repeat(3,1fr); gap: 24px; margin-bottom: 48px; }
.spec-cat-card {
  background: var(--white); border: 1px solid rgba(var(--grey-rgb),0.35);
  border-radius: var(--card-radius); padding: 32px 24px; overflow: hidden;
  transition: all 0.5s var(--transition); position: relative;
}
.spec-cat-card:hover { transform: translateY(-4px); box-shadow: 0 16px 48px rgba(var(--navy-rgb),0.06); border-color: rgba(var(--teal-rgb),0.35); }
.spec-cat-icon { display: inline-flex; align-items: center; justify-content: center; width: 48px; height: 48px; border-radius: 50%; background: var(--teal); margin-bottom: 16px; }
.spec-cat-icon svg { width: 22px; height: 22px; stroke: var(--white); stroke-width: 2; fill: none; stroke-linecap: round; stroke-linejoin: round; }
.spec-cat-title { font-size: 18px; font-weight: 600; color: var(--navy); margin-bottom: 6px; }
.spec-cat-desc { font-size: 13px; font-weight: 300; color: rgba(var(--navy-rgb),0.75); line-height: 1.6; margin-bottom: 16px; }
.spec-cat-tags { display: flex; flex-wrap: wrap; gap: 6px; }
.spec-cat-tag { padding: 4px 12px; background: rgba(var(--teal-rgb),0.06); border-radius: 4px; font-size: 11px; font-weight: 500; color: var(--navy); }

/* ============================================================
   FAQ
   ============================================================ */
.faq-list { max-width: 720px; }
.faq-item { border-bottom: 1px solid rgba(var(--grey-rgb),0.3); padding: 20px 0; }
.faq-q { display: flex; align-items: center; justify-content: space-between; cursor: pointer; gap: 16px; }
.faq-q h4 { font-size: 16px; font-weight: 500; color: var(--navy); }
.faq-q .faq-icon { width: 28px; height: 28px; border-radius: 50%; background: rgba(var(--teal-rgb),0.08); display: flex; align-items: center; justify-content: center; font-size: 18px; color: var(--teal); flex-shrink: 0; transition: all 0.3s; }
.faq-item.open .faq-icon { background: var(--teal); color: var(--navy); transform: rotate(45deg); }
.faq-a { max-height: 0; overflow: hidden; transition: max-height 0.4s ease; }
.faq-a p { padding-top: 12px; font-size: 14px; font-weight: 300; color: rgba(var(--navy-rgb),0.85); line-height: 1.75; }

/* ============================================================
   CONTACT / FORM
   ============================================================ */
.contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 64px; align-items: flex-start; }
.contact-info { display: flex; flex-direction: column; gap: 32px; }
.contact-card {
  background: var(--white); border: 1px solid rgba(var(--grey-rgb),0.35);
  border-radius: var(--card-radius); padding: 28px 24px;
  display: flex; align-items: flex-start; gap: 16px; transition: all 0.4s var(--transition);
}
.contact-card:hover { border-color: rgba(var(--teal-rgb),0.4); box-shadow: 0 8px 32px rgba(var(--navy-rgb),0.04); }
.contact-card-icon { width: 48px; height: 48px; border-radius: 50%; background: var(--teal); display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.contact-card-icon svg { width: 22px; height: 22px; stroke: var(--white); stroke-width: 2; fill: none; stroke-linecap: round; stroke-linejoin: round; }
.contact-card h4 { font-size: 15px; font-weight: 600; color: var(--navy); margin-bottom: 4px; }
.contact-card p { font-size: 13px; font-weight: 300; color: rgba(var(--navy-rgb),0.75); line-height: 1.6; }
.contact-form { background: var(--white); border: 1px solid rgba(var(--grey-rgb),0.35); border-radius: var(--card-radius); padding: 40px 36px; }
.form-title { font-size: 22px; font-weight: 600; color: var(--navy); margin-bottom: 6px; }
.form-sub { font-size: 13px; font-weight: 300; color: rgba(var(--navy-rgb),0.65); margin-bottom: 28px; }
.form-group { margin-bottom: 20px; }
.form-label { display: block; font-size: 11px; font-weight: 600; letter-spacing: 2px; text-transform: uppercase; color: var(--navy); margin-bottom: 8px; }
.form-input, .form-textarea, .form-select { width: 100%; padding: 12px 16px; border: 1px solid rgba(var(--grey-rgb),0.4); border-radius: 6px; font-family: var(--font); font-size: 14px; font-weight: 400; color: var(--navy); background: var(--white); transition: all 0.3s; outline: none; }
.form-input:focus, .form-textarea:focus, .form-select:focus { border-color: var(--teal); box-shadow: 0 0 0 3px rgba(var(--teal-rgb),0.12); }
.form-textarea { resize: vertical; min-height: 120px; }
.form-select { cursor: pointer; appearance: none; background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 24 24' fill='none' stroke='%230E143C' stroke-width='2'%3E%3Cpath d='M6 9l6 6 6-6'/%3E%3C/svg%3E"); background-repeat: no-repeat; background-position: right 16px center; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.form-submit { width: 100%; padding: 14px 36px; background: var(--teal); color: var(--navy); font-size: 12px; font-weight: 600; letter-spacing: 2px; text-transform: uppercase; border: none; border-radius: 4px; cursor: pointer; font-family: var(--font); transition: all 0.3s var(--transition); }
.form-submit:hover { background: var(--navy); color: var(--white); transform: translateY(-2px); }

/* ============================================================
   METRICS BANNER
   ============================================================ */
.metrics-banner {
  background: linear-gradient(135deg, #F6F7FB 0%, #F6F7FB 50%, #F6F7FB 100%);
  padding: 64px var(--side-pad);
}
.metrics-banner .section-inner { display: flex; align-items: center; justify-content: space-between; gap: 32px; }
.metrics-grid { display: flex; gap: 48px; }
.metric-card { text-align: center; }
.metric-val { font-size: 42px; font-weight: 700; color: var(--navy); }
.metric-lbl { font-size: 11px; font-weight: 600; letter-spacing: 2px; text-transform: uppercase; color: rgba(var(--navy-rgb),0.75); margin-top: 4px; }
.metrics-text { max-width: 400px; }
.metrics-text h3 { font-size: 36px; font-weight: 700; color: var(--navy); margin-bottom: 8px; }
.metrics-text p { font-size: 14px; font-weight: 300; color: rgba(var(--navy-rgb),0.85); line-height: 1.7; }

/* ============================================================
   CTA SECTION
   ============================================================ */
.cta-section {
  background: linear-gradient(145deg, #2AA3D6 0%, #5AC6F1 50%, #3AB8EC 100%);
  padding: 100px var(--side-pad); text-align: center;
  position: relative; overflow: hidden;
}
.cta-section::before { content: ''; position: absolute; inset: 0; background: radial-gradient(ellipse 50% 60% at 50% 100%, rgba(var(--navy-rgb),0.15) 0%, transparent 70%); }
.cta-bg-letter { position: absolute; font-family: var(--font); font-weight: 700; color: rgba(255,255,255,0.03); user-select: none; line-height: 1; }
.cta-inner { position: relative; z-index: 2; }
.cta-label { font-size: 11px; font-weight: 600; letter-spacing: 5px; text-transform: uppercase; color: var(--navy); margin-bottom: 20px; }
.cta-title { font-size: clamp(26px,3.5vw,42px); font-weight: 700; color: var(--white); line-height: 1.2; margin-bottom: 16px; }
.cta-desc { font-size: 15px; font-weight: 300; color: rgba(255,255,255,0.9); line-height: 1.7; max-width: 500px; margin: 0 auto 36px; }
.cta-btn { display: inline-flex; align-items: center; gap: 10px; padding: 14px 36px; background: var(--navy); color: var(--white); font-size: 12px; font-weight: 600; letter-spacing: 2px; text-transform: uppercase; text-decoration: none; border-radius: 4px; transition: all 0.3s var(--transition); }
.cta-btn:hover { background: var(--white); color: var(--navy); transform: translateY(-2px); box-shadow: 0 12px 36px rgba(var(--navy-rgb),0.3); }
.cta-btn svg { width: 14px; height: 14px; stroke: currentColor; stroke-width: 2; fill: none; }

/* ============================================================
   ABOUT PAGE
   ============================================================ */
.about-story-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 56px; align-items: center; }
.about-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 48px; align-items: center; }
.about-story-text p { font-size: 15px; font-weight: 300; color: rgba(var(--navy-rgb),0.82); line-height: 1.8; margin-bottom: 20px; }
.about-story-text p strong { font-weight: 600; color: var(--navy); }
.about-text p { font-size: 15px; font-weight: 300; color: rgba(var(--navy-rgb),0.8); line-height: 1.75; margin-bottom: 20px; }
.about-keywords { display: flex; flex-wrap: wrap; gap: 8px; }
.about-values { display: grid; grid-template-columns: 1fr 1fr; gap: 2px; }
.about-values-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 2px; }
.about-visual {
  background: linear-gradient(145deg, #0A0E2E, #152055);
  border-radius: var(--card-radius); padding: 48px 36px; text-align: center;
  position: relative; overflow: hidden;
}
.about-visual::before { content: ''; position: absolute; inset: 0; background: radial-gradient(ellipse 80% 80% at 50% 50%, rgba(var(--teal-rgb),0.15) 0%, transparent 60%); }
.about-visual-letter { font-size: 180px; font-weight: 700; color: rgba(255,255,255,0.04); position: absolute; top: 50%; left: 50%; transform: translate(-50%,-50%); }
.about-visual-stats { position: relative; z-index: 2; display: flex; flex-direction: column; gap: 24px; }
.about-visual-stat .avs-val { font-size: 42px; font-weight: 700; color: var(--white); }
.about-visual-stat .avs-lbl { font-size: 10px; font-weight: 600; letter-spacing: 3px; text-transform: uppercase; color: rgba(255,255,255,0.6); margin-top: 4px; }
.about-mission-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 24px; }
.mission-card { background: var(--white); border: 1px solid rgba(var(--grey-rgb),0.35); border-radius: var(--card-radius); padding: 36px 28px; transition: all 0.5s var(--transition); }
.mission-card:hover { transform: translateY(-4px); box-shadow: 0 16px 48px rgba(var(--navy-rgb),0.06); border-color: rgba(var(--teal-rgb),0.4); }
.mission-card-icon { width: 48px; height: 48px; border-radius: 50%; background: var(--teal); display: flex; align-items: center; justify-content: center; margin-bottom: 20px; }
.mission-card-icon svg { width: 22px; height: 22px; stroke: var(--white); stroke-width: 2; fill: none; stroke-linecap: round; stroke-linejoin: round; }
.mission-card h4 { font-size: 18px; font-weight: 600; color: var(--navy); margin-bottom: 6px; }
.mission-card p { font-size: 14px; font-weight: 300; color: rgba(var(--navy-rgb),0.75); line-height: 1.7; }

/* ============================================================
   FOOTER
   ============================================================ */
.footer { background: var(--navy); padding: 48px var(--side-pad) 32px; }
.footer-inner {
  max-width: var(--max-w); margin: 0 auto;
  display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 40px;
  padding-bottom: 32px; border-bottom: 1px solid rgba(255,255,255,0.08);
}
.footer-logo { height: 48px; width: auto; margin-bottom: 12px; display: block; }
.footer-desc { font-size: 13px; font-weight: 300; color: rgba(255,255,255,0.75); line-height: 1.7; max-width: 300px; }
.footer-col-title { font-size: 10px; font-weight: 600; letter-spacing: 3px; text-transform: uppercase; color: var(--teal); margin-bottom: 16px; }
.footer-col a { display: block; font-size: 13px; font-weight: 400; color: rgba(255,255,255,0.8); text-decoration: none; padding: 4px 0; transition: color 0.3s; }
.footer-col a:hover { color: var(--teal); }
.footer-contact-row { display: flex; align-items: flex-start; gap: 8px; }
.footer-icon { font-size: 14px; margin-top: 2px; }
.footer-address { font-size: 13px; font-weight: 400; color: rgba(255,255,255,0.8); line-height: 1.6; }
.footer-bottom { max-width: var(--max-w); margin: 0 auto; padding-top: 24px; display: flex; align-items: center; justify-content: space-between; }
.footer-copy { font-size: 11px; color: rgba(255,255,255,0.6); }
.footer-links { display: flex; gap: 20px; }
.footer-links a { font-size: 11px; font-weight: 500; letter-spacing: 1.5px; text-transform: uppercase; color: rgba(255,255,255,0.7); text-decoration: none; transition: color 0.3s; }
.footer-links a:hover { color: var(--teal); }

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 1024px) {
  .nav-links { display: none; }
  .nav-toggle { display: block; }
  .nav-links.open { display: flex; flex-direction: column; position: absolute; top: 100%; left: 0; right: 0; background: var(--white); padding: 20px var(--side-pad); box-shadow: 0 8px 24px rgba(0,0,0,0.08); }
  .about-story-grid { grid-template-columns: 1fr; }
  .about-grid { grid-template-columns: 1fr; }
  .about-mission-grid { grid-template-columns: 1fr; max-width: 440px; margin-left: auto; margin-right: auto; }
  .services-grid { grid-template-columns: 1fr; max-width: 440px; margin-left: auto; margin-right: auto; }
  .rcm-cards { grid-template-columns: 1fr; max-width: 440px; margin-left: auto; margin-right: auto; }
  .process-steps { grid-template-columns: repeat(2,1fr); gap: 32px; }
  .process-steps::before { display: none; }
  .process-detail-row { grid-template-columns: 1fr; }
  .process-timeline-center { display: none; }
  .process-detail-empty { display: none; }
  .process-detail-row:nth-child(even) .process-detail-content { order: unset; }
  .metrics-banner .section-inner { flex-direction: column; text-align: center; }
  .metrics-grid { justify-content: center; }
  .contact-grid { grid-template-columns: 1fr; }
  .spec-categories { grid-template-columns: 1fr; max-width: 440px; margin-left: auto; margin-right: auto; }
  .footer-inner { grid-template-columns: 1fr 1fr; }
  .trust-bar {gap: 20px;}

}
@media (max-width: 600px) {
  .about-values { grid-template-columns: 1fr; }
  .about-values-grid { grid-template-columns: 1fr; }
  .process-steps { grid-template-columns: 1fr; }
  .metrics-grid { flex-direction: column; gap: 24px; }
  .footer-inner { grid-template-columns: 1fr; }
  .footer-bottom { flex-direction: column; gap: 12px; text-align: center; }
  .specialties-wrap { gap: 6px; }
  .spec-tag { font-size: 12px; padding: 8px 14px; }
  .form-row { grid-template-columns: 1fr; }
  .page-hero { min-height: 340px; padding: 120px var(--side-pad) 60px; }
  .hero-stats { flex-direction: column; gap: 20px; }
}
