*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}
html {
  scroll-behavior: smooth;
}
body {
  font-family: var(--font-body);
  background: #fff;
  color: #374151;
  line-height: 1.6;
  overflow-x: hidden;
}
a {
  color: inherit;
  text-decoration: none;
}
ul {
  list-style: none;
  padding: 0;
}
img {
  max-width: 100%;
}
:root {
  --font-title: "Playfair Display", serif;
  --font-body: "Inter", sans-serif;
  --navy: #0b2559;
  --teal: #0ea5a0;
  --teal-light: #12bfb9;
  --teal-tint: #e8f7f6;
  --cloud: #f4f7fb;
  --white: #fff;
  --slate: #374151;
  --muted: #6b7280;
  --border: #e5ecf4;
  --radius: 12px;
  --radius-sm: 6px;
}

.section-eyebrow {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--teal);
  margin-bottom: 12px;
  font-family: var(--font-body);
}
.section-title {
  font-family: var(--font-title);
  font-size: clamp(26px, 4vw, 40px);
  font-weight: 600;
  color: var(--navy);
  line-height: 1.2;
  margin-bottom: 16px;
}
.section-title em {
  font-style: italic;
  color: var(--teal);
}
.section-desc {
  font-size: 15px;
  color: var(--muted);
  line-height: 1.75;
}
.btn-primary {
  background: var(--teal);
  color: #fff;
  font-weight: 600;
  font-size: 15px;
  padding: 13px 28px;
  border-radius: var(--radius-sm);
  display: inline-block;
  transition: background 0.2s, transform 0.15s;
  border: none;
  cursor: pointer;
  font-family: var(--font-body);
}
.btn-primary:hover {
  background: var(--teal-light);
  transform: translateY(-2px);
}
.btn-secondary {
  border: 2px solid var(--teal);
  color: var(--teal);
  font-weight: 600;
  font-size: 15px;
  padding: 11px 28px;
  border-radius: var(--radius-sm);
  display: inline-block;
  transition: background 0.2s, color 0.2s;
  cursor: pointer;
  background: none;
  font-family: var(--font-body);
}
.btn-secondary:hover {
  background: var(--teal);
  color: #fff;
}
.btn-white {
  background: #fff;
  color: var(--navy);
  font-weight: 600;
  font-size: 15px;
  padding: 13px 28px;
  border-radius: var(--radius-sm);
  display: inline-block;
  transition: background 0.2s, transform 0.15s;
}
.btn-white:hover {
  background: #e8f7f6;
  transform: translateY(-2px);
}
.btn-outline-white {
  border: 2px solid rgba(255, 255, 255, 0.35);
  color: #fff;
  font-weight: 500;
  font-size: 15px;
  padding: 11px 28px;
  border-radius: var(--radius-sm);
  display: inline-block;
  transition: border-color 0.2s, background 0.2s;
}
.btn-outline-white:hover {
  border-color: #fff;
  background: rgba(255, 255, 255, 0.08);
}

/* NAV */
.site-nav {
  position: relative;
  top: auto;
  left: auto;
  right: auto;
  width: 100%;
  z-index: 200;
  background: #fff;
  border-bottom: 1px solid var(--border);
  transition: box-shadow 0.3s ease, transform 0.3s ease;
  padding: 10px 0;
}
.site-nav.scrolled {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  box-shadow: 0 2px 20px rgba(11, 37, 89, 0.1);
  animation: headerSlideDown 0.28s ease both;
}
@keyframes headerSlideDown {
  from { transform: translateY(-100%); }
  to { transform: translateY(0); }
}
.nav-container {
  width: 100%;
  margin: 0 auto;
  height: 100%;
  display: flex;
  align-items: center;
  gap: 24px;
}
.nav-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-shrink: 0;
  cursor: pointer;
}
.nav-logo-mark {
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 200px;
}
.nav-logo-mark img {
  width: 100%;
}
.nav-brand-text {
  display: flex;
  flex-direction: column;
  line-height: 1.2;
}
.nav-brand-primary {
  font-size: 15px;
  font-weight: 700;
  color: var(--navy);
  letter-spacing: 0.01em;
}
.nav-brand-secondary {
  font-size: 10px;
  color: var(--muted);
  letter-spacing: 0.04em;
}
.nav-links {
  display: flex;
  align-items: center;
  gap: 2px;
  flex: 1;
}
.nav-link {
  font-size: 14px;
  font-weight: 500;
  color: var(--slate);
  padding: 6px 11px;
  border-radius: 6px;
  transition: color 0.2s, background 0.2s;
  cursor: pointer;
  white-space: nowrap;
}
.nav-link:hover,
.nav-link.active {
  color: var(--teal);
  background: var(--teal-tint);
}
.nav-dropdown {
  position: relative;
}
.dropdown-menu {
  position: absolute;
  top: calc(100% + 8px);
  left: 0;
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 8px;
  min-width: 220px;
  box-shadow: 0 8px 32px rgba(11, 37, 89, 0.12);
  opacity: 0;
  visibility: hidden;
  transform: translateY(-6px);
  transition: opacity 0.2s, transform 0.2s, visibility 0.2s;
  z-index: 300;
}
.nav-dropdown:hover .dropdown-menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}
.dropdown-item {
  display: block;
  padding: 9px 12px;
  font-size: 13px;
  color: var(--slate);
  border-radius: 6px;
  transition: background 0.15s, color 0.15s;
  cursor: pointer;
}
.dropdown-item:hover {
  background: var(--teal-tint);
  color: var(--teal);
}
.btn-nav-cta {
  background: var(--teal);
  color: #fff;
  font-size: 14px;
  font-weight: 600;
  padding: 9px 22px;
  border-radius: var(--radius-sm);
  transition: background 0.2s;
  white-space: nowrap;
  cursor: pointer;
}
.btn-nav-cta:hover {
  background: var(--teal-light);
}
.nav-hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 6px;
  margin-left: auto;
}
.nav-hamburger span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--navy);
  border-radius: 2px;
  transition: transform 0.2s, opacity 0.2s;
}

/* PAGE SYSTEM */
.page {
  display: block;
  padding-top: 0;
}

/* PAGE HERO */
.page-hero {
  background: linear-gradient(161deg, #0b2559 0%, #1a3a72 55%, #0ea5a0 100%);
  padding: 72px 0 60px;
}
.page-hero-eyebrow {
  display: inline-block;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 40px;
  padding: 4px 14px;
  font-size: 11px;
  font-weight: 500;
  color: #a8e8e5;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: 14px;
}
.page-hero h1 {
  font-family: var(--font-title);
  font-size: clamp(28px, 4.5vw, 50px);
  font-weight: 600;
  color: #fff;
  line-height: 1.15;
  margin-bottom: 14px;
}
.page-hero h1 em {
  font-style: italic;
  color: #5de8e3;
}
.page-hero p {
  font-size: 16px;
  color: rgba(255, 255, 255, 0.72);
  line-height: 1.75;
}

/* SECTIONS */
.sec-white {
  padding: 80px 0;
  background: #fff;
}
.sec-cloud {
  padding: 80px 0;
  background: var(--cloud);
}
.sec-teal {
  padding: 80px 0;
  background: var(--teal-tint);
}
.sec-navy {
  padding: 80px 0;
  background: var(--navy);
}

/* INFO CARD */
.info-card {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 26px 22px;
  transition: border-color 0.22s, transform 0.22s, box-shadow 0.22s;
}
.info-card:hover {
  border-color: var(--teal);
  transform: translateY(-3px);
  box-shadow: 0 8px 24px rgba(14, 165, 160, 0.1);
}
.info-card-icon {
  width: 46px;
  height: 46px;
  background: var(--teal-tint);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 14px;
}
.info-card-icon svg {
  width: 22px;
  height: 22px;
  stroke: var(--teal);
  fill: none;
  stroke-width: 1.8;
}
.info-card-title {
  font-size: 16px;
  font-weight: 600;
  color: var(--navy);
  margin-bottom: 7px;
}
.info-card-desc {
  font-size: 13px;
  color: var(--muted);
  line-height: 1.65;
}
.cpt-pill {
  display: inline-block;
  font-family: var(--font-body);
  font-size: 11px;
  font-weight: 500;
  background: #eff6ff;
  border: 1px solid #bfdbfe;
  color: #1d4ed8;
  padding: 3px 9px;
  border-radius: 4px;
}
.check-list {
  display: flex;
  flex-direction: column;
  gap: 9px;
}
.check-list li {
  display: flex;
  align-items: flex-start;
  gap: 9px;
  font-size: 14px;
  color: var(--slate);
}
.check-list li::before {
  content: "";
  width: 18px;
  height: 18px;
  background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%230EA5A0' stroke-width='2.5' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='20 6 9 17 4 12'/%3E%3C/svg%3E")
    center/contain no-repeat;
  flex-shrink: 0;
  margin-top: 1px;
}
.tag {
  display: inline-block;
  font-size: 11px;
  font-weight: 500;
  padding: 3px 10px;
  border-radius: 20px;
  background: var(--teal-tint);
  color: var(--teal);
  border: 1px solid #c8e8e6;
}
.stat-card {
  background: var(--teal-tint);
  border: 1px solid #c8e8e6;
  border-radius: var(--radius);
  padding: 20px;
  text-align: center;
}
.stat-card-num {
  font-size: 36px;
  font-weight: 600;
  color: var(--teal);
  line-height: 1;
  margin-bottom: 5px;
}
.stat-card-lbl {
  font-size: 12px;
  color: var(--muted);
  line-height: 1.4;
}
.cta-block {
  background: var(--navy);
  border-radius: 16px;
  padding: 48px;
  text-align: center;
}
.cta-block h2 {
  font-family: var(--font-title);
  font-size: clamp(24px, 3.5vw, 36px);
  color: #fff;
  margin-bottom: 10px;
}
.cta-block p {
  font-size: 15px;
  color: rgba(255, 255, 255, 0.68);
  margin-bottom: 24px;
}
.cta-block-btns {
  display: flex;
  gap: 12px;
  justify-content: center;
  flex-wrap: wrap;
}
.live-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: #ecfdf5;
  border: 1px solid #6ee7b7;
  border-radius: 20px;
  padding: 4px 12px;
  font-size: 12px;
  font-weight: 500;
  color: #065f46;
  margin-bottom: 14px;
}
.live-dot {
  width: 7px;
  height: 7px;
  background: #10b981;
  border-radius: 50%;
  animation: lpulse 1.8s ease-in-out infinite;
}
@keyframes lpulse {
  0%,
  100% {
    opacity: 1;
    transform: scale(1);
  }
  50% {
    opacity: 0.4;
    transform: scale(0.7);
  }
}

/* FOOTER */
.site-footer {
      background: #f8fdfd;
    padding: 56px 0 24px;
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 36px;
  margin-bottom: 40px;
}
.footer-brand {
  width: 200px;
  font-weight: 700;
  color: #fff;
  margin-bottom: 8px;
}
.footer-brand span {
  display: block;
  font-size: 11px;
  font-weight: 400;
  color: #0ea5a0;
  letter-spacing: 0.04em;
}
.footer-tagline {
  font-size: 13px;
  color:#000;
  line-height: 1.7;
  max-width: 240px;
}
.footer-heading {
      font-size: 13px;
    font-weight: 600;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: #000;
    margin-bottom: 12px;
    font-family: var(--font-body);
}
.footer-links {
  display: flex;
  flex-direction: column;
  gap: 8px;
  padding: 0;
}
.footer-links a,
.footer-links li {
  font-size: 13px;
  color: #000;
  transition: color 0.2s;
  cursor: pointer;
}
.footer-links a:hover {
  color: #0ea5a0;
}
.footer-bottom {
  border-top:1px solid rgb(0 0 0 / 10%);
  padding-top: 20px;
  display: flex;
  justify-content: space-between;
  font-size: 12px;
  color: #000;
  flex-wrap: wrap;
  gap: 6px;
}

/* FADE UP */
.fade-up {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity 0.55s ease, transform 0.55s ease;
}
.fade-up.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ===================== HOME ===================== */
.hero {
  background: linear-gradient(
161deg, #0b2559 0%, #1a3a72 55%, #0ea5a0 100%);
  padding: 100px 0 80px;
  position: relative;
  overflow: hidden;
}
/*.hero::after{content:'';position:absolute;inset:0;background:url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none'%3E%3Cg fill='%23ffffff' fill-opacity='0.03'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");pointer-events:none}*/
.hero-inner {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1fr 400px;
  gap: 56px;
  align-items: center;
}
.hero-eyebrow {
  display: inline-block;
  background: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 40px;
  padding: 5px 16px;
  font-size: 12px;
  font-weight: 500;
  color: #a8e8e5;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: 18px;
}
.hero h1 {
  font-family: var(--font-title);
  font-size: clamp(34px, 5vw, 58px);
  font-weight: 600;
  color: #fff;
  line-height: 1.12;
  margin-bottom: 20px;
}
.hero h1 em {
  font-style: italic;
  color: #5de8e3;
}
.hero-desc {
  font-size: 16px;
  color: rgba(255, 255, 255, 0.76);
  line-height: 1.75;
  margin-bottom: 32px;
  max-width: 500px;
}
.hero-actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}
.hero-card {
  background: #fff;
  border-radius: 16px;
  padding: 26px;
  box-shadow: 0 24px 64px rgba(0, 0, 0, 0.18);
}
.hero-card-label {
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #6b7280;
  margin-bottom: 16px;
  font-family: var(--font-body);
}
.rcm-flow {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-bottom: 18px;
}
.rcm-step {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 9px 12px;
  background: #f4f7fb;
  border-radius: 8px;
  border-left: 3px solid #0ea5a0;
  font-size: 12px;
  font-weight: 500;
  color: #0b2559;
  animation: step-in 0.4s ease both;
}
.rcm-step:nth-child(1) {
  animation-delay: 0.1s;
}
.rcm-step:nth-child(2) {
  animation-delay: 0.2s;
}
.rcm-step:nth-child(3) {
  animation-delay: 0.3s;
}
.rcm-step:nth-child(4) {
  animation-delay: 0.4s;
}
.rcm-step:nth-child(5) {
  animation-delay: 0.5s;
}
.rcm-step:nth-child(6) {
  animation-delay: 0.6s;
}
@keyframes step-in {
  from {
    opacity: 0;
    transform: translateX(10px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}
.rcm-step-dot {
  width: 26px;
  height: 26px;
  border-radius: 50%;
  background: #e8f7f6;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.rcm-step-dot svg {
  width: 13px;
  height: 13px;
  stroke: #0ea5a0;
  fill: none;
  stroke-width: 2;
}
.rcm-check {
  margin-left: auto;
  color: #0ea5a0;
  font-size: 13px;
}
.hero-stats {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px;
}
.hero-stat {
  background: #f4f7fb;
  border-radius: 8px;
  padding: 10px 12px;
}
.hero-stat-num {
  font-size: 22px;
  font-weight: 600;
  color: #0b2559;
}
.hero-stat-num span {
  font-size: 13px;
  color: #0ea5a0;
}
.hero-stat-lbl {
  font-size: 10px;
  color: #6b7280;
  margin-top: 2px;
}
/*.stats-band {
  background: #0b2559;
  padding: 40px 0;
}
.stats-band-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
}
.stat-band-item {
  text-align: center;
  padding: 0 20px;
  border-right: 1px solid rgba(255, 255, 255, 0.1);
}
.stat-band-item:last-child {
  border-right: none;
}
.stat-band-num {
  font-family: var(--font-title);
  font-size: 40px;
  font-weight: 600;
  color: #5de8e3;
  line-height: 1;
}
.stat-band-num sup {
  font-size: 20px;
  vertical-align: super;
}
.stat-band-lbl {
  font-size: 12px;
  color: rgba(255, 255, 255, 0.55);
  margin-top: 5px;
}*/
.srv-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
  margin-top: 48px;
}

.srv-card {
  background: #f4f7fb;
  border-radius: 12px;
  padding: 26px 22px;
  border: 1px solid var(--border);
  cursor: pointer;
  display: block;
  position: relative;
  z-index: 1;
  transform: scale(1);
  transition:
    transform 0.3s ease,
    border-color 0.3s ease,
    box-shadow 0.3s ease,
    background-color 0.3s ease;
}

.srv-card:hover {
  transform: scale(1.05);
  border-color: var(--teal);
  background: #06aea1;
  box-shadow: 0 18px 38px rgba(14, 165, 160, 0.18);
  z-index: 5;
}
.srv-icon {
  width: 44px;
  height: 44px;
  background: #e8f7f6;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 14px;
}
.srv-icon svg {
  width: 20px;
  height: 20px;
  stroke: var(--teal);
  fill: none;
  stroke-width: 1.8;
}
.srv-name {
  font-size: 16px;
  font-weight: 600;
  color: var(--navy);
  margin-bottom: 7px;
}
.srv-card:hover .srv-name{
  color: #fff;
}
.srv-desc {
  font-size: 13px;
  color: var(--muted);
  line-height: 1.6;
}
.srv-card:hover .srv-desc{
  color: #fff;
}
.srv-link {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  font-size: 12px;
  font-weight: 500;
  color: var(--teal);
  margin-top: 12px;
  transition: 0.4s;
}
.srv-card:hover .srv-link{
  color: #fff;
  font-size: 14px;
}
.auto-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 52px;
  align-items: center;
}
.auto-points {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-top: 20px;
  padding: 0;
}
.auto-points li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 14px;
  color: var(--slate);
  line-height: 1.55;
}
.auto-check {
  width: 20px;
  height: 20px;
  flex-shrink: 0;
  background: var(--teal);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 1px;
}
.auto-check svg {
  width: 10px;
  height: 10px;
  stroke: #fff;
  fill: none;
  stroke-width: 2.5;
}
.auto-visual {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}
.auto-box {
  background: #fff;
  border-radius: 10px;
  padding: 18px 14px;
  border: 1px solid #d0e8e6;
  text-align: center;
}
.auto-box-num {
  font-size: 30px;
  font-weight: 600;
  color: var(--teal);
  line-height: 1;
}
.auto-box-lbl {
  font-size: 11px;
  color: var(--muted);
  margin-top: 3px;
  line-height: 1.4;
}
.clients-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
  margin-top: 44px;
}
.client-tile {
  background: #f4f7fb;
  border: 1px solid var(--border);
  border-radius: 10px;
  padding: 20px 16px;
  text-align: center;
  transition: border-color 0.2s;
}
.client-tile:hover {
  border-color: var(--teal);
}
.client-icon {
  width: 48px;
  height: 48px;
  margin: 0 auto 12px;
  border-radius: 12px;
  background: var(--teal-tint);
  color: var(--teal);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  line-height: 1;
}
.client-icon i {
  line-height: 1;
}
.client-name {
  font-size: 13px;
  font-weight: 600;
  color: var(--navy);
  margin-bottom: 3px;
}
.client-desc {
  font-size: 12px;
  color: var(--muted);
  line-height: 1.5;
}
.cta-strip {
  background: linear-gradient(
58deg, #0ea5a0, #0b2559);
    padding: 72px 0;
    text-align: center;
}
.cta-strip h2 {
  font-family: var(--font-title);
  font-size: clamp(26px, 4vw, 42px);
  color: #fff;
  margin-bottom: 12px;
}
.cta-strip p {
  font-size: 15px;
  color: rgba(255, 255, 255, 0.68);
  margin-bottom: 28px;
}
.cta-strip-btns {
  display: flex;
  gap: 12px;
  justify-content: center;
  flex-wrap: wrap;
}

/* ===================== SERVICES ===================== */
.services-layout {
  display: grid;
  grid-template-columns: 240px 1fr;
  gap: 0;
  min-height: 60vh;
}
.services-sidebar {
  background: var(--cloud);
  border-right: 1px solid var(--border);
  padding: 32px 0;
}
.sidebar-label {
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--muted);
  padding: 0 20px;
  margin-bottom: 8px;
  font-family: var(--font-body);
}
.sidebar-link {
  display: flex;
  align-items: center;
  gap: 9px;
  padding: 10px 20px;
  font-size: 13px;
  font-weight: 500;
  color: var(--slate);
  transition: background 0.15s, color 0.15s;
  border-left: 3px solid transparent;
  cursor: pointer;
}
.sidebar-link:hover {
  background: #fff;
  color: var(--teal);
}
.sidebar-link.active {
  background: #fff;
  color: var(--teal);
  border-left-color: var(--teal);
}
.sidebar-link svg {
  width: 15px;
  height: 15px;
  stroke: currentColor;
  fill: none;
  stroke-width: 2;
  flex-shrink: 0;
}
.services-content {
  padding: 52px 48px;
}
.service-section {
  padding: 52px 0;
  border-bottom: 1px solid var(--border);
}
.service-section:first-child {
  padding-top: 0;
}
.service-section:last-child {
  border-bottom: none;
}
.service-header {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  margin-bottom: 22px;
}
.service-header-icon {
  width: 52px;
  height: 52px;
  background: var(--teal-tint);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.service-header-icon svg {
  width: 24px;
  height: 24px;
  stroke: var(--teal);
  fill: none;
  stroke-width: 1.8;
}
.service-header-text h2 {
  font-family: var(--font-title);
  font-size: 28px;
  font-weight: 600;
  color: var(--navy);
  margin-bottom: 4px;
}
.service-header-text p {
  font-size: 14px;
  color: var(--muted);
  line-height: 1.6;
}
.service-body {
  font-size: 14px;
  color: var(--slate);
  line-height: 1.8;
  margin-bottom: 20px;
}
.service-sub-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  margin-top: 20px;
}
.service-sub-card {
  background: var(--cloud);
  border: 1px solid var(--border);
  border-radius: 10px;
  padding: 16px;
  transition: border-color 0.2s;
}
.service-sub-card:hover {
  border-color: var(--teal);
}
.service-sub-title {
  font-size: 13px;
  font-weight: 600;
  color: var(--navy);
  margin-bottom: 4px;
}
.service-sub-desc {
  font-size: 12px;
  color: var(--muted);
  line-height: 1.6;
}
.service-cpt-row {
  display: flex;
  flex-wrap: wrap;
  gap: 5px;
  margin-top: 18px;
  padding: 14px;
  background: #eff6ff;
  border: 1px solid #bfdbfe;
  border-radius: 8px;
}
.service-cpt-label {
  font-size: 10px;
  font-weight: 600;
  color: #1d4ed8;
  font-family: var(--font-body);
  letter-spacing: 0.06em;
  text-transform: uppercase;
  width: 100%;
  margin-bottom: 5px;
}
.pricing-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  margin-top: 18px;
}
.pricing-mini {
  border-radius: 10px;
  padding: 18px;
  border: 1px solid var(--border);
}
.pricing-mini.vol {
  background: var(--cloud);
}
.pricing-mini.pct {
  background: var(--teal-tint);
  border-color: #c8e8e6;
}
.pricing-mini-title {
  font-size: 12px;
  font-weight: 600;
  color: var(--navy);
  margin-bottom: 3px;
}
.pricing-mini-price {
  font-family: var(--font-title);
  font-size: 26px;
  color: var(--teal);
  line-height: 1;
  margin-bottom: 3px;
}
.pricing-mini-desc {
  font-size: 11px;
  color: var(--muted);
  line-height: 1.5;
}
.tier-table {
  width: 100%;
  border-collapse: collapse;
  margin-top: 12px;
}
.tier-table th {
  text-align: left;
  font-size: 10px;
  font-weight: 600;
  color: var(--muted);
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 7px 10px;
  border-bottom: 1px solid var(--border);
  font-family: var(--font-body);
}
.tier-table td {
  padding: 9px 10px;
  font-size: 12px;
  color: var(--slate);
  border-bottom: 1px solid var(--border);
}
.tier-table td:last-child {
  color: var(--teal);
  font-weight: 600;
  font-family: var(--font-body);
}
.tier-table tr:last-child td {
  border-bottom: none;
}

/* ===================== WHO WE WORK WITH ===================== */
.client-type-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
  margin-top: 44px;
}
.client-type-card {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 16px;
  overflow: hidden;
  transition: box-shadow 0.25s, transform 0.25s;
}
.client-type-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 14px 36px rgba(11, 37, 89, 0.1);
}
.client-card-header {
  background: linear-gradient(135deg, #0b2559, #1a3a72);
  padding: 24px;
  display: flex;
  align-items: flex-start;
  gap: 14px;
}
.client-card-emoji {
  width: 46px;
  height: 46px;
  flex-shrink: 0;
  border-radius: 12px;
  background: rgba(93, 232, 227, 0.12);
  color: #5de8e3;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  border: 1px solid rgba(93, 232, 227, 0.18);
}
.client-card-header h3 {
  font-family: var(--font-title);
  font-size: 20px;
  font-weight: 600;
  color: #fff;
  margin-bottom: 3px;
}
.client-card-header p {
  font-size: 12px;
  color: rgba(255, 255, 255, 0.62);
  line-height: 1.5;
}
.client-card-body {
  padding: 20px 24px;
}
.client-card-body p {
  font-size: 13px;
  color: var(--slate);
  line-height: 1.75;
  margin-bottom: 14px;
}
.client-services-used {
  display: flex;
  flex-wrap: wrap;
  gap: 5px;
  margin-bottom: 14px;
}
.client-service-tag {
  font-size: 10px;
  background: var(--teal-tint);
  border: 1px solid #c8e8e6;
  color: #0ea5a0;
  padding: 3px 9px;
  border-radius: 20px;
  font-weight: 500;
}
.client-pain-points li {
  display: flex;
  align-items: flex-start;
  gap: 7px;
  font-size: 12px;
  color: var(--slate);
  line-height: 1.5;
  margin-bottom: 6px;
}
.client-pain-points li::before {
  content: "";
  width: 15px;
  height: 15px;
  background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%230EA5A0' stroke-width='2.5'%3E%3Cpolyline points='20 6 9 17 4 12'/%3E%3C/svg%3E")
    center/contain no-repeat;
  flex-shrink: 0;
  margin-top: 1px;
}
.who-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 44px;
  margin-top: 48px;
  padding: 24px;
 background-image: url(../img/stats-band_bg.png);
    background-size: 100%;
    background-position: center;
  border-radius: 18px;
  overflow: hidden;
}

.who-stat-item {
  text-align: center;
  padding: 18px 14px;
  border-radius: 14px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.07), rgba(255, 255, 255, 0.022));
  border: 1px solid rgba(93, 232, 227, 0.2);
  box-shadow:
    0 12px 26px rgba(0, 0, 0, 0.12),
    inset 0 1px 0 rgba(255, 255, 255, 0.06);
  transition: transform 0.25s ease, border-color 0.25s ease, box-shadow 0.25s ease;
}

.who-stat-item:hover {
  transform: scale(1.04);
  border-color: rgba(93, 232, 227, 0.5);
  box-shadow:
    0 16px 34px rgba(0, 0, 0, 0.18),
    0 0 20px rgba(93, 232, 227, 0.09);
}

.who-stat-icon {
  width: 38px;
  height: 38px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  color: #5de8e3;
  font-size: 15px;
  background: rgba(93, 232, 227, 0.095);
  border: 1px solid rgba(93, 232, 227, 0.24);
  box-shadow:
    inset 0 0 12px rgba(93, 232, 227, 0.06),
    0 0 14px rgba(93, 232, 227, 0.07);
}

.who-stat-num {
  font-size: clamp(30px, 3.2vw, 36px);
  font-weight: 600;
  color: #5de8e3;
  line-height: 0.95;
  letter-spacing: -1px;
  text-shadow: 0 0 16px rgba(93, 232, 227, 0.18);
}

.who-stat-lbl {
  font-size: 11px;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.72);
  line-height: 1.4;
}
.specialty-list {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 12px;
  margin-top: 40px;
}
.specialty-item {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 10px;
  padding: 18px 14px;
  text-align: center;
  transition: border-color 0.2s, background 0.6s;
}
.specialty-item:hover {
  border-color: var(--teal);
  background: var(--teal);
}
.specialty-emoji {
  width: 46px;
  height: 46px;
  margin: 0 auto 10px;
  border-radius: 12px;
  background: var(--teal-tint);
  color: var(--teal);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
}
.specialty-name {
  font-size: 13px;
  font-weight: 600;
  color: var(--navy);
  margin-bottom: 4px;
}
.specialty-item:hover .specialty-name{
  color: #fff;
}
.specialty-item:hover .specialty-detail{
  color: #fff;
}
.specialty-detail {
  font-size: 11px;
  color: var(--muted);
  line-height: 1.5;
}

/* ===================== WHY US ===================== */
.diff-hero-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: center;
  margin-top: 44px;
}
.diff-big-num {
  font-family: var(--font-title);
  font-size: 100px;
  color: var(--teal-tint);
  line-height: 1;
  margin-bottom: -16px;
  font-weight: 600;
  letter-spacing: -4px;
}
.diff-pillar-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-top: 44px;
}
.diff-pillar {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 14px;
  padding: 28px 22px;
  position: relative;
  overflow: hidden;
  transition: box-shadow 0.25s, transform 0.25s;
}
.diff-pillar:hover {
  box-shadow: 0 10px 28px rgba(14, 165, 160, 0.1);
  transform: translateY(-4px);
}
.diff-pillar::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--teal), #5de8e3);
}
.diff-pillar-num {
  font-family: var(--font-title);
  font-size: 44px;
  color: var(--teal-tint);
  line-height: 1;
  margin-bottom: 10px;
  font-weight: 600;
}
.diff-pillar-title {
  font-size: 16px;
  font-weight: 600;
  color: var(--navy);
  margin-bottom: 8px;
}
.diff-pillar-desc {
  font-size: 13px;
  color: var(--muted);
  line-height: 1.7;
}
.compare-table-wrap {
  overflow-x: auto;
  margin-top: 40px;
}
.compare-table {
  width: 100%;
  border-collapse: collapse;
  background: #fff;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 2px 14px rgba(11, 37, 89, 0.06);
}
.compare-table th {
  padding: 14px 18px;
  font-size: 12px;
  font-weight: 600;
  text-align: left;
  background: var(--navy);
  color: #fff;
}
.compare-table th:nth-child(2),
.compare-table th:last-child {
  text-align: center;
}
.compare-table td {
  padding: 12px 18px;
  font-size: 13px;
  color: var(--slate);
  border-bottom: 1px solid var(--border);
}
.compare-table td:first-child {
  font-weight: 500;
  color: var(--navy);
}
.compare-table td:nth-child(2),
.compare-table td:last-child {
  text-align: center;
}
.compare-table tr:last-child td {
  border-bottom: none;
}
.compare-table tr:hover td {
  background: #fafcff;
}
.tick-yes {
  color: #10b981;
  font-size: 18px;
  font-weight: 600;
}
.tick-no {
  color: #d1d5db;
  font-size: 18px;
}
.tick-partial {
  color: #f59e0b;
  font-size: 12px;
  font-weight: 500;
}
.pricing-cards {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  margin-top: 44px;
}
.pricing-card-full {
  border-radius: 14px;
  padding: 32px;
  border: 2px solid var(--border);
  position: relative;
  overflow: hidden;
  transition: border-color 0.25s;
}
.pricing-card-full:hover {
  border-color: var(--teal);
}
.pricing-card-full.featured {
  border-color: var(--teal);
  background: var(--teal-tint);
}
.pricing-badge {
  position: absolute;
  top: 0;
  right: 0;
  background: var(--teal);
  color: #fff;
  font-size: 10px;
  font-weight: 600;
  padding: 4px 12px;
  border-bottom-left-radius: 8px;
  letter-spacing: 0.04em;
}
.pricing-type-label {
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--teal);
  font-family: var(--font-body);
  margin-bottom: 6px;
}
.pricing-card-name {
  font-size: 20px;
  font-weight: 600;
  color: var(--navy);
  margin-bottom: 6px;
}
.pricing-card-for {
  font-size: 13px;
  color: var(--muted);
  margin-bottom: 20px;
}
.pricing-card-price {
  font-size: 46px;
  color: var(--teal);
  line-height: 1;
  margin-bottom: 4px;
}
.pricing-card-price span {
  font-size: 18px;
}
.pricing-card-period {
  font-size: 12px;
  color: var(--muted);
  margin-bottom: 20px;
}
.tier-list {
  display: flex;
  flex-direction: column;
  gap: 5px;
  margin-bottom: 20px;
}
.tier-row-full {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 8px 10px;
  background: rgba(255, 255, 255, 0.7);
  border-radius: 7px;
  border: 1px solid var(--border);
}
.tier-range-label {
  font-size: 11px;
  color: var(--muted);
  width: 120px;
  flex-shrink: 0;
  font-family: var(--font-body);
}
.tier-bar-bg {
  flex: 1;
  height: 4px;
  background: rgba(14, 165, 160, 0.15);
  border-radius: 2px;
  overflow: hidden;
}
.tier-bar-fg {
  height: 100%;
  background: var(--teal);
  border-radius: 2px;
}
.tier-rate {
  font-size: 12px;
  font-weight: 600;
  color: var(--teal);
  font-family: var(--font-body);
  white-space: nowrap;
}
.pricing-includes-list {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-bottom: 20px;
}
.pricing-inc-item {
  display: flex;
  align-items: flex-start;
  gap: 8px;
  font-size: 13px;
  color: var(--slate);
}
.pricing-inc-item svg {
  width: 15px;
  height: 15px;
  flex-shrink: 0;
  stroke: var(--teal);
  fill: none;
  stroke-width: 2.5;
  margin-top: 2px;
}
.pricing-inc-item.dimmed {
  color: var(--muted);
}
.pricing-inc-item.dimmed svg {
  stroke: #d1d5db;
}
.compliance-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 18px;
  margin-top: 44px;
}
.compliance-card {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 22px;
  display: flex;
  gap: 14px;
  align-items: flex-start;
}
.compliance-icon {
  width: 42px;
  height: 42px;
  background: var(--teal-tint);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.compliance-icon svg {
  width: 18px;
  height: 18px;
  stroke: var(--teal);
  fill: none;
  stroke-width: 2;
}
.compliance-title {
  font-size: 14px;
  font-weight: 600;
  color: var(--navy);
  margin-bottom: 4px;
}
.compliance-desc {
  font-size: 12px;
  color: var(--muted);
  line-height: 1.65;
}

/* ===================== ABOUT ===================== */
.story-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 56px;
  align-items: center;
  margin-top: 44px;
}
.story-text p {
  font-size: 15px;
  color: var(--slate);
  line-height: 1.85;
  margin-bottom: 16px;
}
.story-visual {
  background: linear-gradient(135deg, #0b2559, #1a3a72);
  border-radius: 14px;
  padding: 36px;
  color: #fff;
}
.story-visual-title {
  font-family: var(--font-title);
  font-size: 22px;
  color: #fff;
  margin-bottom: 20px;
}
.timeline-item {
  display: flex;
  gap: 14px;
  align-items: flex-start;
  margin-bottom: 18px;
}
.timeline-year {
  font-family: var(--font-body);
  font-size: 12px;
  font-weight: 500;
  color: #5de8e3;
  width: 44px;
  flex-shrink: 0;
  margin-top: 2px;
}
.timeline-dot {
  width: 9px;
  height: 9px;
  background: #5de8e3;
  border-radius: 50%;
  flex-shrink: 0;
  margin-top: 4px;
}
.timeline-text {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.72);
  line-height: 1.6;
}
.mission-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-top: 44px;
}
.mission-card {
  background: #fff;
  border-radius: 12px;
  padding: 26px 22px;
  border: 1px solid #c8e8e6;
  text-align: center;
}
.mission-icon {
  width: 52px;
  height: 52px;
  background: var(--teal-tint);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 14px;
}
.mission-icon svg {
  width: 22px;
  height: 22px;
  stroke: var(--teal);
  fill: none;
  stroke-width: 1.8;
}
.mission-title {
  font-size: 16px;
  font-weight: 600;
  color: var(--navy);
  margin-bottom: 7px;
}
.mission-text {
  font-size: 13px;
  color: var(--muted);
  line-height: 1.7;
}
.values-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 18px;
  margin-top: 44px;
}
.value-item {
  display: flex;
  gap: 14px;
  align-items: flex-start;
  padding: 20px;
  background: var(--cloud);
  border-radius: 12px;
  border: 1px solid var(--border);
}
.value-num {
  font-family: var(--font-title);
  font-size: 26px;
  color: var(--teal);
  font-weight: 600;
  line-height: 1;
  flex-shrink: 0;
  width: 34px;
}
.value-title {
  font-size: 14px;
  font-weight: 600;
  color: var(--navy);
  margin-bottom: 4px;
}
.value-desc {
  font-size: 12px;
  color: var(--muted);
  line-height: 1.65;
}
.cert-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
  margin-top: 40px;
}

/* ===================== CONTACT ===================== */
.contact-layout {
  display: grid;
  grid-template-columns: 1fr 380px;
  gap: 44px;
  align-items: start;
  padding: 64px 0 80px;
}
.contact-form-wrap {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 14px;
  padding: 36px 32px;
}
.contact-form-title {
  font-family: var(--font-title);
  font-size: 26px;
  font-weight: 600;
  color: var(--navy);
  margin-bottom: 4px;
}
.contact-form-subtitle {
  font-size: 14px;
  color: var(--muted);
  margin-bottom: 28px;
}
.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}
.form-group {
  margin-bottom: 16px;
}
.form-label {
  display: block;
  font-size: 12px;
  font-weight: 500;
  color: var(--navy);
  margin-bottom: 5px;
}
.form-label span {
  color: var(--teal);
}
.form-input,
.form-select,
.form-textarea {
  width: 100%;
  padding: 10px 13px;
  border: 1px solid var(--border);
  border-radius: 7px;
  font-size: 13px;
  color: var(--slate);
  font-family: var(--font-body);
  background: #fff;
  transition: border-color 0.2s, box-shadow 0.2s;
  outline: none;
  -webkit-appearance: none;
}
.form-input:focus,
.form-select:focus,
.form-textarea:focus {
  border-color: var(--teal);
  box-shadow: 0 0 0 3px rgba(14, 165, 160, 0.1);
}
.form-textarea {
  resize: vertical;
  min-height: 100px;
}
.form-select {
  cursor: pointer;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath d='M2 4l4 4 4-4' stroke='%236B7280' stroke-width='1.5' fill='none' stroke-linecap='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 11px center;
  padding-right: 32px;
}
.form-submit {
  width: 100%;
  background: var(--teal);
  color: #fff;
  border: none;
  padding: 13px;
  border-radius: 7px;
  font-size: 14px;
  font-weight: 600;
  cursor: pointer;
  font-family: var(--font-body);
  transition: background 0.2s, transform 0.15s;
}
.form-submit:hover {
  background: var(--teal-light);
  transform: translateY(-1px);
}
.form-note {
  font-size: 11px;
  color: var(--muted);
  text-align: center;
  margin-top: 10px;
}
.form-success {
  display: none;
  text-align: center;
  padding: 36px 16px;
}
.form-success-icon {
  width: 56px;
  height: 56px;
  background: var(--teal-tint);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 14px;
}
.form-success-icon svg {
  width: 26px;
  height: 26px;
  stroke: var(--teal);
  fill: none;
  stroke-width: 2;
}
.form-success h3 {
  font-family: var(--font-title);
  font-size: 20px;
  color: var(--navy);
  margin-bottom: 7px;
}
.form-success p {
  font-size: 13px;
  color: var(--muted);
}
.contact-sidebar {
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.contact-info-card {
  background: var(--cloud);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 22px;
}
.contact-info-title {
  font-size: 15px;
  font-weight: 600;
  color: var(--navy);
  margin-bottom: 14px;
}
.contact-info-items {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.contact-info-item {
  display: flex;
  align-items: flex-start;
  gap: 10px;
}
.contact-info-icon {
  width: 34px;
  height: 34px;
  background: var(--teal-tint);
  border-radius: 7px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.contact-info-icon svg {
  width: 15px;
  height: 15px;
  stroke: var(--teal);
  fill: none;
  stroke-width: 2;
}
.contact-info-label {
  font-size: 10px;
  font-weight: 600;
  color: var(--muted);
  text-transform: uppercase;
  letter-spacing: 0.06em;
  margin-bottom: 1px;
}
.contact-info-value {
  font-size: 13px;
  color: var(--slate);
}
.contact-info-value a {
  color: var(--teal);
}
.audit-card {
  background: linear-gradient(135deg, #0b2559, #1a3a72);
  border-radius: 12px;
  padding: 24px;
}
.audit-card-title {
  font-family: var(--font-title);
  font-size: 18px;
  color: #fff;
  margin-bottom: 6px;
}
.audit-card-desc {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.7);
  line-height: 1.6;
  margin-bottom: 14px;
}
.audit-points {
  display: flex;
  flex-direction: column;
  gap: 7px;
  margin-bottom: 16px;
}
.audit-point {
  display: flex;
  align-items: center;
  gap: 7px;
  font-size: 12px;
  color: rgba(255, 255, 255, 0.82);
}
.audit-point::before {
  content: "";
  width: 14px;
  height: 14px;
  background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%235de8e3' stroke-width='2.5'%3E%3Cpolyline points='20 6 9 17 4 12'/%3E%3C/svg%3E")
    center/contain no-repeat;
  flex-shrink: 0;
}
.faq-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
  margin-top: 40px;
}

/* RESPONSIVE */
@media (max-width: 1024px) {
  .hero-inner,
  .diff-hero-grid,
  .auto-grid,
  .story-grid,
  .contact-layout {
    grid-template-columns: 1fr;
  }
  .hero-card {
    display: none;
  }
  .pricing-cards,
  .compliance-grid,
  .values-grid {
    grid-template-columns: 1fr;
  }
  .srv-grid {
    grid-template-columns: 1fr 1fr;
  }
}
@media (max-width: 900px) {
  .services-layout {
    grid-template-columns: 1fr;
  }
  .services-sidebar {
    display: flex;
    flex-wrap: wrap;
    gap: 4px;
    padding: 14px;
    border-right: none;
    border-bottom: 1px solid var(--border);
  }
  .sidebar-label {
    width: 100%;
  }
  .sidebar-link {
    border-left: none;
    border-radius: 6px;
    font-size: 12px;
    padding: 7px 12px;
  }
  .sidebar-link.active {
    background: var(--teal-tint);
  }
  .services-content {
    padding: 32px 20px;
  }
  .client-type-grid {
    grid-template-columns: 1fr;
  }
  .diff-pillar-grid {
    grid-template-columns: 1fr 1fr;
  }
  .mission-grid {
    grid-template-columns: 1fr 1fr;
  }
  .cert-grid {
    grid-template-columns: 1fr 1fr;
  }
  .specialty-list {
    grid-template-columns: 1fr 1fr;
  }
  .who-stats {
    grid-template-columns: 1fr;
  }
  .faq-grid {
    grid-template-columns: 1fr;
  }
  .footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: 24px;
  }
}
@media (max-width: 640px) {
  .srv-grid,
  .clients-grid,
  .stats-band-grid {
    grid-template-columns: 1fr 1fr;
  }
  .stat-band-item:nth-child(2) {
    border-right: none;
  }
  .form-row {
    grid-template-columns: 1fr;
  }
  .diff-pillar-grid,
  .pricing-row,
  .service-sub-grid {
    grid-template-columns: 1fr;
  }
  .hero-actions {
    flex-direction: column;
  }
  .nav-links {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: #fff;
    flex-direction: column;
    padding: 12px;
    border-bottom: 1px solid var(--border);
    gap: 2px;
    z-index: 199;
  }
  .nav-links.open {
    display: flex;
  }
  .nav-hamburger {
    display: flex;
  }
  .dropdown-menu {
    position: static;
    box-shadow: none;
    border: none;
    padding: 4px 0 4px 14px;
    opacity: 1;
    visibility: visible;
    transform: none;
    background: transparent;
    min-width: auto;
  }
  .specialty-list,
  .mission-grid {
    grid-template-columns: 1fr 1fr;
  }
  .footer-grid {
    grid-template-columns: 1fr;
  }
  .footer-bottom {
    flex-direction: column;
    text-align: center;
  }
}
@media (prefers-reduced-motion: reduce) {
  .fade-up {
    opacity: 1;
    transform: none;
    transition: none;
  }
  * {
    animation-duration: 0.01ms !important;
    transition-duration: 0.01ms !important;
  }
}

/* ===================== FINAL FIXES: HEADER + HERO ANIMATION ===================== */
.site-nav {
    padding: 15px 0;
}
.nav-container {
  min-height: 72px;
  justify-content: space-between;
  gap: 18px;
}
.nav-links {
  justify-content: center;
  gap: 6px;
  min-width: 0;
}
.nav-link,
.nav-dropdown > .nav-link,
.btn-nav-cta {
  min-height: 40px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  line-height: 1;
  box-sizing: border-box;
}
.nav-link,
.nav-dropdown > .nav-link {
  font-size: 14px;
  font-weight: 600;
  padding: 0 13px;
}
.nav-dropdown-toggle svg {
  margin-left: 5px;
  flex-shrink: 0;
}
.btn-nav-cta {
  padding: 0 22px;
  border: 1px solid transparent;
}
.dropdown-menu {
  display: block;
  margin: 0;
}
.dropdown-item {
  line-height: 1.35;
}
.nav-hamburger.open span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}
.nav-hamburger.open span:nth-child(2) {
  opacity: 0;
}
.nav-hamburger.open span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

.hero-card-animated {
  position: relative;
  overflow: hidden;
  transform-origin: center;
  animation: hero-card-float 5.5s ease-in-out infinite;
}
.hero-card-animated::before {
  content: "";
  position: absolute;
  inset: -1px;
  border-radius: 16px;
  background: linear-gradient(120deg, rgba(14, 165, 160, 0.18), transparent 32%, rgba(93, 232, 227, 0.22));
  pointer-events: none;
}
.hero-card-animated::after {
  content: "";
  position: absolute;
  top: 0;
  left: -70%;
  width: 55%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(14, 165, 160, 0.16), transparent);
  transform: skewX(-18deg);
  animation: hero-scan 4.2s ease-in-out infinite;
  pointer-events: none;
}
.hero-card-animated > *:not(.hero-orbit) {
  position: relative;
  z-index: 2;
}
.hero-orbit {
  position: absolute;
  width: 170px;
  height: 170px;
  right: -54px;
  top: -54px;
  border: 1px solid rgba(14, 165, 160, 0.18);
  border-radius: 50%;
  animation: hero-orbit-spin 12s linear infinite;
  pointer-events: none;
  z-index: 1;
}
.hero-orbit span {
  position: absolute;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--teal);
  box-shadow: 0 0 18px rgba(14, 165, 160, 0.45);
}
.hero-orbit span:nth-child(1) { top: 6px; left: 78px; }
.hero-orbit span:nth-child(2) { right: 18px; bottom: 34px; width: 7px; height: 7px; }
.hero-orbit span:nth-child(3) { left: 22px; bottom: 28px; width: 6px; height: 6px; }
.rcm-step {
  opacity: 0;
  animation: step-in 0.55s ease both, step-pulse 3.2s ease-in-out infinite;
}
.rcm-step:nth-child(1) { animation-delay: 0.15s, 1.2s; }
.rcm-step:nth-child(2) { animation-delay: 0.28s, 1.45s; }
.rcm-step:nth-child(3) { animation-delay: 0.41s, 1.7s; }
.rcm-step:nth-child(4) { animation-delay: 0.54s, 1.95s; }
.rcm-step:nth-child(5) { animation-delay: 0.67s, 2.2s; }
.rcm-step:nth-child(6) { animation-delay: 0.8s, 2.45s; }
.hero-stat {
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}
.hero-stat:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 20px rgba(11, 37, 89, 0.08);
}
@keyframes hero-card-float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-12px); }
}
@keyframes hero-scan {
  0%, 18% { left: -70%; }
  55%, 100% { left: 120%; }
}
@keyframes hero-orbit-spin {
  to { transform: rotate(360deg); }
}
@keyframes step-pulse {
  0%, 100% { box-shadow: 0 0 0 rgba(14, 165, 160, 0); }
  50% { box-shadow: 0 8px 20px rgba(14, 165, 160, 0.12); }
}
@media (max-width: 1180px) {
  .nav-logo-mark { width: 170px; }
  .nav-container { gap: 12px; }
  .nav-link, .nav-dropdown > .nav-link { font-size: 13px; padding: 0 9px; }
  .btn-nav-cta { padding: 0 16px; font-size: 13px; }
}
@media (max-width: 1024px) {
  .hero-card {
    display: block;
    max-width: 520px;
    width: 100%;
    margin: 20px auto 0;
  }
}
@media (max-width: 900px) {
  .site-nav, .nav-container { min-height: 68px; }
  .nav-links {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: #fff;
    flex-direction: column;
    align-items: stretch;
    padding: 12px;
    border-bottom: 1px solid var(--border);
    box-shadow: 0 12px 30px rgba(11, 37, 89, 0.08);
    gap: 4px;
    z-index: 199;
  }
  .nav-links.open { display: flex; }
  .nav-link, .nav-dropdown > .nav-link {
    width: 100%;
    justify-content: flex-start;
    padding: 0 14px;
  }
  .btn-nav-cta { display: none; }
  .nav-hamburger { display: flex; }
  .dropdown-menu {
    position: static;
    box-shadow: none;
    border: none;
    padding: 4px 0 4px 14px;
    opacity: 1;
    visibility: visible;
    transform: none;
    background: transparent;
    min-width: auto;
  }
}
@media (max-width: 640px) {
  .srv-grid,
  .clients-grid,
  .stats-band-grid,
  .specialty-list,
  .mission-grid {
    grid-template-columns: 1fr;
  }
  .hero { padding: 72px 0 56px; }
  .hero-card { padding: 20px; }
}
@media (prefers-reduced-motion: reduce) {
  .hero-card-animated,
  .hero-card-animated::after,
  .hero-orbit,
  .rcm-step {
    animation: none !important;
  }
  .rcm-step { opacity: 1; }
}



/* ================= COMPACT PREMIUM STATS BAND ================= */

.stats-band-premium {
      position: relative;
    overflow: hidden;
    padding: 32px 0;
    background-image: url(../img/stats-band_bg.png);
    background-size: 100%;
    background-position: center;}

.stats-band-premium::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    90deg,
    transparent 0%,
    rgba(93, 232, 227, 0.04) 50%,
    transparent 100%
  );
  pointer-events: none;
}

.stats-band-premium::after {
  content: "+";
  position: absolute;
  right: 5%;
  top: 18%;
  font-size: 42px;
  color: rgba(93, 232, 227, 0.07);
  font-weight: 700;
  pointer-events: none;
}

.premium-stats-grid {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 14px;
  width: 100%;
  max-width: none;
  margin: 0;
}

.premium-stat-card {
  position: relative;
  border-right: 0 !important;
  padding: 16px 12px 14px;
  border: 1px solid rgba(93, 232, 227, 0.2);
  border-radius: 14px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.07), rgba(255, 255, 255, 0.022));
  box-shadow:
    0 12px 26px rgba(0, 0, 0, 0.12),
    inset 0 1px 0 rgba(255, 255, 255, 0.06);
  backdrop-filter: blur(7px);
  text-align: center;
  transition: transform 0.24s ease, box-shadow 0.24s ease, border-color 0.24s ease;
  animation: premiumStatUp 0.5s ease both;
}

.premium-stat-card:nth-child(1) {
  animation-delay: 0.04s;
}

.premium-stat-card:nth-child(2) {
  animation-delay: 0.1s;
}

.premium-stat-card:nth-child(3) {
  animation-delay: 0.16s;
}

.premium-stat-card:nth-child(4) {
  animation-delay: 0.22s;
}

.premium-stat-card:nth-child(5) {
  animation-delay: 0.28s;
}

.premium-stat-card:hover {
  transform: translateY(-4px);
  border-color: rgba(93, 232, 227, 0.5);
  box-shadow:
    0 16px 34px rgba(0, 0, 0, 0.18),
    0 0 20px rgba(93, 232, 227, 0.09);
}

.premium-stat-icon {
    width: 38px;
    height: 38px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    color: #5de8e3;
    font-size: 15px;
    background: rgba(93, 232, 227, 0.095);
    border: 1px solid rgba(93, 232, 227, 0.24);
    box-shadow: inset 0 0 12px rgba(93, 232, 227, 0.06), 0 0 14px rgba(93, 232, 227, 0.07);
}
.uniq-flex{
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding-bottom: 12px;
}

.stats-band-premium .stat-band-num {
  font-size: clamp(30px, 3.2vw, 32px);
  font-weight: 600;
  color: #5de8e3;
  line-height: 0.9;
  letter-spacing: -1.2px;
  text-shadow: 0 0 16px rgba(93, 232, 227, 0.18);
  margin-bottom: 0;
}

.stats-band-premium .stat-band-num sup {
  font-size: 20px;
    margin-left: 2px;
    vertical-align: -webkit-baseline-middle;
    color: #5de8e3;
}

.stats-band-premium .stat-band-lbl {
  font-family: "Inter", sans-serif;
  font-size: 11px;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.72);
  margin-top: 0;
  line-height: 1.35;
}

@keyframes premiumStatUp {
  from {
    opacity: 0;
    transform: translateY(14px) scale(0.98);
  }

  to {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

/* Responsive */
@media (max-width: 1199px) {
  .premium-stats-grid {
    grid-template-columns: repeat(5, minmax(0, 1fr));
    gap: 10px;
  }

  .premium-stat-card {
    padding: 15px 9px 13px;
  }

  .stats-band-premium .stat-band-lbl {
    font-size: 10.5px;
  }
}

@media (max-width: 991px) {
  .premium-stats-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (max-width: 575px) {
  .stats-band-premium {
    padding: 28px 0;
  }

  .premium-stats-grid {
    grid-template-columns: 1fr;
    gap: 12px;
  }

  .premium-stat-card {
    min-height: 118px;
    padding: 15px 14px;
  }

  .premium-stat-icon {
    width: 36px;
    height: 36px;
    font-size: 14px;
    margin-bottom: 10px;
  }

  .stats-band-premium .stat-band-num {
    font-size: 42px;
  }
}

/* ===================== HEADER RELATIVE + FIXED ON SCROLL ===================== */
.site-nav {
  position: relative;
  width: 100%;
}
.site-nav.scrolled {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 999;
}
.nav-container.container {
  max-width: 1320px;
  padding-left: calc(var(--bs-gutter-x) * .5);
  padding-right: calc(var(--bs-gutter-x) * .5);
}
.page {
  padding-top: 0;
}
@media (min-width: 1400px) {
  .nav-container.container {
    max-width: 1320px;
  }
}
@media (min-width: 1200px) and (max-width: 1399.98px) {
  .nav-container.container {
    max-width: 1140px;
  }
}
@media (min-width: 992px) and (max-width: 1199.98px) {
  .nav-container.container {
    max-width: 960px;
  }
}
@media (min-width: 768px) and (max-width: 991.98px) {
  .nav-container.container {
    max-width: 720px;
  }
}
@media (min-width: 576px) and (max-width: 767.98px) {
  .nav-container.container {
    max-width: 540px;
  }
}
@media (max-width: 900px) {
  .site-nav {
    position: relative;
  }
  .site-nav.scrolled {
    position: fixed;
  }
  .nav-links {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
  }
}
@media (max-width: 991px) {
  .srv-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .srv-card:hover {
    transform: scale(1.04);
  }
}

@media (max-width: 575px) {
  .srv-grid {
    grid-template-columns: 1fr;
  }

  .srv-card:hover {
    transform: scale(1.02);
  }
}




/* ================= WHY AUTOMATION PREMIUM SECTION ================= */

.auto-section-premium {
  position: relative;
  overflow: hidden;
  padding: 90px 0;
  background:
    radial-gradient(circle at 8% 20%, rgba(14, 165, 160, 0.16), transparent 28%),
    radial-gradient(circle at 95% 80%, rgba(14, 165, 160, 0.14), transparent 32%),
    linear-gradient(135deg, #f7ffff 0%, #e8f7f6 52%, #f8ffff 100%);
}

/*.auto-section-premium::before {
  content: "";
  position: absolute;
  left: -120px;
  bottom: -160px;
  width: 420px;
  height: 420px;
  border: 1px solid rgba(14, 165, 160, 0.22);
  border-radius: 50%;
  pointer-events: none;
}
*/
.auto-section-premium {
  position: relative;
  overflow: hidden;
}

.auto-bg-orbit {
  position: absolute;
  left: -120px;
  bottom: -150px;
  width: 420px;
  height: 420px;
  border-radius: 50%;
  pointer-events: none;
  z-index: 1;
}

.auto-bg-orbit span {
  position: absolute;
  inset: 0;
  border-radius: 50%;
  border: 1px solid rgba(14, 165, 160, 0.18);
  animation: autoOrbitPulse 5s linear infinite;
}

.auto-bg-orbit span:nth-child(2) {
  inset: 42px;
  border-color: rgba(14, 165, 160, 0.14);
  animation-duration: 7s;
  animation-direction: reverse;
}

.auto-bg-orbit span:nth-child(3) {
  inset: 84px;
  border-color: rgba(14, 165, 160, 0.1);
  animation-duration: 9s;
}

.auto-bg-orbit span::before {
  content: "";
  position: absolute;
  top: 18%;
  left: 50%;
  width: 9px;
  height: 9px;
  background: var(--teal);
  border-radius: 50%;
  box-shadow: 0 0 18px rgba(14, 165, 160, 0.75);
}

.auto-bg-orbit span:nth-child(2)::before {
  top: 70%;
  left: 22%;
  width: 7px;
  height: 7px;
  opacity: 0.75;
}

.auto-bg-orbit span:nth-child(3)::before {
  top: 42%;
  left: 88%;
  width: 6px;
  height: 6px;
  opacity: 0.55;
}

@keyframes autoOrbitPulse {
  0% {
    transform: rotate(0deg) scale(1);
    opacity: 0.45;
  }

  50% {
    transform: rotate(180deg) scale(1.05);
    opacity: 0.9;
  }

  100% {
    transform: rotate(360deg) scale(1);
    opacity: 0.45;
  }
}
.auto-section-premium::after {
  content: "";
  position: absolute;
  right: 0;
  top: 0;
  width: 420px;
  height: 100%;
  background-image: radial-gradient(rgba(14, 165, 160, 0.18) 1px, transparent 1px);
  background-size: 16px 16px;
  opacity: 0.35;
  pointer-events: none;
}

.auto-premium-grid {
    position: relative;
    z-index: 2;
    grid-template-columns: 1.05fr 1fr;
    gap: 170px;
}
.auto-content {
  position: relative;
}

.auto-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: #fff;
  border: 1px solid rgba(14, 165, 160, 0.18);
  box-shadow: 0 8px 22px rgba(11, 37, 89, 0.06);
  border-radius: 40px;
  padding: 8px 16px;
  margin-bottom: 22px;
}

.auto-eyebrow span {
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: var(--teal);
  box-shadow: 0 0 0 6px rgba(14, 165, 160, 0.12);
}

.auto-title {
  max-width: 560px;
  font-size: clamp(26px, 4vw, 40px);
  margin-bottom: 18px;
}

.auto-title-line {
  width: 110px;
  height: 3px;
  border-radius: 20px;
  background: linear-gradient(90deg, var(--teal), transparent);
  margin-bottom: 28px;
}

.auto-text {
  font-size: 15px;
  color: var(--slate);
  line-height: 1.85;
  max-width: 610px;
  margin-bottom: 16px;
}

.auto-premium-points {
  margin-top: 34px;
  gap: 0;
  max-width: 640px;
}

.auto-premium-points li {
  position: relative;
  align-items: center;
  padding: 13px 0;
  border-bottom: 1px solid rgba(11, 37, 89, 0.12);
}

.auto-premium-points li:first-child {
  border-top: 1px solid rgba(11, 37, 89, 0.12);
}

.auto-premium-points .auto-check {
  width: 26px;
  height: 26px;
  box-shadow: 0 8px 18px rgba(14, 165, 160, 0.25);
}

.auto-premium-points .auto-check i {
  font-size: 11px;
  color: #fff;
}

.auto-premium-visual {
  position: relative;
  grid-template-columns: repeat(2, 1fr);
  gap: 18px;
}

.auto-premium-visual::before {
      content: "";
    position: absolute;
    left: -15%;
    top: 50%;
    transform: translate(-50%, -50%) !important;
    width: 1px;
    height: 78%;
    background: linear-gradient(180deg, transparent, rgba(14, 165, 160, 0.55), transparent);
}

.auto-premium-visual::after {
  content: "";
  position: absolute;
  left: -15%;
  top: 50%;
  width: 30px;
  height: 30px;
  background: var(--teal);
  border-radius: 50%;
  transform: translate(-50%, -50%) scale(1);
  box-shadow:
    0 0 0 14px rgba(14, 165, 160, 0.12),
    0 0 0 28px rgba(14, 165, 160, 0.06);
  animation: pulseDot 2.2s ease-in-out infinite;
}

@keyframes pulseDot {
  0% {
    transform: translate(-50%, -50%) scale(1);
    box-shadow:
      0 0 0 10px rgba(14, 165, 160, 0.16),
      0 0 0 22px rgba(14, 165, 160, 0.08);
  }

  50% {
    transform: translate(-50%, -50%) scale(1.12);
    box-shadow:
      0 0 0 18px rgba(14, 165, 160, 0.10),
      0 0 0 36px rgba(14, 165, 160, 0.04);
  }

  100% {
    transform: translate(-50%, -50%) scale(1);
    box-shadow:
      0 0 0 10px rgba(14, 165, 160, 0.16),
      0 0 0 22px rgba(14, 165, 160, 0.08);
  }
}

.auto-premium-visual .auto-box {
  position: relative;
  overflow: hidden;
  min-height: 170px;
  padding: 26px 18px 24px;
  border-radius: 18px;
  background: linear-gradient(145deg, #06214a 0%, #0b315f 100%);
  border: 1px solid rgba(93, 232, 227, 0.22);
  box-shadow:
    0 18px 42px rgba(11, 37, 89, 0.18),
    inset 0 1px 0 rgba(255, 255, 255, 0.08);
  transition: transform 0.28s ease, box-shadow 0.28s ease;
}

.auto-premium-visual .auto-box::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 50% 0%, rgba(93, 232, 227, 0.24), transparent 42%);
  opacity: 0.8;
  pointer-events: none;
}

.auto-premium-visual .auto-box:hover {
  transform: scale(1.04);
  box-shadow:
    0 24px 54px rgba(11, 37, 89, 0.26),
    0 0 28px rgba(14, 165, 160, 0.16);
}

.auto-box-icon {
  position: relative;
  z-index: 1;
  width: 54px;
  height: 54px;
  margin: 0 auto 16px;
  border-radius: 50%;
  background: linear-gradient(135deg, #0ea5a0, #5de8e3);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  box-shadow: 0 14px 28px rgba(14, 165, 160, 0.28);
}

.auto-premium-visual .auto-box-num {
  position: relative;
  z-index: 1;
  font-size: 48px;
  font-weight: 600;
  color: #5de8e3;
  line-height: 1;
  margin-bottom: 12px;
}

.auto-premium-visual .auto-box-num::after {
  content: "";
  display: block;
  width: 28px;
  height: 2px;
  background: #5de8e3;
  border-radius: 20px;
  margin: 12px auto 0;
}

.auto-premium-visual .auto-box-lbl {
  position: relative;
  z-index: 1;
  font-size: 13px;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.82);
  line-height: 1.45;
}

/* Responsive */
@media (max-width: 991px) {
  .auto-premium-grid {
    grid-template-columns: 1fr;
    gap: 46px;
  }

  .auto-premium-visual::before,
  .auto-premium-visual::after {
    display: none;
  }
}

@media (max-width: 575px) {
  .auto-section-premium {
    padding: 64px 0;
  }

  .auto-title {
    font-size: 34px;
  }

  .auto-premium-visual {
    grid-template-columns: 1fr;
  }

  .auto-premium-visual .auto-box {
    min-height: 150px;
  }
}



/* ================= WHO WE WORK WITH - PREMIUM ================= */

.clients-section-premium {
  position: relative;
  overflow: hidden;
  padding: 90px 0 78px;
  background:
    radial-gradient(circle at 0% 100%, rgba(14, 165, 160, 0.12), transparent 22%),
    radial-gradient(circle at 100% 0%, rgba(14, 165, 160, 0.10), transparent 24%),
    linear-gradient(135deg, #f9ffff 0%, #f3fbfb 52%, #fbffff 100%);
}

.clients-section-premium .container {
  position: relative;
  z-index: 2;
}

.clients-section-premium::before {
  content: "";
  position: absolute;
  left: -100px;
  bottom: -120px;
  width: 320px;
  height: 320px;
  background-image: radial-gradient(rgba(14, 165, 160, 0.18) 1.2px, transparent 1.2px);
  background-size: 12px 12px;
  opacity: 0.28;
  pointer-events: none;
}

.clients-section-premium::after {
  content: "";
  position: absolute;
  right: 140px;
  top: 20px;
  width: 260px;
  height: 120px;
  background-image: radial-gradient(rgba(14, 165, 160, 0.18) 1.4px, transparent 1.4px);
  background-size: 16px 16px;
  opacity: 0.34;
  pointer-events: none;
}

.clients-premium-head {
  width:100%;
  margin-bottom: 42px;
}

.clients-title {
  font-size: clamp(26px, 4vw, 40px);
  line-height: 1.12;
  margin-bottom: 16px;
}

.clients-desc {
  width: 100%;
  font-size: 16px;
  line-height: 1.8;
}

.clients-bg-orbit {
  position: absolute;
  right: -90px;
  top: -60px;
  width: 420px;
  height: 420px;
  border: 1px solid rgba(14, 165, 160, 0.12);
  border-radius: 50%;
  pointer-events: none;
  z-index: 1;
  animation: clientsOrbitSpin 18s linear infinite;
}

.clients-bg-orbit::before,
.clients-bg-orbit::after {
  content: "";
  position: absolute;
  border-radius: 50%;
}

.clients-bg-orbit::before {
  inset: 42px;
  border: 1px solid rgba(14, 165, 160, 0.10);
}

.clients-bg-orbit::after {
  inset: 88px;
  border: 1px solid rgba(14, 165, 160, 0.08);
}

.clients-bg-orbit span {
  position: absolute;
  border-radius: 50%;
  background: var(--teal);
  box-shadow: 0 0 16px rgba(14, 165, 160, 0.28);
}

.clients-bg-orbit span:nth-child(1) {
  width: 10px;
  height: 10px;
  left: 38px;
  bottom: 66px;
}

.clients-bg-orbit span:nth-child(2) {
  width: 12px;
  height: 12px;
  right: 70px;
  top: 36px;
}

.clients-bg-orbit span:nth-child(3) {
  width: 8px;
  height: 8px;
  right: 30px;
  bottom: 98px;
}

@keyframes clientsOrbitSpin {
  to {
    transform: rotate(360deg);
  }
}

.clients-premium-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
  margin-top: 0;
}

.client-premium-card {
  position: relative;
  overflow: hidden;
  min-height: 270px;
  padding: 34px 26px 28px;
  border-radius: 22px;
  background: linear-gradient(180deg, #ffffff 0%, #fbfefe 100%);
  border: 1px solid rgba(14, 165, 160, 0.14);
  box-shadow:
    0 14px 34px rgba(11, 37, 89, 0.08),
    inset 0 1px 0 rgba(255, 255, 255, 0.7);
  transition:
    transform 0.3s ease,
    box-shadow 0.3s ease,
    border-color 0.3s ease;
}

.client-premium-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 50% 0%, rgba(14, 165, 160, 0.08), transparent 36%);
  opacity: 0.9;
  pointer-events: none;
}

.client-premium-card:hover {
  transform: translateY(-6px);
  border-color: rgba(14, 165, 160, 0.28);
  box-shadow:
    0 20px 42px rgba(11, 37, 89, 0.12),
    0 0 20px rgba(14, 165, 160, 0.08);
}

.client-premium-card .client-icon {
  width: 84px;
  height: 84px;
  margin: 0 auto 18px;
  border-radius: 22px;
  background: linear-gradient(135deg, #eefbfa 0%, #e7f6f5 100%);
  color: var(--teal);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 34px;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.65);
}

.client-premium-card .client-name {
  font-size: 19px;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 12px;
  text-align: center;
  line-height: 1.35;
}

.client-premium-card .client-desc {
  font-size: 14px;
  line-height: 1.75;
  color: var(--muted);
  text-align: center;
  max-width: 270px;
  margin: 0 auto;
}

.client-card-dots {
  position: absolute;
  right: 18px;
  bottom: 16px;
  width: 48px;
  height: 34px;
  background-image: radial-gradient(rgba(14, 165, 160, 0.18) 1.2px, transparent 1.2px);
  background-size: 12px 12px;
  opacity: 0.5;
  pointer-events: none;
}

.clients-premium-btn {
  text-align: center;
  margin-top: 28px;
}

.clients-cta-btn {
  min-width: 235px;
  height: 56px;
  border-radius: 12px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  font-size: 15px;
  font-weight: 600;
  box-shadow: 0 14px 30px rgba(14, 165, 160, 0.18);
}

.clients-cta-btn i {
  font-size: 14px;
  transition: transform 0.25s ease;
}

.clients-cta-btn:hover i {
  transform: translateX(4px);
}

@media (max-width: 1199px) {
  .clients-premium-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 991px) {
  .clients-section-premium {
    padding: 72px 0 64px;
  }

  .clients-bg-orbit {
    display: none;
  }

  .clients-title {
    font-size: 42px;
  }
}

@media (max-width: 575px) {
  .clients-premium-grid {
    grid-template-columns: 1fr;
  }

  .client-premium-card {
    min-height: auto;
    padding: 28px 20px 24px;
    border-radius: 18px;
  }

  .client-premium-card .client-icon {
    width: 72px;
    height: 72px;
    font-size: 28px;
    border-radius: 18px;
  }

  .client-premium-card .client-name {
    font-size: 18px;
  }

  .clients-title {
    font-size: 34px;
  }

  .clients-desc {
    font-size: 15px;
  }
  
  
}

p{
    text-align: justify;
}