/* =============================================================

   MedsIT Nexus — Home Page

   Styles derived 1:1 from the Figma design tokens.



   Design tokens (from Figma):

     Primary Blue      #273775

     Secondary Orange  #FC5D61

     Black Text        #3D3D3D

     White             #FFFFFF

     Placeholder Grey  #9A9A9F

     BG Blue           #EFF2FF

     Light Grey        #E5E7EB

   Type: Poppins (primary), Montserrat (section titles), Inter (step numbers)

   ============================================================= */



/* -------------------- Design tokens -------------------- */

:root {

  --c-blue: #273775;

  --c-orange: #fc5d61;

  --c-text: #3d3d3d;

  --c-white: #ffffff;

  --c-placeholder: #9a9a9f;

  --c-bg-blue: #eff2ff;

  --c-light-grey: #e5e7eb;



  --font-primary: "Poppins", sans-serif;

  --font-title: "Montserrat", sans-serif;

  --font-num: "Inter", sans-serif;



  /* Layout: Figma content is 1240px inside a 1440px frame (100px gutters) */

  --page-max: 1240px;

  --page-gutter: 100px;



  --header-h: 56px;

}



/* -------------------- Reset / base -------------------- */

* {

  box-sizing: border-box;

}



html {

  scroll-behavior: smooth;

  overflow-x: hidden;

}



body {

  margin: 0;

  font-family: var(--font-primary);

  color: var(--c-text);

  background: var(--c-white);

  font-size: 16px;

  line-height: 1.5;

  -webkit-font-smoothing: antialiased;

}



img {

  max-width: 100%;

  display: block;

}



a {

  text-decoration: none;

  color: inherit;

}



ul {

  list-style: none;

  margin: 0;

  padding: 0;

}



h1,

h2,

h3,

h4 {

  margin: 0;

}



.accent {

  color: var(--c-orange);

}



/* Centered page container matching the 1240px Figma content width */

.container-page {

  max-width: calc(var(--page-max) + var(--page-gutter) * 2);

  margin: 0 auto;

  padding-left: var(--page-gutter);

  padding-right: var(--page-gutter);

}



/* Reusable tagline pill (used in hero + section heads) */

.tagline {

  display: inline-flex;

  width: fit-content;

  max-width: 100%;

  background: rgba(39, 55, 117, 0.1);

  color: var(--c-blue);

  font-weight: 700;

  font-size: 12px;

  line-height: 1;

  text-transform: capitalize;

  padding: 8px 10px;

  border-radius: 9px;

}



/* Section head shared block */

.section-head {

  display: flex;

  flex-direction: column;

  align-items: center;

  gap: 10px;

  text-align: center;

}



.section-title {

  font-family: var(--font-title);

  font-weight: 700;

  font-size: 32px;

  line-height: 1.14;

  color: var(--c-blue);

}



.section-sub {

  font-weight: 400;

  font-size: 16px;

  line-height: 1.575;

  color: var(--c-text);

  max-width: 834px;

  margin: 0;

}



/* =============================================================

   HEADER / NAVIGATION

   ============================================================= */

.site-header {

  position: sticky;

  top: 0;

  z-index: 1000;

  background: var(--c-white);

  transition: box-shadow 0.25s ease;

}



.site-header.is-scrolled {

  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.08);

}



.header-inner {

  display: flex;

  align-items: center;

  justify-content: space-between;

  height: 96px;

}



.logo img {

  height: 37px;

  width: auto;

}



.nav-list {

  display: flex;

  align-items: center;

  gap: 40px;

}



.nav-item {

  position: relative;

}



.nav-link {

  display: inline-flex;

  align-items: center;

  gap: 10px;

  font-weight: 600;

  font-size: 16px;

  line-height: 24px;

  color: var(--c-text);

  white-space: nowrap;

  transition: color 0.2s ease;

}



.nav-link.is-active,

.nav-link:hover {

  color: var(--c-orange);

  font-weight: 700;

}



.chevron {

  width: 18px;

  height: 18px;

  transition: transform 0.2s ease;

}



.has-dropdown:hover .chevron {

  transform: rotate(180deg);

}



/* Custom dropdown */

.dropdown-menu-custom {

  position: absolute;

  top: calc(100% + 12px);

  left: 0;

  min-width: 200px;

  background: var(--c-white);

  border-radius: 12px;

  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);

  padding: 10px 0;

  opacity: 0;

  visibility: hidden;

  transform: translateY(8px);

  transition: opacity 0.2s ease, transform 0.2s ease, visibility 0.2s;

}



.has-dropdown:hover .dropdown-menu-custom,

.has-dropdown.open .dropdown-menu-custom {

  opacity: 1;

  visibility: visible;

  transform: translateY(0);

}



.dropdown-menu-custom li a {

  display: block;

  padding: 8px 20px;

  font-size: 15px;

  font-weight: 500;

  color: var(--c-text);

  transition: background 0.15s ease, color 0.15s ease;

}



.dropdown-menu-custom li a:hover {

  background: var(--c-bg-blue);

  color: var(--c-blue);

}



.header-actions {

  display: flex;

  align-items: center;

  gap: 16px;

}



/* Book an Appointment button */

.btn-appointment {

  display: inline-flex;

  align-items: center;

  background: var(--c-blue);

  color: var(--c-white);

  font-weight: 700;

  font-size: 20px;

  line-height: 24px;

  padding: 16px 24px;

  border-radius: 12px;

  filter: drop-shadow(0 0 7.15px rgba(0, 0, 0, 0.18));

  white-space: nowrap;

  transition: background 0.2s ease, transform 0.15s ease;

}



.btn-appointment:hover {

  background: #1e2c5f;

  transform: translateY(-1px);

}



/* Hamburger */

.nav-toggle {

  display: none;

  flex-direction: column;

  gap: 5px;

  width: 34px;

  height: 30px;

  padding: 4px;

  background: none;

  border: none;

  cursor: pointer;

}



.nav-toggle span {

  display: block;

  height: 3px;

  border-radius: 2px;

  background: var(--c-blue);

  transition: transform 0.25s ease, opacity 0.25s ease;

}



.nav-toggle.is-open span:nth-child(1) {

  transform: translateY(8px) rotate(45deg);

}



.nav-toggle.is-open span:nth-child(2) {

  opacity: 0;

}



.nav-toggle.is-open span:nth-child(3) {

  transform: translateY(-8px) rotate(-45deg);

}



/* Mobile menu */

.mobile-menu {

  position: fixed;

  top: 96px;

  left: 0;

  right: 0;

  background: var(--c-white);

  box-shadow: 0 12px 24px rgba(0, 0, 0, 0.12);

  transform: translateY(-120%);

  transition: transform 0.3s ease;

  z-index: 999;

  padding: 12px 0;

}



.mobile-menu.is-open {

  transform: translateY(0);

}



.mobile-menu ul li a {

  display: block;

  padding: 14px 24px;

  font-weight: 600;

  font-size: 16px;

  color: var(--c-text);

}



.mobile-menu ul li a.is-active {

  color: var(--c-orange);

}



.mobile-cta {

  margin: 12px 24px;

  justify-content: center;

  font-size: 16px !important;

  padding: 14px 24px !important;

}



/* =============================================================

   HERO

   ============================================================= */

.hero {

  /* Gradient wash from the Figma hero container */

  background: linear-gradient(to left,

      rgba(239, 242, 255, 0.6),

      #f9faff 48.866%,

      rgba(239, 242, 255, 0.3) 98.681%);

}



.hero-inner {

  display: flex;

  flex-direction: column;

  gap: 40px;

  padding-top: 42.5px;

  padding-bottom: 42.5px;

}



.hero-top {

  display: flex;

  gap: 40px;

  align-items: flex-start;

  justify-content: space-between;

}



.hero-copy {

  display: flex;

  flex-direction: column;

  gap: 20px;

  max-width: 622px;

}



.hero-heading {

  font-family: var(--font-primary);

  font-weight: 700;

  font-size: 42px;

  line-height: 1.2;

  color: var(--c-blue);

}



.hero-heading .accent {

  color: var(--c-orange);

}



.hero-lead {

  font-weight: 500;

  font-size: 16px;

  line-height: 1.8;

  color: var(--c-text);

  margin: 0;

}



/* Hero trust logo cards */

.hero-logos {

  display: flex;

  gap: 16px;

  margin-top: 20px;

  width: 100%;

}



/* flex:1 1 0 + max-width so all 3 cards always share one row and shrink
   together (matching Figma's mobile frame, where the 3 cards + 2 gaps
   exactly fill the 400px width) instead of staying pinned at the desktop
   139px size and wrapping onto extra lines on narrow viewports. */

.logo-card {

  background: var(--c-white);

  border-radius: 7.5px;

  padding: 9px;

  filter: drop-shadow(0 0 3.78px rgba(0, 0, 0, 0.1));

  flex: 1 1 0;

  max-width: 139px;

  aspect-ratio: 139 / 73;

  box-sizing: border-box;

  display: flex;

  align-items: center;

  justify-content: center;

  overflow: hidden;

}



.logo-card img,

.logo-card svg {

  max-width: 100%;

  max-height: 100%;

  width: auto;

  height: auto;

}



/* Hero orbit visual */

.hero-visual {

  flex-shrink: 0;

  width: 455px;

  max-width: 100%;

  aspect-ratio: 455 / 503;

  position: relative;

  container-type: inline-size;

}



.orbit {

  position: absolute;

  inset: 0;

}



/* Each spoke's left/top pins its start to orbit-center's exact center;
   width is the precomputed distance to that node's icon center, and
   rotate() (around the left-center transform-origin) points it straight
   at the node. Both ends land under the opaque center circle / node
   icon, so the spoke reads as a single line fully connecting the two. */

.orbit-spoke-radial {

  position: absolute;

  height: 1px;

  background: rgba(39, 55, 117, 0.2);

  transform-origin: 0% 50%;

  pointer-events: none;

}



.orbit-dot {

  position: absolute;

  width: 2.198%;

  aspect-ratio: 1;

  border-radius: 50%;

  background: #273775;

  pointer-events: none;

}



.orbit-ring {

  position: absolute;

  border-radius: 50%;

  border: 3px solid rgba(39, 55, 117, 0.07);

  top: 50%;

  left: 50%;

  transform: translate(-50%, -50%);

}



.orbit-ring--outer {

  /* 425 / 455 — Figma's outer-ring-to-visual-width ratio */
  width: 93.41%;

  aspect-ratio: 1;

}



.orbit-ring--mid {

  /* 296 / 455 */
  width: 65.05%;

  aspect-ratio: 1;

  border: 3px solid rgba(39, 55, 117, 0.03);

}



.orbit-ring--inner {

  /* 212 / 455 */
  width: 46.62%;

  aspect-ratio: 1;

  border-style: solid;

  border-color: rgba(39, 55, 117, 0.12);

}



.orbit-center {

  position: absolute;

  top: 50%;

  left: 50%;

  transform: translate(-50%, -50%);

  /* 160 / 455 */
  width: 35.16%;

  aspect-ratio: 1;

  display: flex;

  align-items: center;

  justify-content: center;

}



.orbit-center svg {

  width: 100%;

  height: 100%;

}



.orbit-node {

  position: absolute;

  display: flex;

  flex-direction: column;

  align-items: center;

  gap: 2.637cqw;

  text-align: center;

}



.node-icon {

  /* cqw (not %) because .orbit-node is an auto-width absolutely-positioned
     parent — percentages there are circular/undefined. cqw resolves
     against .hero-visual's own inline size (container-type above)
     regardless of that intermediate auto-width box. */
  width: 13.19cqw;

  aspect-ratio: 1;

  border-radius: 50%;

  background: var(--c-white);

  display: flex;

  align-items: center;

  justify-content: center;

  box-shadow: 0 1px 2px rgba(0, 0, 0, 0.25);

}



.node-icon img {

  width: 50%;

  height: 50%;

}



.node-label {

  font-weight: 600;

  font-size: 3.077cqw;

  line-height: 1.6;

  color: var(--c-text);

  white-space: nowrap;

}



/* Node positions as percentages of .hero-visual (455x503 in Figma), so the
   whole orbit — rings, spokes, nodes — scales together at every breakpoint
   instead of nodes staying pinned to their desktop pixel position while
   the container shrinks around them (which is what let node labels spill
   outside .hero-visual, widen the page, and clip the hero copy on mobile). */

.orbit-node--top {

  top: 1.19%;

  left: 50%;

  transform: translateX(-50%);

}



.orbit-node--right {

  top: 29.03%;

  right: 0;

}



.orbit-node--bottom-right {

  top: 68.59%;

  right: 2.64%;

}



.orbit-node--bottom {

  top: 84.49%;

  left: 50%;

  transform: translateX(-50%);

}



.orbit-node--bottom-left {

  top: 66.4%;

  left: 4.84%;

}



.orbit-node--left {

  top: 29.03%;

  left: 0;

}



/* Booking form */

.booking-form {

  background:

    linear-gradient(var(--c-white), var(--c-white)) padding-box,

    linear-gradient(90deg, #273775 40%, #FC5D61 100%) border-box;

  border: 2px solid transparent;

  border-radius: 20px;

  padding: 30px 40px;

  display: flex;

  align-items: flex-end;

  gap: 10px;

}



.booking-fields {

  display: flex;

  flex: 1 1 auto;

  gap: 20px;

}



.field {

  display: flex;

  flex-direction: column;

  gap: 6px;

  flex: 1 1 0;

  min-width: 0;

}



.field label {

  font-weight: 600;

  font-size: 12px;

  color: var(--c-text);

}



.field input,

.field select {

  height: 40px;

  background: var(--c-bg-blue);

  border: 1px solid var(--c-light-grey);

  border-radius: 8px;

  padding: 7px 7px 7px 11px;

  font-family: var(--font-primary);

  font-size: 14px;

  color: var(--c-text);

  outline: none;

  transition: border-color 0.2s ease;

}



.field select {

  -webkit-appearance: none;

  -moz-appearance: none;

  appearance: none;

}



.field input::placeholder,

.field select:invalid {

  color: var(--c-placeholder);

}



.field input:focus,

.field select:focus {

  border-color: var(--c-blue);

}



.booking-submit {

  flex-shrink: 0;

  width: 150px;

  height: 40px;

  background: var(--c-orange);

  border: 1px solid var(--c-white);

  color: var(--c-white);

  font-weight: 500;

  font-size: 16px;

  cursor: pointer;

  transition: filter 0.2s ease, transform 0.15s ease;

}



.booking-submit:hover {

  filter: brightness(0.95);

  transform: translateY(-1px);

}



/* =============================================================

   CORE STRENGTHS (stats)

   ============================================================= */

.strengths {

  position: relative;

  height: 350px;

  padding: 40px;

  overflow: hidden;

}



.strengths-bg {

  position: absolute;

  inset: 0;

  overflow: hidden;

  background: linear-gradient(to right, var(--c-blue) 29.808%, var(--c-orange));

  z-index: 0;

}



.strengths-bg-texture {

  position: absolute;

  left: 0;

  top: -35.83%;

  width: 100%;

  height: 147.84%;

  max-width: none;

  opacity: 0.2;

  pointer-events: none;

}



.strengths-inner {

  position: relative;

  z-index: 1;

  display: flex;

  flex-direction: column;

  align-items: center;

  gap: 40px;

}



.strengths-title {

  font-weight: 700;

  font-size: 32px;

  line-height: 1.1;

  color: var(--c-white);

  text-align: center;

}



.strengths-cards {

  display: flex;

  align-items: center;

  justify-content: space-between;

  gap: 16px;

  width: 100%;

  max-width: 1240px;

}



.stat-card:not(:last-child)::after {

  content: "";

  position: absolute;

  top: 50%;

  left: 100%;
  /* start at the card's right edge */

  width: 120px;
  /* spans the flex `gap` */

  height: 1px;

  background: var(--c-orange);

  transform: translateY(-50%);

  z-index: 0;

}



/* Dot centered on the connector line, in the middle of the gap */

.stat-card:not(:last-child)::before {

  content: "";

  position: absolute;

  top: 50%;

  left: calc(100% + 55px);
  /* middle of the 16px gap */

  width: 10px;

  height: 10px;

  border-radius: 50%;

  background: var(--c-white);

  transform: translate(-50%, -50%);

  box-shadow: 0 0 0 3px rgba(252, 93, 97, 0.25);
  /* soft halo from the design */

  z-index: 1;

}



.stat-card {

  position: relative;

  width: 157px;

  height: 173px;

  cursor: pointer;

}



.stat-card:hover {

  z-index: 2;
  /* so the enlarged card sits above its neighbours */

}



/* Visual card face — scales on hover while .stat-card (and its connector
   line/dot pseudo-elements) stays put, so the connector never shifts. */

.stat-card-face {

  position: relative;

  z-index: 2;

  width: 100%;

  height: 100%;

  box-sizing: border-box;

  background: var(--c-white);

  border-radius: 40px;

  padding: 12px 0;

  display: flex;

  flex-direction: column;

  align-items: center;

  gap: 10px;

  box-shadow: 0 4px 14px rgba(0, 0, 0, 0.25);

  transition: transform 0.25s ease, box-shadow 0.25s ease;

  transform-origin: center;

  will-change: transform;

}



.stat-card:hover .stat-card-face {

  /* 218/157 ≈ 1.388 — matches the featured card's target size */

  transform: scale(1.388);

  box-shadow: 0 4px 7px rgba(0, 0, 0, 0.25);

}



.stat-icon {

  width: 50px;

  height: 50px;

  border-radius: 50%;

  background: var(--c-bg-blue);

  display: flex;

  align-items: center;

  justify-content: center;

  filter: drop-shadow(0 1.67px 2.5px rgba(0, 0, 0, 0.1));

}



.stat-card--featured .stat-icon {

  width: 60px;

  height: 60px;

}



.stat-icon img {

  width: 33px;

  height: 33px;

}



.stat-card--featured .stat-icon img {

  width: 40px;

  height: 40px;

}



.stat-flag {

  position: absolute;

  top: -15px;

  left: 89px;

  width: 40px;

  height: 24px;

}



.stat-text {

  text-align: center;

}



.stat-number {

  display: block;

  font-weight: 800;

  font-size: 20px;

  line-height: 1.38;

  color: var(--c-orange);

}



.stat-label {

  display: block;

  font-weight: 600;

  font-size: 16px;

  line-height: 1.38;

  color: var(--c-blue);

}



/* =============================================================

   SERVICES / RCM PROCESS

   ============================================================= */

.services {

  position: relative;

  background: var(--c-bg-blue);

  padding: 40px 100px;

  overflow: hidden;

}



.services-ellipse {

  position: absolute;

  top: -101px;

  right: -141px;

  width: 683px;

  height: 683px;

  border-radius: 50%;

  background: radial-gradient(circle,

      rgba(39, 55, 117, 0.06),

      rgba(39, 55, 117, 0) 70%);

  z-index: 0;

}



.services-inner {

  position: relative;

  z-index: 1;

  display: flex;

  flex-direction: column;

  align-items: center;

  gap: 30px;

}



/* Step cards track (horizontally scrollable like Figma overflow-auto) */

.service-steps {

  width: 100%;

  padding: 40px 0;

  position: relative;

}



.service-track {

  display: flex;

  gap: 10px;

  align-items: stretch;

  justify-content: center;

  min-width: min-content;

}



.step-card {

  position: relative;

  flex: 1 1 0;

  max-width: 180px;

  min-width: 140px;

  background: var(--c-white);

  border: 1px solid #f3f4f6;

  border-radius: 16px;

  padding: 17px;

  display: flex;

  flex-direction: column;

  align-items: center;

  gap: 10px;

  text-align: center;

  cursor: pointer;

  box-shadow: 0 10px 25px -5px rgba(0, 0, 0, 0.05),

    0 8px 10px -6px rgba(0, 0, 0, 0.05);

  transform-origin: bottom center;

}



.step-card:hover {

  background: linear-gradient(to right, var(--c-blue) 29.808%, var(--c-orange));

  color: var(--c-white);

  transform: scale(1.05);
  /* subtle pop — was 1.388, way too big */

  z-index: 2;

}

/* .step-card--grad {

  

} */



.step-icon {

  width: 64px;

  height: 64px;

  border-radius: 50%;

  background: var(--c-white);

  display: flex;

  align-items: center;

  justify-content: center;

  margin-bottom: 16px;

  filter: drop-shadow(0 1px 1px rgba(0, 0, 0, 0.05));

}



.step-icon--tint {

  border-radius: 50px;

  background: var(--White, #FFF);

  box-shadow: 0 2px 6px 0 rgba(0, 0, 0, 0.15);

}



.step-icon img {

  width: 40px;

  height: 40px;

}



.step-card h3 {

  font-weight: 700;

  font-size: 18px;

  line-height: 1.25;

  color: var(--c-blue);

}



.step-card:hover h3 {

  color: var(--c-white);

}



.step-card p {

  font-weight: 400;

  font-size: 10px;

  line-height: 1.625;

  color: var(--c-text);

  margin: 0;

}



.step-card:hover p {

  color: var(--c-white);

}



/* Numbered badge */

.step-card:hover .step-num {

  position: absolute;

  bottom: -18px;

  left: 50%;

  transform: translateX(-50%);

  width: 36px;

  height: 36px;

  border-radius: 18px;

  border: 3px solid var(--c-white);

  background: var(--c-white);

  color: var(--c-blue);

  font-family: var(--font-num);

  font-weight: 800;

  font-size: 14px;

  line-height: 30px;

  text-align: center;

  box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);

}



.step-num--dark {

  position: absolute;

  bottom: -18px;

  left: 50%;

  transform: translateX(-50%);

  width: 36px;

  height: 36px;

  border-radius: 18px;

  border: 3px solid var(--c-white);

  background: var(--c-blue);

  color: var(--c-white);

  font-family: var(--font-num);

  font-weight: 800;

  font-size: 14px;

  line-height: 30px;

  text-align: center;

  box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);

}



/* Services CTA bar */

.services-cta {

  background: var(--c-white);

  border-radius: 20px;

  box-shadow: 0 2px 15.1px rgba(0, 0, 0, 0.15);

  padding: 30px 22px;

  display: flex;

  align-items: center;

  justify-content: space-between;

  gap: 20px;

  width: 100%;

  margin-top: 20px;

}



.cta-copy {

  width: 567px;

  padding-right: 20px;

  border-right: 1px solid var(--c-text);

}



.cta-title {

  font-weight: 700;

  font-size: 20px;

  line-height: 1.5;

  color: var(--c-blue);

  margin: 0 0 10px;

}



.cta-sub {

  font-weight: 500;

  font-size: 14px;

  line-height: 1.71;

  color: var(--c-text);

  margin: 0;

}



.cta-sub strong {

  font-weight: 700;

}



.cta-benefits {

  display: flex;

  align-items: center;

  justify-content: space-between;

  gap: 20px;

  width: 376px;

}



.benefit {

  display: flex;

  flex-direction: column;

  align-items: center;

  gap: 15px;

  text-align: center;

  font-weight: 600;

  font-size: 14px;

  line-height: 1.6;

  color: var(--c-text);

}



.benefit-icon {

  width: 40px;

  height: 40px;

  border-radius: 43px;

  background: var(--c-bg-blue);

  display: flex;

  align-items: center;

  justify-content: center;

}



.benefit-icon img {

  width: 24px;

  height: 24px;

}



.cta-action {

  width: 189px;

  display: flex;

  flex-direction: column;

  gap: 11px;

}



.btn-expert {

  display: flex;

  align-items: center;

  justify-content: center;

  height: 50px;

  background: var(--c-orange);

  border-radius: 60px;

  color: var(--c-white);

  font-weight: 600;

  font-size: 13px;

  transition: filter 0.2s ease, transform 0.15s ease;

}



.btn-expert:hover {

  filter: brightness(0.95);

  transform: translateY(-1px);

}



.cta-note {

  font-weight: 400;

  font-size: 12px;

  line-height: 1.33;

  color: var(--c-text);

  margin: 0;

}



/* =============================================================

   WHY CHOOSE (Practice Growth)  — Figma node 148:204

   ============================================================= */

.why-choose {

  background: var(--c-white);

  padding: 40px 100px;

}



.why-inner {

  display: flex;

  align-items: flex-start;

  justify-content: space-between;

  gap: 40px;

  max-width: 1240px;

  margin: 0 auto;

}



/* ---------- Left content ---------- */

.why-left {

  display: flex;

  flex-direction: column;

  gap: 40px;

  width: 518px;

  flex-shrink: 0;

}



.why-head {

  display: flex;

  flex-direction: column;

  align-items: flex-start;

  gap: 16px;

}



.why-title {

  font-family: var(--font-primary);

  font-weight: 700;

  font-size: 35px;

  line-height: 48px;

  color: var(--c-blue);

}



.why-title .accent {

  color: var(--c-orange);

}



.why-text {

  font-weight: 400;

  font-size: 16px;

  line-height: 29.25px;

  color: var(--c-text);

  max-width: 512px;

  margin: 0;

}



/* Explore button */

.btn-explore {

  display: inline-flex;

  align-items: center;

  justify-content: center;

  width: fit-content;
  height: 50px;

  padding: 16px 32px;

  background: var(--c-orange);

  border-radius: 60px;

  color: var(--c-white);

  font-weight: 600;

  font-size: 16px;

  text-transform: capitalize;

  box-shadow: 0 0 19.6px -3px #fecaca, 0 4px 6px -4px #fecaca;

  transition: filter 0.2s ease, transform 0.15s ease;

}



.btn-explore:hover {

  filter: brightness(0.96);

  transform: translateY(-1px);

}



/* Stat cards grid */

.why-stats {

  display: flex;

  gap: 16px;

  justify-content: center;

  width: 100%;

  padding-top: 33px;

  border-top: 1px solid #f1f5f9;

}



.why-stat {

  width: 150px;

  display: flex;

  flex-direction: column;

  align-items: center;

  gap: 10px;

}



.why-stat-icon {

  width: 90px;

  height: 90px;

  border-radius: 50%;

  background: var(--c-bg-blue);

  display: flex;

  align-items: center;

  justify-content: center;

}



.why-stat-icon img {

  width: 50px;

  height: 50px;

}



.why-stat-label {

  margin: 0;

  font-weight: 600;

  font-size: 16px;

  line-height: 20px;

  color: var(--c-blue);

  text-align: center;

}



/* ---------- Right accordion ---------- */

.why-right {

  width: 660px;

  flex-shrink: 0;

}



.why-accordion {

  display: flex;

  flex-direction: column;

  border: 1px solid #e2e8f0;

  border-radius: 12px;

  box-shadow: 0 1px 2px rgba(0, 0, 0, 0.05);

  overflow: hidden;

}



/* Every accordion item */

.why-acc-item {

  border-bottom: 1px solid var(--c-bg-blue);

  background: var(--c-white);

}

.why-acc-item--last,

.why-acc-item:last-child {

  border-bottom: none;

}



/* Header row (collapsed look) */

.why-acc-header {

  display: flex;

  align-items: center;

  justify-content: space-between;

  gap: 16px;

  width: 100%;

  background: none;

  border: none;

  padding: 20px;

  cursor: pointer;

  text-align: left;

}



.why-acc-main {

  display: flex;

  align-items: center;

  gap: 24px;

}



.why-acc-icon {

  width: 40px;

  height: 40px;

  border-radius: 40px;

  background: var(--c-bg-blue);

  display: flex;

  align-items: center;

  justify-content: center;

  flex-shrink: 0;

  transition: background 0.25s ease;

}

.why-acc-icon img {
  width: 20px;
  height: 20px;
}



.why-acc-num {

  font-weight: 600;

  font-size: 14px;

  line-height: 20px;

  color: var(--c-blue);

}



.why-acc-title--row {

  font-weight: 400;

  font-size: 16px;

  line-height: 24px;

  color: var(--c-text);

}



.why-acc-chevron {

  width: 16px;

  height: 16px;

  flex-shrink: 0;

  transition: transform 0.25s ease;

}



/* Collapsible body */

.why-acc-body {

  max-height: 0;

  overflow: hidden;

  transition: max-height 0.4s ease;

}



/* ---------- OPEN state: header hidden, dark panel shown ---------- */

.why-acc-item.is-open {

  border-bottom: none;

}

.why-acc-item.is-open .why-acc-header {

  display: none;
  /* the dark panel carries its own header */

}

.why-acc-item.is-open .why-acc-body {

  max-height: 640px;

}



/* Dark expanded panel (matches Figma item-01 expanded) */

.why-acc-panel {

  background: var(--c-blue);

  color: var(--c-white);

  padding: 32px;

  display: flex;

  gap: 32px;

  align-items: flex-start;

}

.why-acc-item.is-open:first-child .why-acc-panel {

  border-radius: 12px 12px 0 0;

}



.why-acc-panel-badge {

  width: 56px;

  height: 56px;

  border-radius: 50%;

  background: var(--c-white);

  display: flex;

  align-items: center;

  justify-content: center;

  flex-shrink: 0;

}

.why-acc-panel-badge img {
  width: 28px;
  height: 28px;
}



.why-acc-panel-body {

  flex: 1 1 0;

  min-width: 0;

}

.why-acc-panel-num {

  display: block;

  font-weight: 700;

  font-size: 14px;

  line-height: 20px;

  color: var(--c-orange);

}

.why-acc-panel-title {

  font-weight: 600;

  font-size: 24px;

  line-height: 32px;

  color: var(--c-white);

  margin: 4px 0 0;

}

.why-acc-panel-desc {

  font-weight: 400;

  font-size: 14px;

  line-height: 22.75px;

  color: var(--c-bg-blue);

  margin: 15px 0 0;

}

.why-acc-visual {

  margin-top: 16px;

  width: 100%;

}



/* =============================================================

   DIAGRAM 01 — Payer-rule validation (508x120)

   ============================================================= */

.wc-diagram {
  position: relative;
  flex-shrink: 0;
}

.wc-d01 {
  width: 508px;
  height: 120px;
}

.wc-d01 .wc-svg {
  display: block;
  width: 508px;
  height: 120px;
}



.wc-doc {
  position: absolute;
  left: 0;
  top: 11px;
  width: 58px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
}

.wc-doc-icon {
  width: 46px;
  height: 58px;
  background: var(--c-white);
  border-radius: 3px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.wc-doc-icon img {
  width: 30px;
  height: 38px;
}

.wc-doc-label {
  font-weight: 700;
  font-size: 8px;
  color: var(--c-white);
  white-space: nowrap;
}



.wc-line {
  position: absolute;
  height: 1px;
  background: rgba(255, 255, 255, 0.35);
}

.wc-line--in {
  left: 58px;
  top: 45px;
  width: 27px;
}

.wc-line--mid {
  left: 246px;
  top: 45px;
  width: 24px;
}



.wc-chips {
  position: absolute;
  left: 85px;
  top: 0;
  width: 161px;
  display: flex;
  flex-direction: column;
  gap: 5.55px;
}

.wc-chip {
  display: flex;
  align-items: center;
  gap: 6px;
  height: 26px;
  padding: 0 10px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-left: 3px solid #34c759;
  border-radius: 4px;
  font-weight: 700;
  font-size: 10px;
  color: var(--c-white);
  white-space: nowrap;
}

.wc-check {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: #34c759;
  color: var(--c-white);
  font-style: normal;
  font-size: 7px;
  flex-shrink: 0;
}



.wc-ready {
  position: absolute;
  left: 270px;
  top: 22px;
  width: 92px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
  text-align: center;
  border: 1px dashed rgba(52, 199, 89, 0.7);
  border-radius: 8px;
  padding: 10px 8px;
}

.wc-ready-check {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: #34c759;
  color: var(--c-white);
  font-size: 12px;
}

.wc-ready-title {
  font-weight: 700;
  font-size: 10px;
  color: var(--c-white);
}

.wc-ready-sub {
  font-weight: 400;
  font-size: 8px;
  color: var(--c-bg-blue);
}



.wc-payers {
  position: absolute;
  left: 390px;
  top: 15px;
  width: 118px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
}

.wc-payers-row {
  display: flex;
  gap: 4px;
}

.wc-payer {
  width: 26px;
  height: 26px;
  border-radius: 50%;
  background: var(--c-white);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 7px;
}

.wc-payer--mcr {
  color: #4a90d9;
}

.wc-payer--mcd {
  color: #b700e5;
}

.wc-payer--ppo {
  color: var(--c-orange);
}

.wc-payer--hmo {
  color: #2dd4bf;
}

.wc-payers-label {
  font-weight: 400;
  font-size: 8px;
  color: var(--c-white);
}



/* Shared diagram header row */

.wc-den-head,
.wc-tl-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  margin-bottom: 12px;
}

.wc-var-head,
.wc-tl-title {
  font-weight: 700;
  font-size: 11px;
  letter-spacing: 0.04em;
  color: var(--c-bg-blue);
}

.wc-tl-badge {
  font-weight: 700;
  font-size: 9px;
  color: #34c759;
  background: rgba(52, 199, 89, 0.12);
  border: 1px solid rgba(52, 199, 89, 0.4);
  border-radius: 20px;
  padding: 4px 10px;
  white-space: nowrap;
}

.wc-tl-badge--down,
.wc-tl-badge--warn {
  color: var(--c-orange);
  background: rgba(252, 93, 97, 0.12);
  border-color: rgba(252, 93, 97, 0.4);
}



/* =============================================================

   DIAGRAM 02 — Visit -> Claim timeline

   ============================================================= */

.wc-d02 {
  width: 511px;
}

.wc-d02 .wc-svg {
  display: block;
  width: 511px;
  height: 124px;
}

.wc-timeline {
  display: flex;
  align-items: center;
  gap: 0;
}

.wc-tl-step {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  text-align: center;
  flex-shrink: 0;
}

.wc-tl-connector {
  flex: 1 1 auto;
  height: 1px;
  min-width: 24px;
  background: repeating-linear-gradient(to right, rgba(255, 255, 255, 0.5) 0 4px, transparent 4px 8px);
}

.wc-tl-dot {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  color: var(--c-white);
}

.wc-tl-dot--blue {
  background: #4a90d9;
}

.wc-tl-dot--money {
  background: rgba(255, 255, 255, 0.15);
  border: 1px solid rgba(255, 255, 255, 0.4);
  font-weight: 700;
}

.wc-tl-dot--ok {
  background: #34c759;
}

.wc-tl-label {
  font-weight: 700;
  font-size: 9px;
  color: var(--c-white);
  white-space: nowrap;
}

.wc-tl-card {
  padding: 8px 12px;
  border-radius: 8px;
  font-weight: 700;
  font-size: 10px;
  white-space: nowrap;
}

.wc-tl-card--warn {
  background: rgba(252, 93, 97, 0.15);
  border: 1px solid rgba(252, 93, 97, 0.5);
  color: #ffd0d1;
}

.wc-tl-card--ok {
  background: rgba(52, 199, 89, 0.15);
  border: 1px solid rgba(52, 199, 89, 0.5);
  color: #b8f0c8;
}

.wc-tl-sub {
  font-weight: 400;
  font-size: 8px;
}

.wc-tl-sub--warn {
  color: var(--c-orange);
}

.wc-tl-sub--ok {
  color: #34c759;
}



/* =============================================================

   DIAGRAM 03 — Contract vs Payment variance

   ============================================================= */

.wc-d03 {
  width: 511px;
}

.wc-d03 .wc-svg {
  display: block;
  width: 511px;
  height: 110px;
}

.wc-var-col {
  flex: 1 1 0;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 8px;
  padding: 10px;
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.wc-var-col--result {
  align-items: center;
  text-align: center;
  justify-content: center;
  background: rgba(252, 93, 97, 0.08);
  border-color: rgba(252, 93, 97, 0.4);
}

.wc-var-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 6px;
}

.wc-bar {
  flex: 1 1 auto;
  height: 5px;
  border-radius: 3px;
  background: rgba(255, 255, 255, 0.35);
}

.wc-amt {
  font-weight: 700;
  font-size: 10px;
  color: var(--c-white);
  white-space: nowrap;
}

.wc-mark {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 7px;
  font-weight: 700;
  flex-shrink: 0;
}

.wc-mark--ok {
  background: #34c759;
  color: #fff;
}

.wc-mark--alert {
  background: var(--c-orange);
  color: #fff;
}

.wc-var-vs {
  align-self: center;
  width: 24px;
  height: 24px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.15);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 9px;
  font-weight: 700;
  color: var(--c-white);
}

.wc-var-big {
  font-weight: 800;
  font-size: 24px;
  color: var(--c-orange);
}

.wc-var-note {
  font-weight: 400;
  font-size: 9px;
  color: var(--c-bg-blue);
}

.wc-var-appeal {
  margin-top: 6px;
  font-weight: 700;
  font-size: 9px;
  color: var(--c-white);
  background: var(--c-orange);
  border-radius: 20px;
  padding: 4px 10px;
}



/* =============================================================

   DIAGRAM 04 — Denial pattern bars

   ============================================================= */

.wc-d04 {
  width: 508px;
}

.wc-d04 .wc-svg {
  display: block;
  width: 508px;
  height: 147.5px;
}

.wc-den-chart {
  display: flex;
  align-items: flex-end;
  gap: 20px;
  height: 90px;
  padding: 0 8px;
}

.wc-den-bar {
  flex: 1 1 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  height: 100%;
  justify-content: flex-end;
}

.wc-den-fill {
  width: 100%;
  max-width: 44px;
  background: linear-gradient(to top, var(--c-orange), rgba(252, 93, 97, 0.5));
  border-radius: 4px 4px 0 0;
}

.wc-den-code {
  font-weight: 700;
  font-size: 8px;
  color: var(--c-bg-blue);
}

.wc-den-legend {
  margin-top: 12px;
}

.wc-den-legend .wc-chip {
  display: inline-flex;
}



/* =============================================================

   DIAGRAM 05 — AR priority queue

   ============================================================= */

.wc-d05 {
  width: 508px;
}

.wc-d05 .wc-svg {
  display: block;
  width: 508px;
  height: 150px;
}

.wc-ar-list {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.wc-ar-row {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 8px 12px;
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.06);
  border-left: 3px solid rgba(255, 255, 255, 0.3);
}

.wc-ar-row--high {
  border-left-color: var(--c-orange);
  background: rgba(252, 93, 97, 0.1);
}

.wc-ar-row--mid {
  border-left-color: #f5b400;
}

.wc-ar-row--ok {
  border-left-color: #34c759;
}

.wc-ar-amt {
  font-weight: 800;
  font-size: 13px;
  color: var(--c-white);
  width: 80px;
}

.wc-ar-bucket {
  flex: 1 1 auto;
  font-weight: 400;
  font-size: 11px;
  color: var(--c-bg-blue);
}

.wc-ar-flag {
  font-weight: 700;
  font-size: 9px;
  color: var(--c-orange);
}



/* =============================================================

   DIAGRAM 06 — Documentation checks

   ============================================================= */

.wc-d06 {
  width: 486px;
}

.wc-d06 .wc-svg {
  display: block;
  width: 486px;
  height: 148px;
}

.wc-doc-checks {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px;
}

.wc-doc-check {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 8px 12px;
  border-radius: 8px;
  font-weight: 600;
  font-size: 11px;
  color: var(--c-white);
  background: rgba(255, 255, 255, 0.06);
}

.wc-doc-mark {
  width: 16px;
  height: 16px;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 8px;
  font-weight: 700;
  flex-shrink: 0;
}

.wc-doc-check--ok .wc-doc-mark {
  background: #34c759;
  color: #fff;
}

.wc-doc-check--risk .wc-doc-mark {
  background: var(--c-orange);
  color: #fff;
}

.wc-doc-check--risk {
  background: rgba(252, 93, 97, 0.1);
}



/* =============================================================

   DIAGRAM 07 — Revenue leakage funnel

   ============================================================= */

.wc-d07 {
  width: 437px;
}

.wc-d07 .wc-svg {
  display: block;
  width: 437px;
  height: 146px;
}

.wc-leak-funnel {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.wc-leak-step {
  position: relative;
  display: flex;
  align-items: center;
  gap: 10px;
}

.wc-leak-bar {
  height: 22px;
  border-radius: 4px;
  background: linear-gradient(to right, #4a90d9, var(--c-orange));
}

.wc-leak-label {
  font-weight: 600;
  font-size: 11px;
  color: var(--c-white);
  white-space: nowrap;
}

.wc-leak-pct {
  font-weight: 700;
  font-size: 11px;
  color: var(--c-bg-blue);
  margin-left: auto;
}



/* =============================================================

   DIAGRAM 08 — Executive dashboard KPIs

   ============================================================= */

.wc-d08 {
  width: 482px;
}

.wc-d08 .wc-svg {
  display: block;
  width: 482px;
  height: 149px;
}

.wc-kpis {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 10px;
}

.wc-kpi {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
  padding: 14px 8px;
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.15);
}

.wc-kpi-val {
  font-weight: 800;
  font-size: 20px;
  color: var(--c-white);
}

.wc-kpi-label {
  font-weight: 400;
  font-size: 9px;
  color: var(--c-bg-blue);
  text-align: center;
}



/* =============================================================
   GROWTH CTA BAND — Figma node 156:293
   ============================================================= */
.growth-cta {
  position: relative;
  padding: 64px 16px;
  background-color: #0b1431;
  background-image:
    linear-gradient(rgba(11, 20, 49, 0.35), rgba(1, 8, 26, 0.55)),
    url("../assets/icons/growth-bg.png");
  background-size: cover, cover;
  background-position: center, center;
  background-repeat: no-repeat, no-repeat;
  overflow: hidden;
}

.growth-inner {
  display: flex;
  flex-direction: column;
  gap: 40px;
  align-items: center;
  max-width: 1240px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}

.growth-top {
  display: flex;
  gap: 48px;
  align-items: center;
  justify-content: center;
  width: 100%;
}

/* ---------- Left content ---------- */
.growth-left {
  flex: 1 1 0;
  min-width: 0;
  display: flex;
  flex-direction: column;
  gap: 32px;
  align-items: flex-start;
}

.growth-copy {
  display: flex;
  flex-direction: column;
  gap: 24px;
  align-items: flex-start;
  width: 100%;
}

.growth-pill {
  display: inline-flex;
  align-items: center;
  background: rgba(255, 255, 255, 0.3);
  border-radius: 9px;
  padding: 8px 10px;
  font-weight: 700;
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.02em;
  color: var(--c-white);
}

.growth-title {
  font-family: var(--font-primary);
  font-weight: 700;
  font-size: 32px;
  line-height: 35px;
  color: var(--c-white);
  margin: 0;
}

.growth-title .accent {
  color: var(--c-orange);
}

.growth-text {
  max-width: 576px;
  font-weight: 400;
  font-size: 16px;
  line-height: 25px;
  color: var(--c-white);
  margin: 0;
}

.growth-actions {
  display: flex;
  gap: 16px;
  align-items: center;
  flex-wrap: wrap;
}

.btn-growth-primary,
.btn-growth-secondary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  height: 50px;
  padding: 0 32px;
  border-radius: 56px;
  font-weight: 500;
  font-size: 16px;
  transition: transform 0.15s ease, background 0.2s ease;
}

.btn-growth-primary {
  background: var(--c-orange);
  color: var(--c-white);
}

.btn-growth-primary:hover {
  transform: translateY(-2px);
}

.btn-growth-secondary {
  border: 1px solid var(--c-white);
  color: var(--c-white);
}

.btn-growth-secondary:hover {
  background: rgba(255, 255, 255, 0.1);
}

.btn-growth-primary svg,
.btn-growth-secondary svg {
  flex-shrink: 0;
}

/* ---------- Right glass card ---------- */
.growth-card {
  display: flex;
  gap: 40px;
  align-items: center;
  width: 580px;
  flex-shrink: 0;
  padding: 41px;
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(2px);
  -webkit-backdrop-filter: blur(2px);
  box-shadow: 0 30px 60px -20px rgba(0, 0, 0, 0.5);
}

.growth-features {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 24px;
  flex: 1 1 auto;
}

.growth-features li {
  display: flex;
  gap: 16px;
  align-items: center;
}

.growth-feat-icon {
  width: 40px;
  height: 40px;
  flex-shrink: 0;
  border-radius: 60px;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.3);
  display: flex;
  align-items: center;
  justify-content: center;
}

.growth-feat-label {
  font-weight: 500;
  font-size: 16px;
  line-height: 24px;
  color: #e5e7eb;
  white-space: nowrap;
}

/* Neon stat ring */
.growth-stat {
  border-left: 1px solid rgba(255, 255, 255, 0.08);
  padding-left: 21px;
  flex-shrink: 0;
}

.growth-ring {
  position: relative;
  width: 180px;
  height: 180px;
  display: flex;
  flex-direction: column;
  gap: 4px;
  align-items: center;
  justify-content: center;
}

/* Ellipse 2145 — bright blue glow streak beneath the ring (Figma node 170:39) */
.growth-ring::after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: -20px;
  width: 150px;
  height: 34px;
  transform: translateX(-50%);
  background: radial-gradient(50% 50% at 50% 50%,
      rgba(160, 180, 255, 0.9) 0%,
      rgba(120, 150, 245, 0.55) 35%,
      rgba(92, 120, 220, 0.22) 65%,
      rgba(140, 163, 255, 0) 100%);
  filter: blur(6px);
  pointer-events: none;
  z-index: 0;
}

/* exact Figma ellipse (204x204 incl. glow), centered behind the text */
.growth-ring-svg {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 204px;
  height: 204px;
  transform: translate(-50%, -50%);
  pointer-events: none;
}

.growth-stat-num,
.growth-stat-label {
  position: relative;
  z-index: 1;
}

.growth-stat-num {
  font-weight: 700;
  font-size: 48px;
  line-height: 48px;
  letter-spacing: -1.2px;
  color: var(--c-white);
}

.growth-stat-label {
  font-weight: 700;
  font-size: 12px;
  line-height: 15px;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  color: var(--c-orange);
}

/* Divider */
.growth-divider {
  width: 100%;
  height: 1px;
  background: linear-gradient(to right,
      rgba(255, 255, 255, 0) 0%,
      rgba(255, 255, 255, 0.25) 50%,
      rgba(255, 255, 255, 0) 100%);
}

/* Trust badges */
.growth-badges {
  display: flex;
  gap: 48px;
  align-items: center;
  justify-content: center;
  width: 100%;
  flex-wrap: wrap;
}

.growth-badge {
  display: flex;
  gap: 12px;
  align-items: center;
}

.growth-badge span {
  font-weight: 500;
  font-size: 16px;
  line-height: 20px;
  color: var(--c-white);
  white-space: nowrap;
}

.growth-badge svg {
  flex-shrink: 0;
}

.growth-badge-div {
  width: 1px;
  height: 24px;
  background: rgba(255, 255, 255, 0.5);
}

/* =============================================================

   FAQ / ACCORDION

   ============================================================= */

.faq {

  padding: 60px 0;



}



.faq-inner {

  max-width: 1240px;

  margin: 0 auto;

  display: flex;

  flex-direction: column;

  gap: 30px;

}



.text-center {

  text-align: center;

}



.accordion-custom {

  display: flex;

  flex-direction: column;

  gap: 16px;

}



.acc-item {

  border: 1px solid var(--c-light-grey);

  border-radius: 12px;

  background: var(--c-white);

  overflow: hidden;

}



.acc-header {

  width: 100%;

  display: flex;

  align-items: center;

  justify-content: space-between;

  gap: 16px;

  padding: 20px 24px;

  background: none;

  border: none;

  font-family: var(--font-primary);

  font-weight: 600;

  font-size: 18px;

  color: var(--c-blue);

  text-align: left;

  cursor: pointer;

}



.acc-indicator {

  position: relative;

  width: 18px;

  height: 18px;

  flex-shrink: 0;

}



.acc-indicator::before,

.acc-indicator::after {

  content: "";

  position: absolute;

  background: var(--c-orange);

  transition: transform 0.25s ease, opacity 0.25s ease;

}



.acc-indicator::before {

  top: 8px;

  left: 0;

  width: 18px;

  height: 2px;

}



.acc-indicator::after {

  top: 0;

  left: 8px;

  width: 2px;

  height: 18px;

}



.acc-header[aria-expanded="true"] .acc-indicator::after {

  transform: scaleY(0);

  opacity: 0;

}



.acc-body {

  max-height: 0;

  overflow: hidden;

  transition: max-height 0.3s ease;

}



.acc-body.open {

  max-height: 400px;

}



.acc-body p {

  padding: 0 24px 20px;

  font-weight: 400;

  font-size: 15px;

  line-height: 1.7;

  color: var(--c-text);

  margin: 0;

}



/* =============================================================

   FOOTER

   ============================================================= */

.site-footer {

  background: #01183a;

  color: var(--c-white);

  padding-top: 40px;

}



/* Footer CTA banner — Figma node 135:3941 */

.footer-cta-wrap {

  width: min(1240px, 100%);

  margin: 0 auto;

}



.footer-cta {

  position: relative;

  display: flex;

  align-items: center;

  justify-content: space-between;

  gap: 40px;

  width: 100%;

  padding: 32px 24px;

  overflow: hidden;

  border: 1px solid #6977af;

  border-radius: 12px;

  background: rgba(39, 55, 117, 0.3);

}



.footer-cta-glow {

  position: absolute;

  right: -60px;

  bottom: -80px;

  width: 220px;

  height: 220px;

  pointer-events: none;

}



.footer-cta-glow img {

  display: block;

  width: 100%;

  height: 100%;

}



.footer-cta-icon-row {

  position: relative;

  z-index: 1;

  display: flex;

  align-items: center;

  gap: 20px;

}



.footer-cta-icon-circle {

  display: flex;

  align-items: center;

  justify-content: center;

  flex-shrink: 0;

  width: 120px;

  height: 120px;

  border: 1.33px solid var(--c-orange);

  border-radius: 50%;

}



.footer-cta-icon-circle img {

  width: 80px;

  height: 80px;

}



.footer-cta-text h3 {

  margin: 0;

  color: var(--c-white);

  font: 700 32px/35px Poppins, sans-serif;

}



.footer-cta-text p {

  margin: 8px 0 0;

  max-width: 480px;

  color: var(--c-white);

  font: 500 16px/24px Poppins, sans-serif;

}



.footer-cta-button {

  position: relative;

  z-index: 1;

  display: inline-flex;

  flex-shrink: 0;

  align-items: center;

  justify-content: center;

  width: 250px;

  height: 50px;

  border-radius: 10px;

  background: var(--c-orange);

  color: var(--c-white);

  font: 600 16px/20.8px Poppins, sans-serif;

  text-decoration: none;

  transition: background 0.2s ease, transform 0.2s ease;

}



.footer-cta-button:hover {

  background: #e14e52;

  transform: translateY(-2px);

}



/* Footer main grid — Figma node 135:3955 */

.footer-inner {

  width: min(1240px, 100%);

  margin: 0 auto;

  padding: 40px 0px;

  display: grid;

  grid-template-columns: 1.4fr 1fr 1fr 0.9fr 1fr;

  gap: 24px;

}



.footer-brand {

  display: flex;

  flex-direction: column;

  gap: 16px;

}



.footer-brand img {

  height: 37px;

}



.footer-brand p {

  margin: 0;

  font-size: 14px;

  line-height: 1.8;

  color: rgba(255, 255, 255, 0.85);

}



.footer-social {

  display: flex;

  gap: 10px;

}



.footer-social img {

  display: block;

  width: 30px;

  height: 30px;

}



.footer-col h4 {

  margin: 0 0 12px;

  color: var(--c-orange);

  font: 600 20px/28px Poppins, sans-serif;

}



.footer-col ul {

  margin: 0;

  padding: 0;

  list-style: none;

  display: flex;

  flex-direction: column;

  gap: 4px;

}



.footer-col ul li a {

  display: flex;

  align-items: center;

  gap: 8px;

  padding: 4px 0;

  color: rgba(255, 255, 255, 0.85);

  font: 500 14px/20px Poppins, sans-serif;

  text-decoration: none;

  transition: color 0.2s ease;

}



.footer-col ul li a:hover {

  color: var(--c-orange);

}



.footer-bullet {

  flex-shrink: 0;

  width: 14px;

  height: 14px;

  transform: rotate(90deg);

}



.footer-contact ul {

  gap: 12px;

}



.footer-contact ul li a,

.footer-contact ul li.footer-address {

  display: flex;

  align-items: center;

  gap: 10px;

  color: rgba(255, 255, 255, 0.9);

  font: 400 14px/1.4 Poppins, sans-serif;

  text-decoration: none;

}



.footer-contact ul li a:hover {

  color: var(--c-orange);

}



.footer-contact img {

  flex-shrink: 0;

  width: 26px;

  height: 26px;

}



.footer-contact ul li.footer-address {

  align-items: flex-start;

}



.footer-address img {

  margin-top: 2px;

}



/* Footer trust strip — Figma node 135:4166 */

.footer-trust-wrap {

  width: min(1240px, 100%);

  margin: 0 auto;

}



.footer-trust {

  display: flex;

  align-items: center;

  justify-content: space-between;

  flex-wrap: wrap;

  gap: 24px;

  width: 100%;

  padding: 24px;

  margin-bottom: 40px;

  border: 1px solid #6977af;

  border-radius: 12px;

  background: rgba(39, 55, 117, 0.3);

}



.footer-trust-item {

  display: flex;

  align-items: flex-start;

  gap: 10px;

  flex: 1 1 220px;

  min-width: 220px;

}



.footer-trust-icon {

  display: flex;

  align-items: center;

  justify-content: center;

  flex-shrink: 0;

  width: 50px;

  height: 50px;

  border-radius: 50%;

  background: rgba(146, 163, 230, 0.2);

}



.footer-trust-icon img {

  width: 30px;

  height: 30px;

}



.footer-trust-title {

  margin: 0;

  color: var(--c-white);

  font: 600 18px/28px Poppins, sans-serif;

}



.footer-trust-sub {

  margin: 2px 0 0;

  color: rgba(255, 255, 255, 0.75);

  font: 400 12px/1.4 Poppins, sans-serif;

}



.footer-bottom {

  display: flex;

  align-items: center;

  justify-content: space-between;

  flex-wrap: wrap;

  gap: 10px;

  border-top: 1px solid rgba(255, 255, 255, 0.15);

  padding: 20px 100px;

}



.footer-bottom p {

  margin: 0;

  font-size: 13px;

  color: rgba(255, 255, 255, 0.6);

}



.footer-links a {

  color: rgba(255, 255, 255, 0.6);

  text-decoration: none;

}



.footer-links a:hover {

  color: var(--c-orange);

}



/* =============================================================

   RESPONSIVE BREAKPOINTS

   Desktop default (>=1440), Laptop 1440, Tablet <=1024,

   Mobile <=768, Small mobile <=576

   ============================================================= */



/* Laptop */

@media (max-width: 1440px) {

  :root {

    --page-gutter: 60px;

  }

  .nav-list {
    gap: 24px;
  }

  .nav-link {
    font-size: 15px;
  }

  .btn-appointment {
    font-size: 16px;
    padding: 14px 18px;
  }

}



/* Tablet */

@media (max-width: 1024px) {

  .growth-top {
    flex-direction: column;
    align-items: stretch;
  }

  .growth-card {
    width: 100%;
  }

  :root {

    --page-gutter: 40px;

  }



  .why-choose {

    padding: 40px;

  }



  .why-inner {

    flex-direction: column;

  }



  .footer-cta-wrap,

  .footer-inner,

  .footer-trust-wrap,

  .footer-bottom {

    padding-left: 40px;

    padding-right: 40px;

  }



  .why-left,

  .why-right {

    width: 100%;

  }

  /* Each wc-dXX diagram is a fixed-pixel SVG (up to 511px wide) with no
     scaling at all — once .why-right goes full-width on narrower screens,
     these were overflowing it outright. aspect-ratio (from each diagram's
     own native w/h) lets width go fluid while keeping every internal path
     proportioned correctly, since the SVG's viewBox already matches. */
  .wc-diagram {
    width: 100%;
  }

  .wc-d01 {
    max-width: 508px;
    aspect-ratio: 508 / 120;
  }

  .wc-d01 .wc-svg {
    width: 100%;
    height: 100%;
  }

  .wc-d02 {
    max-width: 511px;
    aspect-ratio: 511 / 124;
  }

  .wc-d02 .wc-svg {
    width: 100%;
    height: 100%;
  }

  .wc-d03 {
    max-width: 511px;
    aspect-ratio: 511 / 110;
  }

  .wc-d03 .wc-svg {
    width: 100%;
    height: 100%;
  }

  .wc-d04 {
    max-width: 508px;
    aspect-ratio: 508 / 147.5;
  }

  .wc-d04 .wc-svg {
    width: 100%;
    height: 100%;
  }

  .wc-d05 {
    max-width: 508px;
    aspect-ratio: 508 / 150;
  }

  .wc-d05 .wc-svg {
    width: 100%;
    height: 100%;
  }

  .wc-d06 {
    max-width: 486px;
    aspect-ratio: 486 / 148;
  }

  .wc-d06 .wc-svg {
    width: 100%;
    height: 100%;
  }

  .wc-d07 {
    max-width: 437px;
    aspect-ratio: 437 / 146;
  }

  .wc-d07 .wc-svg {
    width: 100%;
    height: 100%;
  }

  .wc-d08 {
    max-width: 482px;
    aspect-ratio: 482 / 149;
  }

  .wc-d08 .wc-svg {
    width: 100%;
    height: 100%;
  }



  .main-nav,

  .header-actions .btn-appointment {

    display: none;

  }



  .nav-toggle {

    display: flex;

  }



  .hero-top {

    flex-direction: column;

    align-items: center;

    text-align: center;

  }



  .hero-copy {

    align-items: center;

    max-width: 640px;

  }



  .hero-visual {

    margin: 0 auto;

  }



  .booking-form {

    flex-direction: column;

    align-items: stretch;

  }



  .booking-fields {

    flex-wrap: wrap;

  }



  .field {

    flex: 1 1 45%;

  }



  .booking-submit {

    width: 100%;

    margin-top: 10px;

  }



  .services-cta {

    flex-direction: column;

    align-items: stretch;

  }



  .cta-copy,

  .cta-benefits,

  .cta-action {

    width: 100%;

    border-right: none;

    padding-right: 0;

  }



  .cta-copy {

    border-bottom: 1px solid var(--c-text);

    padding-bottom: 20px;

  }



  .footer-inner {

    grid-template-columns: 1fr 1fr;

  }

}



/* Mobile */

@media (max-width: 768px) {

  .growth-cta {
    padding: 40px 20px;
  }

  .growth-title {
    font-size: 26px;
    line-height: 32px;
  }

  .growth-card {
    flex-direction: column;
    gap: 28px;
    padding: 28px;
  }

  .growth-stat {
    border-left: none;
    padding-left: 0;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    padding-top: 28px;
    width: 100%;
    display: flex;
    justify-content: center;
  }

  .growth-badges {
    gap: 20px;
  }

  .header-inner {

    height: 72px;

  }



  .why-choose {

    padding: 40px 20px;

  }



  .why-title {

    font-size: 26px;

    line-height: 36px;

  }



  .why-stats {

    flex-wrap: wrap;

  }



  .why-acc-item--open {

    padding: 24px 20px;

  }

  .why-acc-panel {

    padding: 20px;

    gap: 16px;

  }



  .why-acc-item--open .why-acc-header {

    gap: 16px;

  }



  .why-acc-item--open .why-acc-body {

    padding-left: 0;

  }



  .why-acc-visual {

    gap: 16px;

  }



  .mobile-menu {

    top: 72px;

  }



  .hero-heading {

    font-size: 32px;

  }



  .section-title,

  .strengths-title {

    font-size: 24px;

  }



  .strengths {

    height: auto;

    padding: 40px 20px;

  }



  .strengths-title {

    font-size: 32px;

  }



  /* Figma's mobile Core Strengths stacks the cards into a single vertical
     timeline instead of a horizontal row, so the card-to-card connector
     (::after line / ::before dot) needs to run top-to-bottom too. */

  .strengths-cards {

    flex-direction: column;

    justify-content: center;

    gap: 38px;

    max-width: 200px;

    margin: 0 auto;

  }



  .stat-card:not(:last-child)::after {

    top: 100%;

    left: 50%;

    width: 1px;

    height: 38px;

    transform: translateX(-50%);

  }



  .stat-card:not(:last-child)::before {

    top: calc(100% + 19px);

    left: 50%;

    transform: translate(-50%, -50%);

  }



  .stat-card--featured {

    width: 200px;

    height: 182px;

  }



  .services {

    padding: 40px 20px;

  }



  /* Figma's mobile Services list stacks the steps in one column and
     reflows each card's header into number-circle + title + icon-circle
     on one row, with the description on its own full-width line below —
     quite different from the desktop grid's centered icon-on-top card, so
     this reorders the existing elements with flexbox `order` rather than
     the horizontally-scrolling grid (which .services{overflow:hidden}
     would otherwise just clip most of on a narrow screen). */

  .service-track {

    flex-direction: column;

    min-width: 0;

  }



  .step-card {

    flex-direction: row;

    flex-wrap: wrap;

    align-items: center;

    justify-content: flex-start;

    gap: 12px;

    max-width: none;

    min-width: 0;

    width: 100%;

    padding: 20px;

    text-align: left;

  }



  .step-card h3 {

    order: 2;

    flex: 1 1 auto;

    margin: 0;

    font-size: 16px;

  }



  .step-card .step-icon {

    order: 3;

    flex: 0 0 auto;

    width: 48px;

    height: 48px;

    margin-bottom: 0;

  }



  .step-card .step-icon img {

    width: 30px;

    height: 30px;

  }



  .step-card p {

    order: 4;

    flex: 0 0 100%;

    text-align: left;

    font-size: 14px;

  }



  .step-card .step-num--dark {

    order: 1;

    position: static;

    transform: none;

    flex: 0 0 auto;

  }



  .step-card--featured {

    background: linear-gradient(to right, var(--c-blue) 29.808%, var(--c-orange));

  }



  .step-card--featured h3,

  .step-card--featured p {

    color: var(--c-white);

  }



  .step-card--featured .step-num--dark {

    background: var(--c-white);

    color: var(--c-blue);

  }



  .hero-visual {

    width: 100%;

    max-width: 380px;

  }



  .field {

    flex: 1 1 100%;

  }



  .hero-logos {

    gap: 10px;

  }



  .footer-cta-wrap,

  .footer-trust-wrap {

    padding: 0 24px;

  }



  .footer-cta {

    flex-direction: column;

    align-items: flex-start;

    gap: 24px;

    padding: 24px;

  }



  .footer-cta-icon-row {

    flex-wrap: wrap;

  }



  .footer-cta-text h3 {

    font-size: 24px;

    line-height: 30px;

  }



  .footer-cta-button {

    width: 100%;

  }



  .footer-inner {

    grid-template-columns: 1fr;

    padding: 24px;

  }



  .footer-trust {

    flex-direction: column;

    align-items: flex-start;

  }



  .footer-bottom {

    flex-direction: column;

    text-align: center;

    padding: 20px 24px;

  }



  .faq-inner {

    padding: 0 24px;

  }



  .acc-header {

    font-size: 16px;

    padding: 16px 18px;

  }

}



/* Small mobile */

@media (max-width: 576px) {

  .hero-heading {

    font-size: 28px;
    display: none;

  }

  .hero-lead {
    text-align: start;
  }



  .hero-inner {

    padding-top: 24px;

    padding-bottom: 24px;

  }



  .booking-form {

    padding: 20px;

  }






  .logo-card {

    width: 100%;

    max-width: 200px;

  }



  .footer-trust-item {

    display: flex;

    align-items: flex-start;

    gap: 10px;

    flex: 1 1 50px;

    min-width: 220px;

  }

}



.my-icon {

  transform: translate(40px, 13px);
  /* x = right, negative y = up */

}

.appeal_initial {
  fill: rgba(232, 75, 60, 0.18);
  stroke-width: 0.588px;
  stroke: var(--Secondary-Orange, #FC5D61);
}

.appeal_initial_main {
  fill: rgba(255, 255, 255, 0.10);
  stroke-width: 0.672px;
  stroke: rgba(255, 255, 255, 0.18);
}

.appeal_text {
  color: var(--Secondary-Orange, #FC5D61) !important;
  text-align: center;
  font-family: Poppins;
  font-size: 8.405px;
  font-style: normal;
  font-weight: 700;
  line-height: normal;
}

/* Accessibility: respect reduced motion */

/* Who We Serve — Figma node 183:1090 */
.who-we-serve {
  position: relative;
  overflow: hidden;
  padding: 0 0 80px;
  background: #fff;
  color: #3d3d3d;
  padding: 60px 100px;
}

.who-serve-inner {
  width: min(1240px, calc(100% - 48px));
  margin: 0 auto;
  display: grid;
  grid-template-columns: 296px minmax(0, 1fr);
  gap: 20px;
  position: relative;
}

.who-serve-intro {
  padding-top: 2px;
  position: relative;
  z-index: 1;
}

.who-serve-intro::after {
  content: "";
  position: absolute;
  left: -438.701px;
  top: 375.112px;
  width: 656.508px;
  height: 427.545px;
  background:
    radial-gradient(circle 7.593px at 130.605px 65.302px, rgba(252, 93, 97, .5) 99%, transparent 100%),
    radial-gradient(circle 7.593px at 119.975px 239.950px, rgba(39, 55, 117, .5) 99%, transparent 100%),
    radial-gradient(circle 7.593px at 179.202px 490.529px, rgba(39, 55, 117, .5) 99%, transparent 100%),
    radial-gradient(circle 7.593px at 479.899px 479.899px, rgba(252, 93, 97, .5) 99%, transparent 100%),
    radial-gradient(circle 7.593px at 525.459px 232.356px, rgba(39, 55, 117, .5) 99%, transparent 100%),
    radial-gradient(circle 7.593px at 321.958px 646.952px, rgba(39, 55, 117, .5) 99%, transparent 100%),
    radial-gradient(circle 7.593px at 321.958px 100.232px, rgba(252, 93, 97, .5) 99%, transparent 100%),
    radial-gradient(circle 7.593px at 514.828px 65.302px, rgba(39, 55, 117, .5) 99%, transparent 100%),
    radial-gradient(circle 7.593px at 16.705px 419.152px, rgba(252, 93, 97, .5) 99%, transparent 100%),
    radial-gradient(circle 7.593px at 643.915px 312.845px, rgba(252, 93, 97, .5) 99%, transparent 100%),
    radial-gradient(circle at 323.475px 323.475px, transparent 220.207px, rgba(39, 55, 117, .03) 220.207px 224.763px, transparent 224.763px),
    radial-gradient(circle at 322.717px 322.717px, transparent 318.161px, rgba(39, 55, 117, .03) 318.161px 322.717px, transparent 322.717px);
  background-repeat: no-repeat;
  pointer-events: none;
  z-index: -1;
}

.who-serve-pill {
  display: inline-flex;
  padding: 8px 10px;
  border-radius: 9px;
  background: rgba(39, 55, 117, .1);
  color: #273775;
  font: 700 12px/1 Poppins, sans-serif;
}

.who-serve-intro h2 {
  margin: 20px 0;
  font: 700 32px/35px Poppins, sans-serif;
  letter-spacing: -.4px;
}

.who-serve-intro h2 span {
  color: #fc5d61;
}

.who-serve-intro p {
  margin: 0;
  font: 400 16px/25.2px Poppins, sans-serif;
}

.who-serve-accent {
  display: block;
  width: 48px;
  height: 4px;
  margin-top: 20px;
  border-radius: 999px;
  background: #fc5d61;
}

.who-serve-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 20px;
}

.serve-card {
  position: relative;
  min-height: 359px;
  overflow: hidden;
  padding: 90px 20px 20px;
  display: flex;
  flex-direction: column;
  background: #eff2ff;
  border: 1px solid #e5e7eb;
  border-radius: 10px;
}

.serve-card .serve-art {
  position: absolute;
  top: 8px;
  right: 12px;
  width: 148px;
  height: 131px;
  object-fit: contain;
}

.serve-card .serve-art-inner {
  position: absolute;
  top: 8px;
  right: 35px;
  width: 100px;
  height: 115px;
  object-fit: contain;
}

.serve-card .serve-icon {
  position: relative;
  z-index: 1;
  width: 50px;
  height: 50px;
  object-fit: contain;
}

.serve-card .serve-icon[data-node-id="173:875"],
.serve-card .serve-icon[data-node-id="179:942"],
.serve-card .serve-icon[data-node-id="180:960"],
.serve-card .serve-icon[data-node-id="180:978"],
.serve-card .serve-icon--circle {
  width: 24px;
  height: 24px;
  padding: 13px;
  box-sizing: content-box;
  border-radius: 50%;
  background: #fff;
  box-shadow: 0 0 5px rgba(0, 0, 0, 0.25);
}

.serve-card h3 {
  margin: 20px 0 10px;
  font: 600 18px/28px Poppins, sans-serif;
  color: #3d3d3d;
}

.serve-card p {
  margin: 0;
  min-height: 96px;
  font: 400 14px/19.2px Poppins, sans-serif;
  color: #3d3d3d;
}

.serve-card>a {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: auto;
  color: #273775;
  font: 400 16px/24px Poppins, sans-serif;
  text-decoration: none;
}

.serve-card>a img {
  width: 16px;
  height: 16px;
}

.who-serve-cta {
  grid-column: 1 / -1;
  width: 100%;
  height: 90px;
  margin-top: 30px;
  padding: 20px 22px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  overflow: hidden;
  background: #eff2ff;
  border-radius: 60px;
  box-shadow: 0 2px 15.1px rgba(0, 0, 0, .15);
}

.who-serve-cta-copy {
  display: flex;
  align-items: center;
  gap: 20px;
  font: 500 14px/24px Poppins, sans-serif;
}

.serve-secure {
  width: 50px;
  height: 50px;
  flex: 0 0 50px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: #fff;
  box-shadow: 0 0 11px rgba(0, 0, 0, .11);
}

.serve-secure img {
  width: 30px;
  height: 30px;
}

.who-serve-cta strong {
  color: #273775;
  font-weight: 700;
  font-size: 18px;
  line-height: 30px;
  white-space: nowrap;
}

.who-serve-cta b {
  color: #fc5d61;
  font-weight: 700;
}

.serve-performance,
.serve-support-copy {
  white-space: nowrap;
}

.who-serve-cta i {
  width: 1px;
  height: 40px;
  background: #c9cede;
}

.who-serve-cta>a {
  width: 170px;
  height: 50px;
  flex: 0 0 170px;
  display: grid;
  place-items: center;
  border-radius: 75px;
  background: #fc5d61;
  color: #fff;
  font: 600 13px/20.8px Poppins, sans-serif;
  text-decoration: none;
}

@media (max-width: 1100px) {
  .who-serve-inner {
    grid-template-columns: 250px minmax(0, 1fr);
  }

  .who-serve-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .who-serve-cta-copy {
    gap: 12px;
  }

  .who-serve-cta-copy>span:last-child,
  .who-serve-cta-copy i {
    display: none;
  }
}

@media (max-width: 768px) {
  .who-we-serve {
    padding: 60px 24px;
  }

  .growth-badge-div {
    display: none;
  }

  .who-serve-inner {
    width: min(100% - 40px, 560px);
    grid-template-columns: 1fr;
  }

  .who-serve-intro {
    margin-bottom: 12px;
  }

  .who-serve-intro::after {
    display: none;
  }

  .who-serve-intro h2 {
    font-size: 28px;
    line-height: 33px;
  }

  .who-serve-grid {
    grid-template-columns: 1fr;
  }

  .serve-card {
    min-height: 340px;
  }

  .who-serve-cta {
    grid-column: 1;
    height: auto;
    flex-direction: column;
    align-items: stretch;
    border-radius: 28px;
  }

  .who-serve-cta-copy {
    flex-wrap: wrap;
  }

  .who-serve-cta-copy>span:nth-of-type(2) {
    width: calc(100% - 70px);
  }

  .who-serve-cta>a {
    width: 100%;
    flex-basis: 50px;
  }
}

/* Specialty Billing — Figma node 184:1743 */
.specialty-billing {
  padding: 40px 100px;
  background: #fff;
}

.specialty-inner {
  width: min(1240px, 100%);
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 30px;
}

.specialty-intro {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
}

.specialty-pill {
  display: inline-flex;
  padding: 8px 10px;
  border-radius: 9px;
  background: rgba(39, 55, 117, .1);
  color: #273775;
  text-transform: capitalize;
  font: 700 12px/1 Poppins, sans-serif;
}

.specialty-intro h2 {
  margin: 0;
  max-width: 706px;
  color: #273775;
  text-align: center;
  font: 700 32px/45px Poppins, sans-serif;
}

.specialty-intro h2 span {
  color: #fc5d61;
}

.specialty-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 280px));
  justify-content: center;
  column-gap: 20px;
  row-gap: 40px;
  width: 100%;
}

.specialty-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
  padding: 20px;
  overflow: hidden;
  border-radius: 5px;
  background: #fff;
}

.specialty-icon {
  width: 100px;
  height: 100px;
  flex: 0 0 100px;
  display: grid;
  place-items: center;
  padding: 14px;
  box-sizing: border-box;
  border: 1.429px solid #fc5d61;
  border-radius: 50%;
  background: #fff;
  box-shadow: 0 0 3.571px rgba(0, 0, 0, .25);
}

.specialty-icon img {
  width: 57.143px;
  height: 57.143px;
  object-fit: contain;
}

/* Gastroenterology art is wider than tall — size it by height so it fills the circle evenly */
.specialty-icon img.specialty-icon--wide {
  width: 60px;
}

.specialty-card h3 {
  margin: 0;
  max-width: 210px;
  color: #1f2937;
  text-align: center;
  font: 600 20px/28px Poppins, sans-serif;
}

.specialty-cta {
  width: 250px;
  height: 50px;
  margin-top: 10px;
  display: grid;
  place-items: center;
  box-sizing: border-box;
  border: 1px solid #fff;
  border-radius: 100px;
  background: #273775;
  color: #fff;
  font: 500 16px/1 Poppins, sans-serif;
  text-decoration: none;
}

@media (max-width: 1100px) {
  .specialty-billing {
    padding: 40px 40px;
  }

  .specialty-grid {
    grid-template-columns: repeat(3, minmax(0, 280px));
  }
}

@media (max-width: 768px) {
  .specialty-billing {
    padding: 32px 20px;
  }

  .specialty-intro h2 {
    font-size: 28px;
    line-height: 38px;
  }

  .specialty-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    row-gap: 28px;
  }

  .specialty-card {
    padding: 10px;
  }

  .specialty-card h3 {
    font-size: 17px;
    line-height: 24px;
  }
}

/* Billing Expertise / Payer — Figma node 183:1438 */
.payer-billing {
  position: relative;
  overflow: hidden;
  padding: 40px 100px;
  background: linear-gradient(90deg, #fcfdfe 0%, #fcfdfe 100%);
}

.payer-billing::before,
.payer-billing::after {
  content: "";
  position: absolute;
  width: 350px;
  height: 250px;
  border-radius: 50%;
  pointer-events: none;
  z-index: 0;
}

.payer-billing::before {
  left: -30px;
  bottom: -40px;
  background: radial-gradient(circle, rgba(39, 55, 117, .06) 0%, rgba(39, 55, 117, 0) 70%);
}

.payer-billing::after {
  right: -30px;
  top: -40px;
  background: radial-gradient(circle, rgba(39, 55, 117, .04) 0%, rgba(39, 55, 117, 0) 70%);
}

.payer-inner {
  position: relative;
  z-index: 1;
  width: min(1240px, 100%);
  margin: 0 auto;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 30px;
}

@media (min-width: 1301px) {
  .payer-inner {
    flex-wrap: nowrap;
  }
}

.payer-left {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 16px;
  flex: 0 0 353px;
  max-width: 353px;
}

.payer-pill {
  display: inline-flex;
  padding: 8px 10px;
  border-radius: 9px;
  background: rgba(39, 55, 117, .1);
  color: #273775;
  text-transform: capitalize;
  font: 700 12px/1 Poppins, sans-serif;
}

.payer-left h2 {
  margin: 0;
  color: #273775;
  font: 700 32px/40px Poppins, sans-serif;
}

.payer-left>p {
  margin: 16px 0 0;
  max-width: 448px;
  color: #3d3d3d;
  font: 400 16px/26px Poppins, sans-serif;
}

.payer-list {
  display: flex;
  flex-direction: column;
  gap: 24px;
  padding-top: 8px;
  width: 100%;
}

.payer-list-item {
  display: flex;
  align-items: flex-start;
  gap: 16px;
}

.payer-list-icon {
  flex: 0 0 auto;
  display: grid;
  place-items: center;
  padding: 9px;
  background: #fff;
  border: 1px solid #f3f4f6;
  border-radius: 8px;
  box-shadow: 0 1px 1px rgba(0, 0, 0, .05);
}

.payer-list-icon img {
  width: 24px;
  height: 24px;
}

.payer-list-item h4 {
  margin: 0 0 10px;
  color: #273775;
  font: 700 16px/20px Poppins, sans-serif;
}

.payer-list-item p {
  margin: 0;
  color: #3d3d3d;
  font: 400 14px/20px Poppins, sans-serif;
}

/* Diagram — desktop hub-and-spoke, matched to Figma's 848x700 canvas */
.payer-diagram {
  position: relative;
  flex: 0 0 850px;
  width: 850px;
  height: 700px;
  max-width: 100%;
}

.payer-ring {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 480px;
  height: 480px;
  transform: translate(-50%, -50%);
  border: 2px dashed rgba(39, 55, 117, .3);
  border-radius: 50%;
  opacity: .3;
}

.payer-ring-glow {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 370px;
  height: 370px;
  transform: translate(-50%, -50%);
  border-radius: 50%;
}

.payer-dot {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 8px;
  height: 8px;
  margin: -4px;
  border-radius: 4px;
  background: #fc5d61;
  transform: rotate(var(--a)) translateX(240px);
}

.payer-hub {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 320px;
  height: 320px;
  transform: translate(-50%, -50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 20px;
  padding: 32px 30px 42px;
  box-sizing: border-box;
  border: 10px solid #fff;
  border-radius: 50%;
  background: linear-gradient(135deg, #273775 30%, #fc5d61 100%);
  box-shadow: 0 0 0 1px rgba(39, 55, 117, .1), 0 25px 50px -12px rgba(0, 0, 0, .25);
}

.payer-hub h3 {
  margin: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  color: #fff;
  font: 700 24px/32px Poppins, sans-serif;
  text-align: center;
}

.payer-hub h3 span:last-child {
  color: #fc5d61;
}

.payer-stats {
  display: grid;
  grid-template-columns: 1fr 1fr;
  column-gap: 19px;
  row-gap: 7px;
  width: 100%;
}

.payer-stats::before {
  content: "";
  grid-column: 1 / -1;
  height: 1px;
  background: rgba(255, 255, 255, .3);
  order: 1;
}

.payer-stat {
  display: flex;
  align-items: flex-start;
  gap: 8px;
}

.payer-stat:nth-child(-n+2) {
  order: 0;
}

.payer-stat:nth-child(n+3) {
  order: 2;
}

.payer-stat img {
  flex: 0 0 auto;
  width: 12px;
  height: 12px;
  padding: 6px;
  box-sizing: content-box;
  background: #fff;
  border-radius: 6px;
}

.payer-stat strong {
  display: block;
  color: #fff;
  font: 700 13px/19px Poppins, sans-serif;
  white-space: nowrap;
}

.payer-stat span {
  display: block;
  color: #fff;
  opacity: .7;
  font: 400 8px/14px Poppins, sans-serif;
  white-space: nowrap;
}

.payer-card {
  position: absolute;
  display: flex;
  align-items: flex-start;
  gap: 12px;
  width: 224px;
  padding: 17px;
  box-sizing: border-box;
  background: #fff;
  border: 1px solid #f1f5f9;
  border-radius: 12px;
  box-shadow: 0 10px 15px -3px rgba(0, 0, 0, .1), 0 4px 6px -4px rgba(0, 0, 0, .1);
}

.payer-card-icon {
  flex: 0 0 40px;
  width: 40px;
  height: 40px;
  display: grid;
  place-items: center;
  background: #fff;
  border: 1px solid #eff2ff;
  border-radius: 50%;
}

.payer-card-icon img {
  width: 18px;
  height: 18px;
}

.payer-card h5 {
  margin: 0 0 10px;
  color: #273775;
  font: 700 16px/20px Poppins, sans-serif;
}

.payer-card p {
  margin: 0;
  color: #64748b;
  font: 400 12px/14.5px Poppins, sans-serif;
}

.payer-card--top-left {
  top: 61.5px;
  left: 80px;
}

.payer-card--top-right {
  top: 61.5px;
  right: 80px;
}

.payer-card--mid-left {
  top: 280px;
  left: -28px;
}

.payer-card--mid-right {
  top: 280px;
  right: -28px;
}

.payer-card--bottom-left {
  bottom: 52.5px;
  left: 20px;
}

.payer-card--bottom-right {
  bottom: 69.5px;
  right: 20px;
}

.payer-card--bottom-center {
  bottom: -0.5px;
  left: 50%;
  transform: translateX(-50%);
}

.payer-footer {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 24px;
  margin-top: 24px;
}

.payer-cta {
  display: inline-flex;
  align-items: center;
  gap: 16px;
  height: 50px;
  padding: 10px 40px;
  border-radius: 999px;
  background: #273775;
  color: #fff;
  font: 600 16px/24px Poppins, sans-serif;
  text-decoration: none;
  box-shadow: 0 20px 25px -5px rgba(0, 0, 0, .1), 0 8px 10px -6px rgba(0, 0, 0, .1);
}

.payer-cta img {
  width: 20px;
  height: 20px;
}

.payer-cta-arrow {
  width: 32px;
  height: 32px;
  flex: 0 0 32px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: #fc5d61;
}

.payer-cta-arrow img {
  width: 16px;
  height: 16px;
}

.payer-tagline {
  margin: 0;
  color: #64748b;
  font: 400 italic 14px/20px Poppins, sans-serif;
}

/* Below the diagram's native canvas width, fall back to a simplified stacked layout */
@media (max-width: 1300px) {
  .payer-diagram {
    display: none;
  }

  .payer-simple-grid {
    display: grid;
  }
}

.payer-simple-grid {
  display: none;
  width: 100%;
  max-width: 900px;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 20px;
}

.payer-simple-grid .payer-card {
  position: static;
  width: auto;
  transform: none;
}

.payer-simple-stats {
  display: none;
  width: 100%;
  max-width: 900px;
  padding: 30px;
  box-sizing: border-box;
  border-radius: 20px;
  background: linear-gradient(135deg, #273775 0%, #fc5d61 100%);
}

.payer-simple-stats h3 {
  margin: 0 0 20px;
  color: #fff;
  text-align: center;
  font: 700 22px/28px Poppins, sans-serif;
}

.payer-simple-stats h3 span:last-child {
  display: block;
  color: #fc5d61;
}

.payer-simple-stats .payer-stats {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.desktop{
    display: block;
  }
  .mobile {
    display: none;
  }
@media (max-width: 1300px) {

  .payer-simple-stats,
  .payer-simple-grid {
    display: grid;
  }
}

@media (max-width: 900px) {
  .payer-simple-stats .payer-stats {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    row-gap: 16px;
  }
}

@media (max-width: 640px) {
  .payer-simple-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 768px) {
  .payer-billing {
    padding: 32px 20px;
  }

  .payer-left {
    flex-basis: 100%;
    width: 100%;
    max-width: 100%;
    /* align-items: center; */
    /* text-align: center; */
  }
  .desktop{
    display: none;
  }
  .mobile {
    display: block;
  }

  .payer-left h2,
  .payer-left>p,
  .payer-list {
    width: 100%;
    min-width: 0;
    max-width: 100%;
  }

  .payer-left h2 {
    font-size: 26px;
    line-height: 34px;
  }

  .payer-list-item {
    width: 100%;
    min-width: 0;
    text-align: left;
  }

  .payer-list-item>div {
    min-width: 0;
    flex: 1 1 0;
  }

  .payer-cta {
    padding: 10px 20px;
    height: auto;
    flex-wrap: wrap;
    justify-content: center;
    text-align: center;
  }
}

/* Where We Support Providers / Coverage Map — Figma node 135:3063 */
.coverage-map {
  padding: 40px 20px;
  background: #fff;
}

.coverage-inner {
  width: min(1240px, 100%);
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
}

.coverage-intro {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
  width: 100%;
  min-width: 0;
  text-align: center;
}

.coverage-intro h2,
.coverage-intro>p {
  width: 100%;
  min-width: 0;
  max-width: 788px;
}

.coverage-pill {
  display: inline-flex;
  padding: 8px 10px;
  border-radius: 9px;
  background: rgba(39, 55, 117, .1);
  color: #273775;
  text-transform: capitalize;
  font: 700 12px/1 Poppins, sans-serif;
}

.coverage-intro h2 {
  margin: 0;
  max-width: 788px;
  color: #273775;
  text-transform: capitalize;
  font: 700 32px/35px Poppins, sans-serif;
}

.coverage-intro h2 span {
  color: #fc5d61;
}

.coverage-intro>p {
  margin: 0;
  color: #3d3d3d;
  font: 400 16px/25.2px Poppins, sans-serif;
}

/* Desktop hub-and-spoke diagram, matched to Figma's 1240x700 canvas */
.coverage-diagram {
  position: relative;
  width: 1240px;
  max-width: 100%;
  height: 700px;
}

.coverage-map-bg {
  position: absolute;
  top: 170px;
  left: 50%;
  width: 480px;
  height: 297px;
  transform: translateX(-50%);
  z-index: 1;
  pointer-events: none;
}

.coverage-connector {
  position: absolute;
  top: 120px;
  width: 279px;
  height: 463px;
  z-index: 2;
}

.coverage-connector--left {
  left: 316px;
}

.coverage-connector--right {
  right: 316px;
  transform: scaleX(-1);
}

.coverage-hub {
  position: absolute;
  top: 250px;
  left: 50%;
  width: 144px;
  height: 144px;
  transform: translateX(-50%);
  z-index: 2;
}

.coverage-hub img {
  width: 100%;
  height: 100%;
}

.coverage-stats {
  position: absolute;
  top: 415px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  display: flex;
  align-items: center;
  gap: 20px;
  padding: 20px;
  background: #fff;
  border: 1.5px solid #e5e7eb;
  border-radius: 29px;
  white-space: nowrap;
}

.coverage-stats-icon {
  flex: 0 0 70px;
  width: 70px;
  height: 70px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: #273775;
}

.coverage-stats-icon img {
  width: 35px;
  height: 35px;
}

.coverage-stats-label {
  margin: 0;
  color: #9a9a9f;
  text-transform: uppercase;
  font: 600 16px/1.2 Poppins, sans-serif;
}

.coverage-stats-number {
  margin: 0;
  color: #273775;
  font: 800 47px/1 Poppins, sans-serif;
}

.coverage-stats-sub {
  margin: 0;
  color: #fc5d61;
  text-transform: uppercase;
  font: 600 16px/1.2 Poppins, sans-serif;
}

.coverage-cta {
  position: absolute;
  top: 576px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  display: inline-flex;
  align-items: center;
  gap: 12px;
  height: 50px;
  padding: 18px 32px;
  border-radius: 100px;
  background: #fc5d61;
  color: #fff;
  text-decoration: none;
  white-space: nowrap;
  font: 600 16px/1 Poppins, sans-serif;
  box-shadow: 0 12px 12px rgba(252, 93, 97, .25);
}

.coverage-cta img {
  width: 20px;
  height: 20px;
}

.coverage-card {
  position: absolute;
  z-index: 1;
  width: 342.239px;
  height: 260px;
  box-sizing: border-box;
  padding: 40px;
}

.coverage-card::before {
  content: "";
  position: absolute;
  z-index: 0;
  inset: 0;
  background-repeat: no-repeat;
  background-size: 100% 100%;
}

.coverage-card--california::before {
  background-image: url("../assets/icons/coverage/card-bg-a.svg");
}

.coverage-card--arizona::before,
.coverage-card--georgia::before {
  background-image: url("../assets/icons/coverage/card-bg-b.svg");
}

.coverage-card--texas::before,
.coverage-card--florida::before {
  background-image: url("../assets/icons/coverage/card-bg-c.svg");
}

.coverage-card--newyork::before {
  background-image: url("../assets/icons/coverage/card-bg-d.svg");
}

.coverage-card--newyork::before,
.coverage-card--georgia::before,
.coverage-card--florida::before {
  transform: scaleX(-1);
}

.coverage-card-icon {
  position: relative;
  z-index: 1;
  display: grid;
  place-items: center;
  width: 62px;
  height: 62px;
  margin-bottom: 12px;
  border-radius: 50%;
  background: #EFF2FF;
  transform: rotate(-1.68deg);
}

.coverage-card--newyork .coverage-card-icon {
    margin-top: 30px;
}

.coverage-card-icon img {
  width: 33px;
  height: 33px;
}

.coverage-card h3 {
  position: relative;
  z-index: 1;
  margin: 0;
  color: #273775;
  font: 700 20px/1 Poppins, sans-serif;
}

.coverage-card-divider {
  position: relative;
  z-index: 1;
  display: block;
  width: 16px;
  height: 2px;
  margin: 8px 0;
}

.coverage-card>p {
  position: relative;
  z-index: 1;
  margin: 0;
  max-width: 205px;
  color: #3d3d3d;
  font: 400 16px/1.3 Poppins, sans-serif;
}

.coverage-card-pin {
  position: absolute;
  z-index: 0;
  pointer-events: none;
}

.coverage-card--california {
  top: 0;
  left: 0;
}

.coverage-card--california .coverage-card-pin {
  top: 64px;
  right: 20px;
  width: 150px;
}

.coverage-card--arizona {
  top: 260px;
  left: 0;
}

.coverage-card--arizona .coverage-card-pin {
  top: 57px;
  right: 25px;
  width: 80px;
}

.coverage-card--texas {
  top: 480px;
  left: 0;
}

.coverage-card--texas .coverage-card-pin {
  top: 50px;
  right: 42px;
  width: 100px;
}

.coverage-card--texas .coverage-card-icon{
  margin-top: 20px;
}

.coverage-card--newyork {
  top: 0;
  right: 0;
}

.coverage-card--newyork .coverage-card-pin {
  top: 60px;
  left: 184px;
  width: 135px;
}

.coverage-card--georgia {
  top: 260px;
  right: 0;
}

.coverage-card--georgia .coverage-card-pin {
  top: 70px;
  left: 190px;
  width: 100px;
}

.coverage-card--florida {
  top: 480px;
  right: 0;
}

.coverage-card--florida .coverage-card-pin {
    top: 80px;
    left: 170px;
    width: 108px;
}

/* Below the diagram's native canvas width, fall back to a simplified stacked layout.
   coverage-simple-hub lives INSIDE coverage-simple-grid (between the 3rd and 4th
   card) and spans the full grid row, so the hub/stats/CTA block lands in the
   middle of the card list — matching Figma's mobile order — at every column
   count (3 / 2 / 1) without needing per-breakpoint reordering. */
.coverage-simple-hub,
.coverage-simple-grid {
  display: none;
}

@media (max-width: 1300px) {
  .coverage-diagram {
    display: none;
  }

  .coverage-simple-hub {
    position: relative;
    grid-column: 1 / -1;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 24px;
    width: 100%;
    padding: 20px 0;
    overflow: hidden;
  }

  /* Faint USA map/flag texture behind the hub — same asset used by the
     desktop .coverage-diagram's .coverage-map-bg, just re-sized here since
     .coverage-diagram (and that bg with it) is display:none at this width. */
  .coverage-simple-hub-bg {
    position: absolute;
    top: 0;
    left: 50%;
    width: 300px;
    max-width: 90%;
    height: auto;
    transform: translateX(-50%);
    z-index: 0;
    pointer-events: none;
  }

  .coverage-simple-hub .coverage-hub,
  .coverage-simple-hub .coverage-stats,
  .coverage-simple-hub .coverage-cta {
    position: relative;
    top: auto;
    left: auto;
    right: auto;
    bottom: auto;
    z-index: 1;
    transform: none;
  }

  .coverage-simple-hub .coverage-hub {
    width: 110px;
    height: 110px;
  }

  .coverage-simple-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 20px;
    width: 100%;
    max-width: 1000px;
  }

  /* .coverage-card--california/arizona/texas/newyork/georgia/florida each
     set top/left/right (tuned for the desktop diagram's absolute-positioned
     700px-tall canvas). Those offsets still apply under position:relative,
     so without resetting them here every card shoves itself hundreds of
     pixels off its normal grid position — this is what was causing the
     pile-up/overlap. ::before is the desktop "loose photo tile" tilted
     background (card-bg-a/b/c/d.svg) — swapped for a flat Figma-style card. */
  .coverage-simple-grid .coverage-card {
    position: relative;
    top: auto;
    left: auto;
    right: auto;
    bottom: auto;
    width: auto;
    height: auto;
    min-height: 140px;
    overflow: hidden;
    display: grid;
    grid-template-columns: 62px minmax(0, 1fr) 106px;
    column-gap: 12px;
    align-items: start;
    padding: 17px;
    background: rgba(239, 242, 255, 0.28);
    border: 1px solid #f1f5f9;
    border-radius: 12px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, .05);
  }

  .coverage-simple-grid .coverage-card::before {
    display: none;
  }

  .coverage-simple-grid .coverage-card-icon {
    grid-column: 1;
    grid-row: 1 / 4;
    width: 40px;
    height: 40px;
    margin-bottom: 0;
  }

  .coverage-simple-grid .coverage-card-icon img {
    width: 20px;
    height: 20px;
  }

  .coverage-simple-grid .coverage-card--texas .coverage-card-icon,
  .coverage-simple-grid .coverage-card--newyork .coverage-card-icon {
    margin-top: 0;
  }

  .coverage-simple-grid .coverage-card h3 {
    grid-column: 2;
    grid-row: 1;
    font-size: 16px;
  }

  .coverage-simple-grid .coverage-card-divider {
    grid-column: 2;
    grid-row: 2;
  }

  .coverage-simple-grid .coverage-card > p {
    grid-column: 2;
    grid-row: 3;
    max-width: none;
    color: #64748b;
    font-size: 14px;
  }

  .coverage-simple-grid .coverage-card-pin {
    position: relative;
    grid-column: 3;
    grid-row: 1 / 4;
    align-self: center;
    top: auto !important;
    left: auto !important;
    right: auto !important;
    bottom: auto !important;
    width: 106px !important;
    max-width: 106px !important;
  }
}

@media (max-width: 900px) {
  .coverage-simple-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .coverage-stats {
    white-space: normal;
  }
}

@media (max-width: 640px) {
  .coverage-simple-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 768px) {
  .coverage-map {
    padding: 32px 20px;
  }

  .coverage-intro h2 {
    font-size: 26px;
    line-height: 32px;
  }

  .coverage-stats {
    gap: 12px;
    padding: 14px;
  }

  .coverage-stats-icon {
    flex-basis: 56px;
    width: 56px;
    height: 56px;
  }

  .coverage-stats-number {
    font-size: 36px;
  }
}

/* Case Study Spotlight — Figma node 202:6213 */
.case-study {
  padding: 41px 20px;
  background:
    linear-gradient(141.6deg, rgba(39, 55, 117, .03) 0%, rgba(39, 55, 117, 0) 50%),
    linear-gradient(218.4deg, rgba(252, 93, 97, .02) 0%, rgba(252, 93, 97, 0) 50%),
    #f8fafc;
  border-top: 1px solid #f3f4f6;
  border-bottom: 1px solid #f3f4f6;
}

.case-study-inner {
  width: min(1240px, 100%);
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 40px;
}

.case-intro {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  width: 100%;
  min-width: 0;
  text-align: center;
}

.case-pill {
  display: inline-flex;
  padding: 8px 10px;
  border-radius: 9px;
  background: rgba(39, 55, 117, .1);
  color: #273775;
  font: 700 12px/1 Poppins, sans-serif;
}

.case-intro h2 {
  margin: 0;
  width: 100%;
  min-width: 0;
  max-width: 668px;
  color: #273775;
  font: 700 32px/40px Poppins, sans-serif;
}

.case-intro h2 span {
  color: #fc5d61;
}

.case-intro>p {
  margin: 0;
  width: 100%;
  min-width: 0;
  color: #3d3d3d;
  font: 400 16px/20px Poppins, sans-serif;
}

.case-grid {
  display: flex;
  align-items: flex-start;
  gap: 20px;
  width: 100%;
}

.case-sidebar {
  flex: 0 0 295px;
  display: flex;
  flex-direction: column;
  gap: 24px;
  width: 295px;
}

.case-panel {
  width: 100%;
  box-sizing: border-box;
  padding: 25px;
  background: #fff;
  border: 1px solid #f1f5f9;
  border-radius: 16px;
  box-shadow: 0 4px 16px rgba(39, 55, 117, .06);
}

.case-panel h3 {
  margin: 0 0 16px;
  opacity: .7;
  color: #273775;
  text-transform: uppercase;
  letter-spacing: 1px;
  font: 700 12px/15px Poppins, sans-serif;
}

.case-item {
  display: flex;
  align-items: flex-start;
  gap: 16px;
}

.case-item+.case-item {
  margin-top: 20px;
}

.case-item-icon {
  flex: 0 0 auto;
  display: grid;
  place-items: center;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: #fff;
  box-shadow: 0 1px 2.5px rgba(0, 0, 0, .14);
}

.case-item-icon img {
  width: 20px;
  height: 20px;
}

.case-item p {
  margin: 0;
  color: #1e293b;
  font: 400 12px/19.5px Poppins, sans-serif;
}

.case-item p strong {
  font-weight: 700;
}

.case-feature {
  flex: 1 1 0;
  min-width: 0;
  display: flex;
  flex-direction: column;
  overflow: hidden;
  background: #273775;
  border-radius: 24px;
  box-shadow: 0 25px 50px -12px rgba(0, 0, 0, .25);
}

.case-feature-top {
  display: flex;
  padding: 32px 32px 0px 32px;
  box-sizing: border-box;
}

.case-feature-text {
  flex: 1 1 0;
  min-width: 0;
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.case-doctor {
  display: flex;
  gap: 12px;
  align-items: flex-start;
}

.case-doctor-icon {
  flex: 0 0 auto;
  display: grid;
  place-items: center;
  width: 40px;
  height: 40px;
  padding: 8px;
  box-sizing: border-box;
  border-radius: 50%;
  background: #fff;
}

.case-doctor-icon img {
  width: 24px;
  height: 24px;
}

.case-doctor-name {
  display: flex;
  align-items: center;
  gap: 10px;
}

.case-doctor-name h4 {
  margin: 0;
  color: #fff;
  font: 700 16px/20px Poppins, sans-serif;
}

.case-doctor-name img {
  width: 15px;
  height: 15px;
}

.case-doctor-role {
  margin: 7px 0 0;
  color: #fff;
  font: 400 12px/15px Poppins, sans-serif;
}

.case-doctor-location {
  margin: 4px 0 0;
  display: flex;
  align-items: center;
  gap: 4px;
  color: #fff;
  font: 400 10px/15px Poppins, sans-serif;
}

.case-doctor-location img {
  width: 15px;
  height: 15px;
  flex: 0 0 auto;
}

.case-detail-head {
  display: flex;
  align-items: center;
  gap: 8px;
}

.case-detail-icon {
  flex: 0 0 auto;
  display: grid;
  place-items: center;
  width: 29px;
  height: 29px;
  padding: 6.5px;
  box-sizing: border-box;
  border-radius: 50%;
  background: #fff;
  box-shadow: 0 0.8px 2px rgba(0, 0, 0, .14);
}

.case-detail-icon img {
  width: 16px;
  height: 16px;
}

.case-detail-head h5 {
  margin: 0;
  color: #fff;
  text-transform: uppercase;
  font: 700 14px/15px Poppins, sans-serif;
}

.case-detail>p {
  margin: 8px 0 0;
  padding-left: 32px;
  box-sizing: border-box;
  color: #eff6ff;
  font: 400 12px/19.5px Poppins, sans-serif;
}


.case-feature-photo img {
  position: relative;
  left: 90px;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top center;
  margin-top: -40px;
}

.case-metric-bar {
  display: flex;
  width: calc(100% - 64px);
  margin: 0 32px;
  padding: 26px 2px;
  box-sizing: border-box;
  background: linear-gradient(#3D4B83) padding-box, linear-gradient(90deg, #395ADA 40%, #FC5D61 100%) border-box;
  border: 2px solid transparent;
  border-radius: 10px;
  margin-top: -40px;
}

.case-metric {
  flex: 1 1 0;
  min-width: 0;
  padding: 0 8px;
  text-align: center;
  border-right: 1px solid rgba(255, 255, 255, .05);
}

.case-metric:last-child {
  border-right: none;
}

.case-metric-value {
  margin: 0;
  color: #fff;
  font: 700 24px/32px Poppins, sans-serif;
  white-space: nowrap;
}

.case-metric-value span {
  color: #fc5d61;
  font-size: 22px;
}

.case-metric-label {
  margin: 0;
  color: #fff;
  text-transform: capitalize;
  font: 400 14px/1.2 Poppins, sans-serif;
}

.case-metric-note {
  margin: 5px 0 0;
  color: #fc5d61;
  font: 400 12px/1.2 Poppins, sans-serif;
}

.case-quote {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 20px;
  background: linear-gradient(90deg, #273775 30%, #fc5d61 100%);
  margin-top: 20px;
}

.case-quote img {
  flex: 0 0 32px;
  width: 32px;
  height: 32px;
}

.case-quote-text {
  margin: 0;
  color: #fff;
  font: 400 italic 12px/15.13px Poppins, sans-serif;
}

.case-quote-attr {
  margin: 17px 0 0;
  color: #fff;
  text-transform: uppercase;
  font: 700 12px/12.38px Poppins, sans-serif;
}

@media (max-width: 1100px) {
  .case-grid {
    flex-wrap: wrap;
  }

  .case-sidebar {
    flex: 1 1 260px;
    width: auto;
  }

  .case-feature {
    flex: 1 1 100%;
  }

  .case-feature-photo {
    flex-basis: 220px;
    width: 220px;
    height: 300px;
  }
}

@media (max-width: 860px) {
  .case-sidebar {
    flex-direction: row;
    flex-wrap: wrap;
  }

  .case-sidebar,
  .case-panel {
    width: 100%;
  }

  .case-panel {
    flex: 1 1 260px;
  }

  .case-feature-top {
    flex-wrap: wrap;
  }

  .case-feature-text {
    flex: 1 1 100%;
  }

  .case-feature-photo {
    /* no order override — it already follows .case-feature-text in the
       DOM (after THE RESULTS), matching Figma's mobile stacking */
    flex: 0 0 100%;
    width: 100%;
    height: 260px;
    margin: 0 auto;
    max-width: 300px;
  }

  .case-feature-photo img {
    /* the 90px shift lines the photo up with the desktop card's
       asymmetric layout — cancel it so it centers with the wrapper above */
    left: 0;
  }

  .case-metric-bar {
    flex-wrap: wrap;
    row-gap: 20px;
  }

  .case-metric {
    flex: 1 1 45%;
    border-right: none;
  }
}

@media (max-width: 640px) {
  .case-study {
    padding: 32px 20px;
  }

  /* Figma's mobile frame stacks Key Impact Highlights and At A Glance in
     one column above the feature card, not side-by-side (the ≤860 tier's
     row/wrap only happens to stack them on very narrow tablets by luck of
     wrapping, since .case-panel's flex-basis is 260px, not 100%). */
  .case-sidebar {
    flex-direction: column;
  }

  .case-intro h2 {
    font-size: 24px;
    line-height: 32px;
  }

  .case-feature-top {
    padding: 20px;
  }

  .case-metric-bar {
    width: calc(100% - 40px);
    margin: 0 20px;
  }

  .case-quote {
    flex-direction: column;
    align-items: flex-start;
  }
}

/* Integrations Strip — Figma node 135:3433 */
.integrations-strip {
  padding: 40px 0;
  overflow: hidden;
  background: #eff2ff;
}

.integrations-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 40px;
}

.integrations-intro {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
  width: 100%;
  min-width: 0;
  padding: 0 20px;
  box-sizing: border-box;
  text-align: center;
}

.integrations-pill {
  display: inline-flex;
  padding: 8px 10px;
  border-radius: 9px;
  background: rgba(39, 55, 117, .1);
  color: #273775;
  text-transform: capitalize;
  font: 700 12px/1 Poppins, sans-serif;
}

.integrations-intro h2 {
  margin: 0;
  width: 100%;
  min-width: 0;
  max-width: 788px;
  color: #273775;
  text-transform: capitalize;
  font: 700 32px/45px Poppins, sans-serif;
}

.integrations-intro>p {
  margin: 0;
  width: 100%;
  min-width: 0;
  max-width: 812px;
  color: #3d3d3d;
  font: 400 16px/25.2px Poppins, sans-serif;
}

.integrations-marquee {
  width: 100%;
  overflow: hidden;
  -webkit-mask-image: linear-gradient(90deg, transparent 0, #000 80px, #000 calc(100% - 80px), transparent 100%);
  mask-image: linear-gradient(90deg, transparent 0, #000 80px, #000 calc(100% - 80px), transparent 100%);
}

.integrations-track {
  display: flex;
  align-items: center;
  gap: 40px;
  width: max-content;
  padding: 10px 0;
  animation: integrations-scroll 36s linear infinite;
}

.integrations-marquee:hover .integrations-track {
  animation-play-state: paused;
}

@keyframes integrations-scroll {
  from {
    transform: translateX(0);
  }

  to {
    transform: translateX(-50%);
  }
}

.integrations-logo {
  flex: 0 0 auto;
  display: grid;
  place-items: center;
  width: 96px;
  height: 96px;
  box-sizing: border-box;
  padding: 18px;
  background: #fff;
  border: 1px solid #e5e5e5;
  border-radius: 24px;
  box-shadow: 0 10px 15px -3px rgba(0, 0, 0, .1), 0 4px 6px -4px rgba(0, 0, 0, .1);
}

.integrations-logo img {
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
}

.integrations-logo--flush {
  padding: 0;
  overflow: hidden;
}

.integrations-logo--flush img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

@media (max-width: 640px) {
  .integrations-intro h2 {
    font-size: 26px;
    line-height: 34px;
  }

  .integrations-logo {
    width: 76px;
    height: 76px;
    padding: 14px;
    border-radius: 18px;
  }

  .integrations-track {
    gap: 24px;
  }
}

/* Compliance Journey — Figma node 216:6582 */
.compliance-journey {
  position: relative;
  overflow: hidden;
  padding: 40px 100px 60px;
  background: #fff;
}

.compliance-glow {
  position: absolute;
  top: -308px;
  right: -241px;
  width: 918px;
  height: 918px;
  pointer-events: none;
  z-index: 0;
}

.compliance-inner {
  position: relative;
  z-index: 1;
  width: min(1240px, 100%);
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 60px;
}

.compliance-top {
  display: flex;
  align-items: center;
  gap: 40px;
  flex-wrap: wrap;
}

.compliance-left {
  flex: 1 1 500px;
  min-width: 0;
  max-width: 666px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 20px;
}

.compliance-pill {
  display: inline-flex;
  padding: 8px 10px;
  border-radius: 9px;
  background: rgba(39, 55, 117, .1);
  color: #273775;
  text-transform: capitalize;
  font: 700 12px/1 Poppins, sans-serif;
}

.compliance-left h2 {
  margin: 0;
  width: 100%;
  min-width: 0;
  color: #273775;
  font: 700 32px/36.4px Poppins, sans-serif;
}

.compliance-left h2 span {
  color: #fc5d61;
}

.compliance-left>p {
  margin: 0;
  width: 100%;
  min-width: 0;
  color: #3d3d3d;
  font: 400 16px/25.2px Poppins, sans-serif;
}

.compliance-accent {
  display: block;
  width: 48px;
  height: 4px;
  border-radius: 999px;
  background: #fc5d61;
}

.compliance-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  height: 50px;
  padding: 8px 24px;
  box-sizing: border-box;
  border-radius: 60px;
  background: #273775;
  color: #fff;
  text-decoration: none;
  white-space: nowrap;
  font: 600 16px/20.8px Poppins, sans-serif;
}

.compliance-illustration {
  flex: 1 1 340px;
  max-width: 419px;
  aspect-ratio: 419 / 344;
  position: relative;
  border-radius: 16px;
}

.compliance-illustration img {
  position: absolute;
  top: -6.92%;
  width: 140.21%;
  height: 113.85%;
  max-width: none;
}

.compliance-timeline {
  position: relative;
  width: 100%;
  padding-top: 60px;
  box-sizing: border-box;
}

.compliance-wave {
  position: absolute;
  top: 80px;
  left: 0;
  width: 100%;
  height: auto;
  z-index: 0;
  pointer-events: none;
}

.compliance-track {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: flex-end;
  gap: 12px;
}

.compliance-step {
  flex: 1 1 0;
  min-width: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.compliance-node-wrap {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.compliance-node {
  display: grid;
  place-items: center;
  width: 50px;
  height: 50px;
  flex: 0 0 auto;
  box-sizing: border-box;
  border: 3px solid #fff;
  border-radius: 31px;
  background: #fff;
  box-shadow: 0 0 3px rgba(0, 0, 0, .21);
  color: #273775;
  font: 800 24px/1 Poppins, sans-serif;
}

.compliance-stem {
  position: relative;
  width: 2px;
  height: 22px;
  background: #273775;
}

.compliance-stem::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 8.5px;
  height: 8.5px;
  background: #fff;
  border: 1.5px solid #273775;
  border-radius: 50%;
  transform: translate(-50%, -50%);
}

.compliance-step:nth-child(1) .compliance-node-wrap,
.compliance-step:nth-child(8) .compliance-node-wrap {
  transform: translateY(0);
}

.compliance-step:nth-child(1) .compliance-stem,
.compliance-step:nth-child(8) .compliance-stem {
  height: 26px;
}

.compliance-step:nth-child(2) .compliance-node-wrap,
.compliance-step:nth-child(7) .compliance-node-wrap {
  transform: translateY(0px);
}

.compliance-step:nth-child(2) .compliance-stem,
.compliance-step:nth-child(7) .compliance-stem {
  height: 38px;
}

.compliance-step:nth-child(3) .compliance-node-wrap,
.compliance-step:nth-child(6) .compliance-node-wrap {
  transform: translateY(0px);
}

.compliance-step:nth-child(3) .compliance-stem,
.compliance-step:nth-child(6) .compliance-stem {
  height: 47px;
}

.compliance-step:nth-child(4) .compliance-node-wrap,
.compliance-step:nth-child(5) .compliance-node-wrap {
  transform: translateY(0px);
}

.compliance-step:nth-child(4) .compliance-stem,
.compliance-step:nth-child(5) .compliance-stem {
  height: 51px;
}

.compliance-card {
  width: 100%;
  height: 258px;
  box-sizing: border-box;
  padding: 17px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  background: #fff;
  border: 1px solid #f3f4f6;
  border-radius: 16px;
  box-shadow: 0 0 5px rgba(0, 0, 0, .11);
}

.compliance-card-icon {
  display: grid;
  place-items: center;
  width: 64px;
  height: 64px;
  flex: 0 0 auto;
  border-radius: 50%;
  background: #fff;
  box-shadow: 0 1px 2.5px rgba(0, 0, 0, .18);
}

.compliance-card-icon img {
  width: 40px;
  height: 40px;
}

.compliance-card h3 {
  margin: 0;
  width: 100%;
  min-width: 0;
  text-align: center;
  color: #273775;
  font: 700 14px/22.5px Poppins, sans-serif;
}

.compliance-card-accent {
  display: block;
  width: 28px;
  height: 4px;
  flex: 0 0 auto;
  border-radius: 999px;
  background: #fc5d61;
}

.compliance-card>p {
  margin: 0;
  width: 100%;
  min-width: 0;
  text-align: center;
  color: #3d3d3d;
  font: 400 12px/16.25px Poppins, sans-serif;
}

@media (max-width: 1100px) {
  .compliance-journey {
    padding: 40px 40px 50px;
  }

  .compliance-wave {
    display: none;
  }

  .compliance-timeline {
    padding-top: 0;
  }

  .compliance-track {
    flex-wrap: wrap;
    row-gap: 30px;
    align-items: stretch;
  }

  .compliance-step {
    flex: 1 1 180px;
  }

  .compliance-node-wrap {
    transform: none !important;
  }

  .compliance-stem {
    height: 22px !important;
  }

}

@media (max-width: 640px) {
  .compliance-journey {
    padding: 32px 20px 40px;
  }

  .compliance-top {
    flex-direction: column;
    align-items: stretch;
  }

  .compliance-illustration {
    width: 100%;
    max-width: 340px;
    align-self: center;
  }

  .compliance-left h2 {
    font-size: 26px;
    line-height: 32px;
  }

  .compliance-step {
    flex: 1 1 45%;
  }
  
  .compliance-illustration {
    align-self: auto;
  }
}

/* Pricing Packages — Figma node 223:7111 */
.pricing-packages {
  padding: 40px 100px;
  background: #eff2ff;
}

.pricing-inner {
  width: min(1240px, 100%);
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 40px;
}

.pricing-intro {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
  width: 100%;
  min-width: 0;
  text-align: center;
}

.pricing-pill {
  display: inline-flex;
  padding: 8px 10px;
  width: fit-content !important;
  border-radius: 9px;
  background: rgba(39, 55, 117, .1);
  color: #273775;
  text-transform: capitalize;
  font: 700 12px/1 Poppins, sans-serif;
}

.pricing-intro h2 {
  margin: 0;
  width: 100%;
  min-width: 0;
  max-width: 788px;
  color: #273775;
  text-transform: capitalize;
  font: 700 32px/45px Poppins, sans-serif;
}

.pricing-intro h2 span {
  color: #fc5d61;
}

.pricing-grid {
  display: flex;
  align-items: flex-start;
  justify-content: center;
  gap: 41px;
  width: 100%;
  flex-wrap: wrap;
}

.pricing-card {
  position: relative;
  width: 380px;
  max-width: 100%;
  box-sizing: border-box;
  padding: 20px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 20px;
  overflow: hidden;
  background: #fff;
  border-radius: 10px;
  box-shadow: 0 1px 2px rgba(0, 0, 0, .05);
}

.pricing-card:not(.pricing-card--featured) {
  min-height: 620px;
}

.pricing-card--featured {
  padding-top: 60px;
  background: linear-gradient(var(--c-white), var(--c-white)) padding-box, linear-gradient(90deg, #273775 40%, #FC5D61 100%) border-box;
  border: 2px solid transparent;
  box-shadow: 0 20px 25px -5px rgba(0, 0, 0, .1), 0 8px 10px -6px rgba(0, 0, 0, .1);
}

.pricing-card-banner {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 11px 8px;
  background: linear-gradient(90deg, #273775 30%, #fc5d61 100%);
  color: #fff;
  text-transform: capitalize;
  font: 700 14px/15px Poppins, sans-serif;
}

.pricing-card-letter {
  position: absolute;
  top: 120px;
  right: 25px;
  transform: translateY(-50%);
  color: #eff2ff;
  z-index: 0;
  pointer-events: none;
  font: 800 110px/120px Poppins, sans-serif;
}

.pricing-card-tier,
.pricing-card-audience,
.pricing-card-price,
.pricing-card-note,
.pricing-card-desc,
.pricing-card-cta,
.pricing-card-features {
  position: relative;
  z-index: 1;
  width: 100%;
  min-width: 0;
  box-sizing: border-box;
}

.pricing-card-audience {
  margin: 0;
  color: #3d3d3d;
  font: 600 16px/24px Poppins, sans-serif;
}

.pricing-card-price {
  margin: 0;
  color: #273775;
  font: 700 30px/36px Poppins, sans-serif;
}

.pricing-card-price span {
  color: #fc5d61;
}

.pricing-card-note {
  margin: 0;
  color: #9a9a9f;
  font: 400 12px/16px Poppins, sans-serif;
}

.pricing-card-desc {
  margin: 0;
  color: #3d3d3d;
  font: 400 14px/25.2px Poppins, sans-serif;
}

.pricing-card-cta {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 50px;
  border-radius: 50px;
  text-decoration: none;
  font: 600 16px/24px Poppins, sans-serif;
}

.pricing-card-cta--outline {
  border: 1px solid #273775;
  color: #273775;
  background: transparent;
}

.pricing-card-cta--solid-orange {
  border: none;
  background: #fc5d61;
  color: #fff;
}

.pricing-card-cta--solid-navy {
  border: none;
  background: #273775;
  color: #fff;
}

.pricing-card-features {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.pricing-card--featured .pricing-card-features {
  gap: 20px;
}

.pricing-card-features li {
  display: flex;
  align-items: center;
  gap: 10px;
  color: #3d3d3d;
  font: 400 14px/20px Poppins, sans-serif;
}

.pricing-card-features li img {
  width: 24px;
  height: 24px;
  flex: 0 0 auto;
}

@media (max-width: 1260px) {
  .pricing-card {
    width: 100%;
    max-width: 420px;
  }

  .pricing-card:not(.pricing-card--featured) {
    min-height: 0;
  }
}

@media (max-width: 640px) {
  .pricing-packages {
    padding: 32px 20px;
  }

  .pricing-intro h2 {
    font-size: 26px;
    line-height: 34px;
  }

  .pricing-card--featured {
    padding-top: 56px;
  }
}

/* Final CTA Banner — Figma node 135:2653 */
.final-cta {
  position: relative;
  height: 480px;
  overflow: hidden;
  box-sizing: border-box;
  background: linear-gradient(90deg, #273775 29.808%, #fc5d61 100%);
}

.final-cta-inner {
  position: relative;
  z-index: 1;
  width: min(1240px, 100%);
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
  flex-wrap: wrap;
}

.final-cta-text {
  flex: 1 1 460px;
  max-width: 600px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 20px;
}

.final-cta-pill {
  display: inline-flex;
  padding: 8px 10px;
  border-radius: 9px;
  background: rgba(255, 255, 255, .3);
  color: #fff;
  text-transform: capitalize;
  font: 700 12px/1 Poppins, sans-serif;
}

.final-cta-text h2 {
  margin: 0;
  width: 100%;
  min-width: 0;
  color: #fff;
  font: 700 32px/35px Poppins, sans-serif;
}

.final-cta-text>p {
  margin: 0;
  width: 100%;
  min-width: 0;
  max-width: 524px;
  color: #fff;
  font: 500 16px/25.2px Poppins, sans-serif;
}

.final-cta-actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 20px;
}

.final-cta-button {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  height: 50px;
  padding: 12px 24px;
  box-sizing: border-box;
  border-radius: 50px;
  background: #fc5d61;
  color: #fff;
  text-decoration: none;
  white-space: nowrap;
  font: 600 16px/24px Poppins, sans-serif;
}

.final-cta-button img {
  width: 20px;
  height: 20px;
}

.final-cta-trust {
  display: flex;
  align-items: center;
  gap: 10px;
}

.final-cta-trust-icon {
  flex: 0 0 40px;
  width: 40px;
  height: 40px;
  display: grid;
  place-items: center;
  border-radius: 180px;
  background: #fff;
  box-shadow: 0 0 10.9px rgba(0, 0, 0, .11);
}

.final-cta-trust-icon img {
  width: 24px;
  height: 24px;
}

.final-cta-trust p {
  margin: 0;
  max-width: 211px;
  color: #fff;
  font: 500 16px/20px Poppins, sans-serif;
}

.final-cta-illustration {
  position: relative;
  top: -57px;
  flex: 0 0 580px;
  width: 580px;
  height: 542px;
  max-width: 100%;
}

.final-cta-rings {
  position: absolute;
  top: 0;
  left: 37px;
  width: 541px;
  height: 542px;
  pointer-events: none;
}

.final-cta-sparkle {
  position: absolute;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #fff;
  box-shadow: 0 0 6px 1px rgba(255, 255, 255, .8);
  pointer-events: none;
}

.final-cta-photo {
  position: absolute;
  left: 79px;
  bottom: 0;
  width: 405px;
  height: 400px;
  overflow: hidden;
  pointer-events: none;
}

.final-cta-photo img {
  position: absolute;
  top: -13.53%;
  left: -11.38%;
  width: 129.37%;
  height: 113.53%;
  max-width: none;
}

.final-cta-badge {
  position: absolute;
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  width: 100px;
}

.final-cta-badge-icon {
  display: grid;
  place-items: center;
  width: 60px;
  height: 60px;
  box-sizing: border-box;
  padding: 3px;
  border-radius: 43px;
  background: rgba(255, 255, 255, .13);
  backdrop-filter: blur(3.55px);
  box-shadow: 0 1px 4px rgba(0, 0, 0, .25);
}

.final-cta-badge-icon img {
  width: 30px;
  height: 30px;
}

.final-cta-badge p {
  margin: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 5px;
  text-align: center;
  color: #fff;
  white-space: nowrap;
}

.final-cta-badge p strong {
  font: 600 14px/14px Poppins, sans-serif;
}

.final-cta-badge p span {
  font: 400 10px/10px Poppins, sans-serif;
}

@media (max-width: 1100px) {
  .final-cta-illustration {
    display: none;
  }

  .final-cta-inner {
    justify-content: center;
  }

  .final-cta-text {
    align-items: center;
    text-align: center;
    max-width: 700px;
  }

  .final-cta-actions {
    justify-content: center;
  }
}

@media (max-width: 640px) {
  .final-cta {
    padding: 40px 20px;
  }

  .final-cta-text h2 {
    font-size: 26px;
    line-height: 32px;
  }

  .final-cta-actions {
    flex-direction: column;
    align-items: stretch;
  }

  .final-cta-button {
    justify-content: center;
  }

  .final-cta-trust {
    justify-content: center;
  }
}

/* Blog / Latest Posts — Figma node 252:73 */
.blog-posts {
  padding: 40px 100px;
  background: #fff;
}

.blog-inner {
  width: min(1240px, 100%);
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 40px;
}

.blog-intro {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
  width: 100%;
  min-width: 0;
  text-align: center;
}

.blog-pill {
  display: inline-flex;
  padding: 8px 10px;
  border-radius: 9px;
  background: rgba(39, 55, 117, .1);
  color: #273775;
  text-transform: capitalize;
  font: 700 12px/1 Poppins, sans-serif;
}

.blog-intro h2 {
  margin: 0;
  width: 100%;
  min-width: 0;
  max-width: 700px;
  color: #273775;
  font: 700 32px/40px Poppins, sans-serif;
}

.blog-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 24px;
  width: 100%;
}

.blog-card {
  display: flex;
  flex-direction: column;
  padding: 20px;
  overflow: hidden;
  transition: box-shadow .2s ease, transform .2s ease;
  border-radius: 20px;
  background: var(--White, #FFF);
  box-shadow: 0 2px 13px 0 rgba(0, 0, 0, 0.13);
}

.blog-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 24px rgba(39, 55, 117, .12);
}

.blog-card-image {
  display: block;
  width: 100%;
  border-radius: 20px;
  aspect-ratio: 342 / 220;
  background: linear-gradient(135deg, #eff2ff 0%, #e5e7eb 100%);
}

.blog-card h3 {
  margin: 20px 0px 0;
  color: #273775;
  font: 700 20px/28px Poppins, sans-serif;
}

.blog-card p {
  margin: 10px 0px 0;
  flex: 1 1 auto;
  color: #3d3d3d;
  font: 400 14px/22px Poppins, sans-serif;
}

.blog-card-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin: 16px 0px 20px;
  color: #273775;
  font: 600 14px/20px Poppins, sans-serif;
  text-decoration: none;
}

.blog-card-link img {
  width: 16px;
  height: 16px;
  transition: transform .2s ease;
}

.blog-card-link:hover img {
  transform: translateX(4px);
}

@media (max-width: 900px) {
  .blog-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 640px) {
  .blog-posts {
    padding: 32px 20px;
  }

  .blog-intro h2 {
    font-size: 24px;
    line-height: 32px;
  }

  .blog-grid {
    grid-template-columns: 1fr;
  }
}

/* FAQ / Accordion — Figma node 244:8642 */
.faq-section {
  padding: 40px 100px;
  background: var(--c-white);
}

.faq-inner {
  width: min(1240px, 100%);
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
}

.faq-title {
  margin: 0;
  color: var(--c-blue);
  text-align: center;
  text-transform: capitalize;
  font: 700 32px/45px Poppins, sans-serif;
}

.faq-content {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
  width: 100%;
}

.faq-visual {
  position: relative;
  flex-shrink: 0;
  width: min(459px, 100%);
  aspect-ratio: 459 / 426;
}

.faq-ring {
  position: absolute;
  top: 24%;
  left: 0;
  width: 62%;
  height: 68%;
  border-radius: 50%;
  border: 20px solid rgba(39, 55, 117, 0.06);
}

.faq-blob {
  position: absolute;
  top: 14%;
  left: 2%;
  width: 39%;
  height: 45%;
  border-radius: 50%;
  background: rgba(252, 93, 97, 0.12);
}

.faq-photo {
  position: absolute;
  top: 0;
  height: 100%;
  object-fit: cover;
}

.faq-accordion {
  display: flex;
  flex-direction: column;
  gap: 22px;
  width: 100%;
  max-width: 720px;
}

.faq-item {
  border: 1px solid transparent;
  border-radius: 4px;
  background: var(--c-blue);
  overflow: hidden;
  transition: background 0.2s ease, border-color 0.2s ease;
}

.faq-item.is-open {
  background: var(--c-bg-blue);
  border-color: var(--c-light-grey);
}

.faq-header {
  width: 100%;
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 16px;
  padding: 11px;
  background: none;
  border: none;
  text-align: left;
  cursor: pointer;
  color: var(--c-white);
  font: 400 16px/28.8px Poppins, sans-serif;
  letter-spacing: -0.4px;
}

.faq-item.is-open .faq-header {
  color: var(--c-text);
  font-weight: 700;
}

.faq-icon {
  flex-shrink: 0;
  width: 24px;
  height: 24px;
}

.faq-icon img {
  width: 100%;
  height: 100%;
}

.faq-icon .faq-icon-plus {
  display: block;
}

.faq-icon .faq-icon-minus {
  display: none;
}

.faq-item.is-open .faq-icon .faq-icon-plus {
  display: none;
}

.faq-item.is-open .faq-icon .faq-icon-minus {
  display: block;
}

.faq-body {
  max-height: 0;
  overflow: hidden;
  padding: 0 11px;
  transition: max-height 0.3s ease;
}

.faq-item.is-open .faq-body {
  max-height: 300px;
  padding: 0 11px 11px;
}

.faq-answer {
  margin: 0;
  color: var(--c-text);
  font: 400 16px/28.8px Poppins, sans-serif;
}

@media (max-width: 900px) {
  .faq-content {
    flex-direction: column;
  }

  .faq-visual {
    width: min(320px, 100%);
  }

  .faq-accordion {
    max-width: 100%;
  }
}

@media (max-width: 640px) {
  .faq-section {
    padding: 32px 20px;
  }

  .faq-title {
    font-size: 24px;
    line-height: 32px;
  }
}

/* =============================================================
   COST CALCULATOR — Figma node 1598:19557
   ============================================================= */

.calc-section {
  padding: 60px 0;
}

.calc-step-hidden {
  display: none;
}

.calc-head {
  margin-bottom: 26px;
}

.calc-title {
  font-family: var(--font-primary);
  font-weight: 700;
  font-size: 32px;
  line-height: 1.4375;
  letter-spacing: -1px;
  color: var(--c-blue);
  text-align: center;
  margin: 0;
}

.calc-grid {
  display: flex;
  align-items: stretch;
  gap: 22px;
  margin-bottom: 26px;
}

/* ---------- Sidebar ---------- */

.calc-sidebar {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
  width: 380px;
  flex-shrink: 0;
  padding: 40px 20px;
  border-radius: 22px;
  background: linear-gradient(132deg, rgba(255, 255, 255, 0.04) 0%, rgba(255, 255, 255, 0) 1.4%),
    var(--c-blue);
}

.calc-sidebar-title {
  font-family: var(--font-primary);
  font-weight: 700;
  font-size: 32px;
  line-height: 40px;
  letter-spacing: -1px;
  color: var(--c-white);
  text-align: left;
  width: 100%;
  margin: 0;
}

.calc-sidebar-title .accent {
  display: block;
}

.calc-checklist {
  display: flex;
  flex-direction: column;
  width: 100%;
}

.calc-checklist li {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 13px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.14);
  font-size: 16px;
  color: var(--c-white);
}

.calc-checklist li:last-child {
  border-bottom: none;
}

.calc-check-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  width: 28px;
  height: 28px;
  border-radius: 14px;
  background: var(--c-orange);
}

.calc-check-icon img {
  width: 14px;
  height: 14px;
}

.calc-sidebar-illustration {
  width: 180px;
  max-width: 100%;
  margin-top: auto;
}

/* ---------- Main column ---------- */

.calc-main {
  display: flex;
  flex-direction: column;
  gap: 22px;
  flex: 1 1 0;
  min-width: 0;
}

.calc-card {
  background: var(--c-white);
  border-radius: 22px;
  box-shadow: 0 14px 40px 0 rgba(39, 55, 117, 0.08);
  overflow: hidden;
}

.calc-card--fill {
  display: flex;
  flex-direction: column;
  flex: 1 1 0;
  min-height: 0;
}

.calc-card-header {
  display: flex;
  align-items: center;
  gap: 20px;
  padding: 26px 30px;
  background: linear-gradient(99deg, var(--c-blue) 0%, var(--c-blue) 42%, var(--c-orange) 100%);
}

.calc-card-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: var(--c-white);
}

.calc-card-icon img {
  width: 28px;
  height: 28px;
}

.calc-card-title {
  font-family: var(--font-primary);
  font-weight: 600;
  font-size: 25px;
  letter-spacing: -0.25px;
  color: var(--c-white);
  margin: 0 0 5px;
}

.calc-card-title--solo {
  margin: 0;
}

.calc-card-sub {
  font-size: 15px;
  color: var(--c-white);
  margin: 0;
}

.calc-card-body {
  display: flex;
  align-items: stretch;
  gap: 20px;
  padding: 20px;
}

/* ---------- Form ---------- */

.calc-form {
  display: flex;
  flex-direction: column;
  flex: 1 1 474px;
  min-width: 0;
}

.calc-field {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 13px 0;
  border-bottom: 1px solid #e2e5f0;
}

.calc-field:last-of-type {
  border-bottom: none;
}

.calc-field-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  width: 36px;
  height: 36px;
}

.calc-field-icon--plain {
  width: 36px;
  height: 36px;
}

.calc-field-icon--circle {
  border-radius: 50%;
  background: var(--c-white);
  box-shadow: 0 1px 4px 0 rgba(0, 0, 0, 0.25);
}

.calc-field-icon--circle img {
  /* width: 20px; */
  height: 20px;
}

.calc-field label {
  flex-shrink: 0;
  width: 148px;
  font-weight: 600;
  font-size: 16px;
  color: var(--c-blue);
}

.calc-field input,
.calc-field select {
  flex: 1 1 0;
  min-width: 0;
  height: 40px;
  background: var(--c-white);
  border: 1px solid #e2e5f0;
  border-radius: 12px;
  padding: 7px 11px;
  font-family: var(--font-primary);
  font-size: 14px;
  color: var(--c-text);
  outline: none;
  transition: border-color 0.2s ease;
}

.calc-field input::placeholder {
  color: var(--c-placeholder);
}

.calc-field input:focus,
.calc-field select:focus {
  border-color: var(--c-blue);
}

.calc-field select {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  color: var(--c-placeholder);
}

.calc-field select:valid {
  color: var(--c-text);
}

.calc-select-wrap {
  position: relative;
  flex: 1 1 0;
  min-width: 0;
}

.calc-select-wrap select {
  width: 100%;
  padding-right: 32px;
}

.calc-select-chevron {
  position: absolute;
  right: 11px;
  top: 50%;
  transform: translateY(-50%);
  width: 14px;
  height: 14px;
  pointer-events: none;
}

.calc-revenue-wrap {
  display: flex;
  align-items: center;
  gap: 8px;
  flex: 1 1 0;
  min-width: 0;
  height: 40px;
  background: var(--c-white);
  border: 1px solid #e2e5f0;
  border-radius: 12px;
  padding: 0 11px;
}

.calc-revenue-wrap .calc-dollar {
  flex-shrink: 0;
  font-weight: 700;
  font-size: 16px;
  color: var(--c-blue);
}

.calc-revenue-wrap input {
  flex: 1 1 0;
  min-width: 0;
  height: 100%;
  border: none;
  padding: 0;
  background: transparent;
}

.calc-tooltip {
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 28px;
  height: 28px;
  border-radius: 8px;
  background: #eef0f7;
  font-weight: 600;
  font-size: 14px;
  color: var(--c-blue);
  cursor: help;
}

.calc-submit {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  width: 100%;
  height: 50px;
  margin-top: 20px;
  border: none;
  border-radius: 34px;
  background: var(--c-orange);
  font-family: var(--font-primary);
  font-weight: 600;
  font-size: 18px;
  color: var(--c-white);
  cursor: pointer;
  transition: filter 0.2s ease, transform 0.15s ease;
}

.calc-submit:hover {
  filter: brightness(0.95);
  transform: translateY(-1px);
}

.calc-submit img {
  width: 20px;
  height: 20px;
}

.calc-submit img:first-child {
  width: 22px;
  height: 22px;
}

/* ---------- Results ---------- */

.calc-divider {
  flex-shrink: 0;
  width: 1px;
  background: #eef0f7;
}

.calc-results {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
  flex: 1 1 240px;
  min-width: 240px;
}

.calc-results-head {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.calc-results-title {
  font-family: var(--font-primary);
  font-weight: 700;
  font-size: 24px;
  letter-spacing: -0.56px;
  color: var(--c-blue);
  margin: 0;
}

.calc-results-underline {
  width: 52px;
  height: 4px;
  margin-top: 6px;
  border-radius: 4px;
  background: var(--c-orange);
}

.calc-result-circle {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 4px;
  width: 170px;
  max-width: 100%;
  aspect-ratio: 1;
  background: linear-gradient(var(--c-white), var(--c-white)) padding-box, linear-gradient(90deg, #273775 40%, #FC5D61 100%) border-box;
  border: 7.563px solid transparent;
  border-radius: 50%;
  transition: background 0.2s ease;
}

.calc-result-circle.is-resetting {
  background: none;
}

.calc-result-circle.is-animating {
  background: linear-gradient(var(--c-white), var(--c-white)) padding-box, conic-gradient(#273775 0%, var(--c-orange) calc(var(--calc-progress, 0) * 1%), #273775 calc(var(--calc-progress, 0) * 1%)) border-box;
  transition: none;
}

.calc-result-amount {
  font-family: var(--font-primary);
  font-weight: 700;
  font-size: 35.5px;
  letter-spacing: -1.97px;
  color: var(--c-blue);
  line-height: 1;
}

.calc-result-label {
  font-size: 17.6px;
  line-height: 1.35;
  color: #5c6795;
  text-align: center;
}

.calc-expert {
  display: flex;
  flex-direction: column;
  gap: 16px;
  align-items: flex-start;
  width: 100%;
  padding: 17px;
  border: 1px dashed var(--c-blue);
  border-radius: 18px;
  background: var(--c-bg-blue);
}

.calc-expert-top {
  align-items: center;
  gap: 12px;
}
    
.calc-expert-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: var(--c-white);
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.25);
  position: relative;
  top: -6px;
}

.calc-expert-icon img {
  width: 22px;
  height: 22px;
}

.calc-expert-title {
  font-weight: 700;
  font-size: 16px;
  color: var(--c-orange);
  margin: 0 0 4px;
}

.calc-expert-sub {
  font-size: 12px;
  line-height: 1.625;
  color: var(--c-text);
  margin: 0;
}

.calc-expert-arrow {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  width: 30px;
  height: 30px;
  border-radius: 50%;
  background: var(--c-orange);
}

.calc-expert-arrow img {
  width: 18px;
  height: 18px;
}

/* ---------- Compare row ---------- */

.calc-compare {
  display: flex;
  align-items: stretch;
  background: var(--c-white);
  border-radius: 22px;
  box-shadow: 0 14px 20px 0 rgba(39, 55, 117, 0.08);
  padding: 20px;
}

.calc-compare-divider {
  flex-shrink: 0;
  width: 1px;
  margin: 0 30px;
  background: var(--c-light-grey);
}

.calc-compare-tile {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  gap: 6px;
  flex: 1 1 0;
  min-width: 0;
  padding: 21px 17px;
  border: 1px solid var(--c-light-grey);
  border-radius: 14px;
  background: var(--c-bg-blue);
}

.calc-compare-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: var(--c-white);
  border: 1px solid var(--c-light-grey);
}

.calc-compare-icon img {
  width: 24px;
  height: 24px;
}

.calc-compare-body {
  min-width: 0;
}

.calc-compare-title {
  font-weight: 600;
  font-size: 16px;
  color: var(--c-blue);
  margin: 0;
}

.calc-compare-text {
  font-size: 14px;
  line-height: 1.45;
  color: var(--c-text);
  margin: 0;
}

.calc-compare-arrow {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  width: 38px;
  height: 38px;
  border-radius: 19px;
  background: var(--c-orange);
}

.calc-compare-arrow img {
  width: 28px;
  height: 28px;
}

/* ---------- Trust banner ---------- */

.calc-trust {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 20px;
  padding: 26px 30px;
  border-radius: 22px;
  background: linear-gradient(132deg, rgba(255, 255, 255, 0.04) 0%, rgba(255, 255, 255, 0) 1.4%),
    var(--c-blue);
}

.calc-trust-item {
  display: flex;
  align-items: center;
  gap: 18px;
  flex: 1 1 0;
  min-width: 260px;
}

.calc-trust-divider {
  flex-shrink: 0;
  width: 1px;
  height: 52px;
  background: rgba(255, 255, 255, 0.16);
}

.calc-trust-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: var(--c-white);
}

.calc-trust-icon img {
  width: 28px;
  height: 28px;
}

.calc-trust-title {
  font-weight: 700;
  font-size: 18px;
  color: var(--c-white);
  margin: 0 0 5px;
}

.calc-trust-sub {
  font-size: 16px;
  color: var(--c-white);
  margin: 0;
}

@media (max-width: 1100px) {
  .calc-grid {
    flex-direction: column;
  }

  .calc-grid > .calc-main {
    order: 1;
    flex: 1 1 auto;
  }

  .calc-grid > .calc-sidebar {
    width: 100%;
    order: 2;
  }

  /* In-house billing step: the sidebar's direct flex-grid child is
     .ihb-sidebar-col (which wraps .calc-sidebar + .ihb-trust-box), not
     .calc-sidebar itself, so it needs its own order to actually swap. */
  .ihb-sidebar-col {
    width: 100%;
    order: 2;
  }

  /* .calc-grid is column-direction here, so the "flex: 1 1 0" used on
     desktop to stretch-fill the row's cross-axis height has nothing to
     grow into and collapses these to 0 height, clipping their content
     via overflow: hidden. Let them size from content instead. */
  .calc-card--fill,
  .calc3-body {
    flex: 1 1 auto;
    min-height: auto;
  }

  .calc-card-body {
    flex-wrap: wrap;
  }

  .calc-divider {
    display: none;
  }

  .calc-results {
    flex-basis: 100%;
    padding-top: 20px;
    border-top: 1px solid #eef0f7;
  }
}

@media (max-width: 768px) {
  .calc-section {
    padding: 40px 0;
  }

  .calc-title,
  .calc-sidebar-title {
    font-size: 26px;
  }

  .calc-card-header {
    flex-wrap: wrap;
  }

  .calc-field {
    flex-wrap: wrap;
    gap: 10px;
  }

  .calc-field-icon {
    width: 32px;
    height: 32px;
  }

  .calc-field label {
    width: auto;
    flex: 1 1 auto;
    font-size: 14px;
  }

  .calc-field input,
  .calc-field select,
  .calc-select-wrap,
  .calc-revenue-wrap {
    flex-basis: 100%;
  }

  .calc-expert {
    flex-direction: row;
    align-items: center;
    gap: 12px;
    padding: 12px;
  }

  .calc-expert-top {
    flex: 1 1 0;
    min-width: 0;
  }

  .calc-expert-icon {
    top: 0;
  }

  .calc-expert-title {
    font-size: 14px;
    margin: 0;
  }

  .calc-expert-sub {
    font-size: 11px;
  }

  .calc-expert-arrow {
    width: 24px;
    height: 24px;
  }

  .calc-expert-arrow img {
    width: 20px;
    height: 20px;
  }

  .calc-compare {
    flex-direction: column;
    gap: 12px;
    padding: 0;
    background: none;
    box-shadow: none;
  }

  .calc-compare-divider {
    display: none;
  }

  .calc-compare-tile {
    flex-direction: row;
    align-items: center;
    gap: 12px;
    padding: 16px;
    background: var(--c-white);
    border: 1px solid var(--c-light-grey);
    border-radius: 10px;
    box-shadow: 0 6px 10px 0 rgba(39, 55, 117, 0.03);
  }

  .calc-compare-icon {
    width: 44px;
    height: 44px;
    box-shadow: 0 2px 2px 0 rgba(0, 0, 0, 0.25);
    border: none;
  }

  .calc-compare-icon img {
    width: 20px;
    height: 20px;
  }

  .calc-compare-body {
    display: flex;
    flex-direction: column;
    gap: 2px;
    flex: 1 1 0;
    min-width: 0;
  }

  .calc-compare-title {
    font-size: 15px;
  }
  .calc-compare-text {
    display: none;
  }

  .calc-compare-arrow {
    width: 28px;
    height: 28px;
    border-radius: 14px;
  }

  .calc-compare-arrow img {
    width: 20px;
    height: 20px;
  }

  .calc-trust {
    flex-direction: column;
    align-items: stretch;
  }

  .calc-trust-divider {
    width: 100%;
    height: 1px;
  }
}

@media (max-width: 480px) {
  .calc-result-circle {
    width: 220px;
  }

  .calc-result-amount {
    font-size: 52px;
  }
}

/* =============================================================
   COST CALCULATOR — step 2 (compare other billing companies)
   Figma node 1576:18440
   ============================================================= */

.calc2-section {
  padding: 60px 0;
  background: var(--c-bg-blue);
}

.calc2-card-body {
  display: flex;
  flex-direction: column;
  gap: 20px;
  padding: 20px;
  width: 100%;
}

.calc2-divider-row {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 18px;
  width: 100%;
}

.calc2-divider-line {
  flex: 1 1 0;
  min-width: 0;
  height: 1px;
  background: linear-gradient(90deg, #273775 40%, #FC5D61 100%);
  -webkit-mask-image: repeating-linear-gradient(90deg, #000 0 6px, transparent 6px 12px);
  mask-image: repeating-linear-gradient(90deg, #000 0 6px, transparent 6px 12px);
}

.calc2-divider-label {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-shrink: 0;
}

.calc2-divider-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  width: 46px;
  height: 46px;
  border-radius: 50%;
  background: var(--c-white);
  box-shadow: 0 1px 2.5px 0 rgba(0, 0, 0, 0.25);
}

.calc2-divider-icon img {
  width: 26px;
  height: 26px;
}

.calc2-divider-title {
  font-family: var(--font-primary);
  font-weight: 700;
  font-size: 24px;
  letter-spacing: -0.26px;
  color: var(--c-blue);
  white-space: nowrap;
}

.calc2-fields-row {
  display: flex;
  gap: 24px;
  align-items: flex-start;
  width: 100%;
}

.calc2-field {
  display: flex;
  flex-direction: column;
  gap: 10px;
  flex: 1 1 0;
  min-width: 0;
}

.calc2-field label {
  font-weight: 600;
  font-size: 16px;
  color: var(--c-blue);
}

.calc2-field-input {
  display: flex;
  align-items: center;
  gap: 14px;
  width: 100%;
  background: var(--c-white);
  border: 1px solid var(--c-bg-blue);
  border-radius: 14px;
  padding: 17px 19px;
}

.calc2-field-input img {
  width: 22px;
  height: 22px;
  flex-shrink: 0;
}

.calc2-field-input input {
  flex: 1 1 0;
  min-width: 0;
  border: none;
  background: transparent;
  font-family: var(--font-primary);
  font-size: 15px;
  color: var(--c-text);
  outline: none;
}

.calc2-field-input input::placeholder {
  color: var(--c-placeholder);
}

.calc2-collections {
  display: flex;
  align-items: center;
  gap: 28px;
  width: 100%;
  padding: 22px 26px;
  border-radius: 18px;
  background: var(--c-bg-blue);
}

.calc2-collections-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: var(--c-white);
  box-shadow: 0 2px 2px 0 rgba(0, 0, 0, 0.25);
}

.calc2-collections-icon img {
  width: 28px;
  height: 28px;
}

.calc2-collections-text {
  flex-shrink: 0;
  width: 240px;
}

.calc2-collections-text p:first-child {
  font-weight: 600;
  font-size: 18px;
  color: var(--c-blue);
  margin: 0 0 5px;
}

.calc2-collections-text p:last-child {
  font-size: 16px;
  color: var(--c-text);
  margin: 0;
}

.calc2-amount-group {
  display: flex;
  align-items: stretch;
  flex: 1 1 0;
  min-width: 0;
  background: var(--c-white);
  border: 1px solid var(--c-light-grey);
  border-radius: 14px;
  overflow: hidden;
}

.calc2-amount-group--light {
  border-color: var(--c-bg-blue);
}

.calc2-amount-prefix {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  width: 58px;
  background: var(--c-bg-blue);
  font-weight: 700;
  font-size: 19px;
  color: var(--c-blue);
}

.calc2-amount-group input {
  flex: 1 1 0;
  min-width: 0;
  border: none;
  background: transparent;
  padding: 17px 18px;
  font-family: var(--font-primary);
  font-size: 16px;
  color: var(--c-text);
  outline: none;
}

.calc2-amount-group input::placeholder {
  color: var(--c-placeholder);
}

.calc2-options {
  display: flex;
  flex-direction: column;
  gap: 10px;
  width: 100%;
  padding: 20px;
  background: linear-gradient(var(--c-white), var(--c-white)) padding-box, linear-gradient(90deg, #273775 40%, #FC5D61 100%) border-box;
  border: 1px solid transparent;
  border-radius: 20px;
}

.calc2-option-row {
  display: flex;
  align-items: center;
  gap: 14px;
  width: 100%;
  padding: 23px 27px;
  background: var(--c-white);
  border: 1px solid var(--c-light-grey);
  border-radius: 10px;
}

.calc2-option-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: var(--c-white);
  box-shadow: 0 2px 2px 0 rgba(0, 0, 0, 0.25);
}

.calc2-option-icon img {
  width: 28px;
  height: 28px;
}

.calc2-option-text {
  flex-shrink: 0;
  width: 240px;
}

.calc2-option-text p:first-child {
  font-weight: 700;
  font-size: 18px;
  color: var(--c-blue);
  margin: 0 0 5px;
}

.calc2-option-text p:last-child {
  font-size: 16px;
  color: var(--c-text);
  margin: 0;
}

.calc2-or-divider {
  display: flex;
  align-items: center;
  gap: 16px;
  width: 100%;
  padding: 10px 0;
}

.calc2-or-badge {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: var(--c-blue);
  color: var(--c-white);
  font-weight: 700;
  font-size: 14px;
  letter-spacing: 0.84px;
}

.calc2-actions {
  display: flex;
  align-items: center;
  gap: 20px;
  width: 100%;
}

.calc2-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  flex: 1 1 0;
  min-width: 0;
  height: 50px;
  border-radius: 36px;
  font-family: var(--font-primary);
  font-weight: 600;
  font-size: 16px;
  cursor: pointer;
  transition: filter 0.2s ease, transform 0.15s ease;
}

.calc2-btn:hover {
  filter: brightness(0.96);
  transform: translateY(-1px);
}

.calc2-btn img {
  width: 22px;
  height: 22px;
}

.calc2-btn--secondary {
  background: var(--c-white);
  border: 1px solid var(--c-orange);
  color: var(--c-orange);
}

.calc2-btn--primary {
  background: var(--c-blue);
  border: none;
  color: var(--c-white);
}

@media (max-width: 1100px) {
  .calc2-fields-row {
    flex-wrap: wrap;
  }

  .calc2-field {
    flex-basis: 100%;
  }
}

@media (max-width: 768px) {
  .calc2-section {
    padding: 40px 0;
  }

  .calc2-divider-title {
    font-size: 18px;
    white-space: normal;
  }

  /* .calc2-divider-label refuses to shrink (flex-shrink: 0) and has no
     min-width: 0, so on longer titles ("Your Billing Company's Cost")
     it overflows the row instead of wrapping, and gets silently clipped
     by .calc-card's overflow: hidden. */
  .calc2-divider-label {
    flex-shrink: 1;
    min-width: 0;
  }

  .calc2-collections,
  .calc2-option-row {
    flex-wrap: wrap;
  }

  .calc2-collections-text,
  .calc2-option-text {
    width: 100%;
  }

  .calc2-amount-group {
    flex-basis: 100%;
    border-radius: 8px;
  }
  .calc2-option-row {
    padding: 16px;
    padding: 23px 10px;
  }

  .calc2-actions {
    flex-direction: column;
  }

  /* .calc2-btn's "flex: 1 1 0" is meant to split the row evenly on desktop;
     once .calc2-actions stacks into a column (this same breakpoint) it
     fights the buttons' own height: 50px and shrinks them to content size.
     (A pre-existing fix for this already exists at max-width: 640px, but
     that leaves a 641-768px gap where the same collapse happens.) */
  .calc2-btn {
    flex: 0 0 auto;
    width: 100%;
  }

  .calc2-btn--primary {
    order: 1;
  }

  .calc2-btn--secondary {
    order: 2;
  }
}

/* =============================================================
   COST CALCULATOR — step 3 (results)
   Figma node 1598:19062
   ============================================================= */

.calc3-section {
  padding: 60px 0;
  background: var(--c-bg-white);
}

.calc3-body {
  display: flex;
  flex-direction: column;
  gap: 20px;
  /* flex: 1 1 0; */
  min-height: 0;
  width: 100%;
  padding: 20px;
}

.calc3-row {
  display: flex;
  align-items: center;
  gap: 28px;
  /* flex: 1 1 0; */
  min-height: 0;
  width: 100%;
  padding: 20px 31px;
  background: var(--c-white);
  border: 1px solid var(--c-light-grey);
  border-radius: 18px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.11);
}

.calc3-row--highlight {
  background: var(--c-bg-blue);
}

.calc3-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  width: 90px;
  height: 90px;
  border-radius: 50%;
  background: linear-gradient(90deg, #273775 29.8%, #fc5d61 100%);
}

.calc3-icon--bordered {
  border: 1px solid #d6daea;
}

.calc3-icon img {
  width: 40px;
  height: 40px;
}

.calc3-text {
  flex-shrink: 1;
  width: 373px;
  max-width: 100%;
}

.calc3-text p:first-child {
  font-weight: 700;
  font-size: 22px;
  color: var(--c-blue);
  margin: 0 0 5px;
}

.calc3-text p:last-child {
  font-size: 18px;
  line-height: 1.39;
  color: var(--c-text);
  margin: 0;
}

.calc3-divider {
  flex-shrink: 0;
  width: 1.5px;
  height: 56px;
  background: var(--c-light-grey);
}

.calc3-row--highlight .calc3-divider {
  background: #d6daea;
}

.calc3-amount {
  display: flex;
  align-items: baseline;
  justify-content: flex-end;
  gap: 0px;
  flex: 1 1 0;
  min-width: 0;
}

.calc3-amount-prefix {
  font-weight: 700;
  font-size: 19px;
  color: var(--c-blue);
}

input:focus {
  box-shadow: none;
}

.Contact-Us-to-Get-Started {
  color: white !important;
}
.go-back{
  color: #fc5d61 !important;
}

.calc3-amount-value {
  font-family: var(--font-primary);
  font-weight: 700;
  font-size: 19px;
  letter-spacing: -0.68px;
  color: var(--c-blue);
}

.calc3-row--charges .calc3-amount-prefix,
.calc3-row--charges .calc3-amount-value {
  color: var(--c-blue);
}

.calc3-row--company .calc3-amount-prefix,
.calc3-row--company .calc3-amount-value {
  color: var(--c-orange);
}

.calc3-row--highlight .calc3-amount-value {
  font-weight: 800;
  font-size: 19px;
  letter-spacing: -1.2px;
}

.calc3-actions {
  display: flex;
  align-items: center;
  gap: 20px;
  width: 100%;
}

.calc3-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  flex: 1 1 0;
  min-width: 0;
  height: 50px;
  border-radius: 16px;
  font-family: var(--font-primary);
  font-weight: 500;
  font-size: 16px;
  cursor: pointer;
  transition: filter 0.2s ease, transform 0.15s ease;
}

.calc3-btn:hover {
  filter: brightness(0.96);
  transform: translateY(-1px);
}

.calc3-btn img,
.calc3-btn svg {
  width: 20px;
  height: 20px;
}

.calc3-btn--secondary {
  background: var(--c-white);
  border: 1px solid var(--c-orange);
  color: var(--c-orange);
}

.calc3-btn--secondary img {
  width: 22px;
  height: 22px;
}

.calc3-btn--primary {
  background: var(--c-blue);
  border: none;
  color: var(--c-white);
}

@media (max-width: 1100px) {
  /* .calc-grid switches to column direction here, so the "flex: 1 1 0" /
     min-height: 0 used to stretch-fill the row's cross-axis height on
     desktop has nothing to grow into and collapses this to 0 height. */
  .calc3-body {
    flex: 1 1 auto;
    min-height: auto;
  }
}

@media (max-width: 768px) {
  .calc3-section {
    padding: 40px 0;
  }

  .calc3-row {
    flex-wrap: wrap;
  }

  .calc3-text {
    width: 100%;
  }

  .calc3-divider {
    display: none;
  }

  .calc3-amount {
    width: 100%;
    justify-content: flex-start;
  }

  .calc3-actions {
    flex-direction: column;
  }

  /* .calc3-btn's "flex: 1 1 0" is meant to split the row evenly on desktop;
     once .calc3-actions stacks into a column it fights the buttons' own
     height: 50px and shrinks them to their content size instead. */
  .calc3-btn {
    flex: 0 0 auto;
    width: 100%;
    font-size: 14px;
  }

  .calc2-amount-group input {
    padding: 10px 6px;
    font-size: 8px;
  }
  .calc2-amount-prefix {
    width: 25px;
    font-size: 15px;
  }

  .text-nowrap {
    font-size: 12px;
  }
}

/* =============================================================
   WHO WE SERVE — Figma node 1916:22342
   ============================================================= */

.calc4-section {
  position: relative;
  overflow: hidden;
  padding: 56px 0;
  background: linear-gradient(152deg, #f7f9ff 0%, #eef2fc 100%);
}

.calc4-decor {
  position: absolute;
  z-index: 0;
  pointer-events: none;
}

.calc4-decor--plus-badge {
  top: 40px;
  right: 44px;
  width: 120px;
  height: 90px;
}

.calc4-decor--plus-icon {
  top: 59px;
  right: 100px;
  width: 90px;
  height: 100px;
}

.calc4-decor--pulse {
  top: 150px;
  left: 53px;
  width: 230px;
  height: 60px;
}

.calc4-decor--blob {
  bottom: -20px;
  left: -60px;
  width: 220px;
  height: 220px;
}

.calc4-inner {
  position: relative;
  z-index: 1;
}

.calc4-head {
  margin-bottom: 40px;
}

.calc4-title {
  font-family: var(--font-primary);
  font-weight: 700;
  font-size: 32px;
  letter-spacing: -0.5px;
  color: var(--c-blue);
  text-align: center;
  margin: 0;
}

.calc4-featured-row {
  display: flex;
  align-items: stretch;
  gap: 20px;
  width: 100%;
  margin-bottom: 20px;
}

.calc4-featured-card {
  display: flex;
  align-items: center;
  gap: 13px;
  flex: 1 1 0;
  min-width: 0;
  height: 302px;
  padding-right: 24px;
  background: var(--c-white);
  border-radius: 24px;
  box-shadow: 0 0 9px 0 rgba(39, 55, 117, 0.13);
  overflow: hidden;
}

.calc4-scene-img {
  flex-shrink: 0;
  width: 300px;
  height: 250px;
}

.calc4-feature-text {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 10px;
  min-width: 0;
}

.calc4-feature-badge {
  width: 78px;
  height: 78px;
}

.calc4-feature-title {
  font-family: var(--font-primary);
  font-weight: 700;
  font-size: 27px;
  line-height: 1.25;
  color: var(--c-blue);
  margin: 0;
}

.calc4-feature-rule {
  display: block;
  width: 46px;
  height: 3px;
  border-radius: 2px;
  background: var(--c-orange);
}

.calc4-featured-card--blue .calc4-feature-rule {
  background: var(--c-blue);
}

.calc4-feature-desc {
  max-width: 190px;
  font-size: 14px;
  line-height: 1.7;
  color: var(--c-text);
  margin: 0;
}

.calc4-small-row {
  display: flex;
  align-items: stretch;
  gap: 20px;
  width: 100%;
  margin-bottom: 40px;
}

.calc4-small-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 14px;
  flex: 1 1 0;
  min-width: 0;
  padding: 24px 12px;
  background: var(--c-white);
  border-radius: 20px;
  box-shadow: 0 0 4.5px 0 rgba(39, 55, 117, 0.13);
  text-align: center;
}

.calc4-small-icon {
  width: 108px;
  height: 108px;
  flex-shrink: 0;
}

.calc4-small-title {
  font-family: var(--font-primary);
  font-weight: 700;
  font-size: 14px;
  line-height: 1.4;
  color: var(--c-blue);
  margin: 0;
}

.calc4-small-rule {
  display: block;
  width: 28px;
  height: 3px;
  border-radius: 2px;
  background: var(--c-orange);
}

.calc4-small-rule--blue {
  background: var(--c-blue);
}

.calc4-pill {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 24px;
  width: fit-content;
  max-width: 100%;
  margin: 0 auto;
  padding: 12px 32px;
  background: var(--c-white);
  background: linear-gradient(var(--c-white), var(--c-white)) padding-box, linear-gradient(90deg, #273775 40%, #FC5D61 100%) border-box;
  border: 1.5px solid transparent;
  border-radius: 999px;
  box-shadow: 0 12px 14px 0 rgba(39, 55, 117, 0.1);
}

.calc4-pill-item {
  display: flex;
  align-items: center;
  gap: 10px;
  white-space: nowrap;
}

.calc4-pill-item span {
  font-weight: 600;
  font-size: 14px;
  color: var(--c-blue);
}

.calc4-pill-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  width: 32px;
  height: 32px;
  border-radius: 16px;
  border: 1px solid var(--c-orange);
}

.calc4-pill-icon--blue {
  border-color: var(--c-blue);
}

.calc4-pill-icon img {
  width: 15px;
  height: 15px;
}

.calc4-pill-divider {
  flex-shrink: 0;
  width: 1px;
  height: 26px;
  background: rgba(39, 55, 117, 0.15);
}

@media (max-width: 412px) {
  .appointment-btn {
    font-size: 12px;
  }
}
@media (max-width: 1100px) {
  .calc4-featured-card {
    height: auto;
    padding: 20px;
    flex-wrap: wrap;
  }

  .calc4-scene-img {
    width: 100%;
    height: auto;
  }

  .calc4-decor--blob {
    display: none;
  }
}

@media (max-width: 900px) {
  .calc4-small-row {
    flex-wrap: wrap;
  }

  .calc4-small-card {
    flex: 1 1 calc(33.333% - 14px);
    min-width: 160px;
  }
}

@media (max-width: 768px) {
  .calc4-section {
    padding: 40px 0;
  }

  .calc4-title {
    font-size: 26px;
  }

  .calc4-featured-row {
    flex-direction: column;
  }

  .calc4-featured-card {
    flex: 0 0 auto;
    flex-wrap: nowrap;
    align-items: center;
    height: auto;
    padding: 12px 16px 12px 0;
  }

  .calc4-scene-img {
    flex-shrink: 0;
    width: 45%;
    max-width: 172px;
    height: auto;
  }

  .calc4-feature-title {
    font-size: 20px;
  }

  .calc4-feature-desc {
    max-width: none;
  }

  .calc4-decor--plus-badge,
  .calc4-decor--plus-icon,
  .calc4-decor--pulse {
    display: none;
  }
}

@media (max-width: 640px) {
  .calc4-small-card {
    flex: 1 1 calc(50% - 10px);
  }

  .calc4-pill {
    flex-wrap: wrap;
    align-items: flex-start;
    row-gap: 10px;
    column-gap: 19px;
    padding: 20px;
    border-radius: 10px;
  }

  .calc4-pill-item {
    white-space: normal;
  }

  .calc4-pill-item--grow {
    flex: 1 1 0;
    min-width: 0;
  }

  .calc4-pill-item--full {
    flex: 1 0 100%;
    justify-content: center;
  }

  .calc4-pill-item span {
    font-size: 12px;
  }

  .calc4-pill-divider {
    display: none;
  }
}

@media (max-width: 480px) {
  .calc4-pill {
    flex-direction: column;
    align-items: stretch;
    gap: 12px;
  }

  .calc4-pill-item,
  .calc4-pill-item--grow,
  .calc4-pill-item--full {
    flex: 1 1 auto;
    width: 100%;
    justify-content: flex-start;
  }
}

/* =============================================================
   WHY CHOOSE US — Figma node 1916:22626
   ============================================================= */

.calc5-section {
  position: relative;
  overflow: hidden;
  padding: 56px 0;
  background: var(--c-white);
}

.calc5-decor {
  position: absolute;
  z-index: 0;
  pointer-events: none;
}

.calc5-decor--pulse {
  top: 70px;
  left: 53px;
  width: 230px;
  height: 60px;
}

.calc5-decor--plus {
  top: 40px;
  right: 100px;
  width: 90px;
  height: 100px;
}

.calc5-inner {
  position: relative;
  z-index: 1;
}

.calc5-head {
  margin-bottom: 38px;
}

.calc5-title {
  font-family: var(--font-primary);
  font-weight: 700;
  font-size: 32px;
  letter-spacing: -0.5px;
  color: var(--c-blue);
  text-align: center;
  margin: 0;
}

.calc5-head .section-sub {
  max-width: 690px;
}

.calc5-grid {
  display: flex;
  align-items: stretch;
  gap: 24px;
  width: 100%;
  margin-bottom: 30px;
}

/* ---------- Left navy panel ---------- */

.calc5-panel {
  position: relative;
  flex: 1 1 0;
  min-width: 320px;
  display: flex;
  flex-direction: column;
  gap: 26px;
  padding: 36px;
  border-radius: 24px;
  background: linear-gradient(155deg, #33459c 0%, #273775 45%, #1d2a5c 100%);
}

.calc5-panel-texture {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
}

.calc5-panel-chart {
  position: absolute;
  z-index: 1;
  top: 24px;
  right: 0;
  width: 330px;
  height: 190px;
  max-width: 60%;
}

.calc5-panel-badge {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 16px;
  max-width: 300px;
}

.calc5-badge-circle {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background: var(--c-white);
}

.calc5-badge-circle img:first-child {
  width: 40px;
  height: 40px;
}

.calc5-badge-ring {
  position: absolute;
  top: -8px;
  left: -8px;
  width: 80px;
  height: 80px;
}

.calc5-panel-title {
  font-family: var(--font-primary);
  font-weight: 700;
  font-size: 26px;
  line-height: 1.32;
  color: var(--c-white);
  margin: 0;
}

.calc5-panel-rule {
  display: block;
  width: 44px;
  height: 3px;
  border-radius: 2px;
  background: var(--c-orange);
}

.calc5-stats {
  position: relative;
  z-index: 2;
  display: flex;
  align-items: stretch;
  padding: 22px 10px;
  background: rgba(255, 255, 255, 0.07);
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 18px;
}

.calc5-stat {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  flex: 1 1 0;
  min-width: 0;
  padding: 0 8px;
  border-right: 1px dashed rgba(255, 255, 255, 0.2);
}

.calc5-stat:last-child {
  border-right: none;
}

.calc5-stat-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 53px;
  height: 53px;
  padding: 9px;
  border-radius: 50%;
  background: var(--c-white);
}

.calc5-stat-icon img {
  width: 35px;
  height: 35px;
}

.calc5-stat-value {
  font-family: var(--font-primary);
  font-weight: 800;
  font-size: 34px;
  color: var(--c-white);
  margin: 0;
  line-height: 1;
}

.calc5-stat-value .accent {
  font-size: 19px;
}

.calc5-stat-label {
  font-size: 11.5px;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.75);
  text-align: center;
  margin: 0;
}

.calc5-footnote {
  position: relative;
  z-index: 2;
  display: flex;
  align-items: center;
  gap: 14px;
}

.calc5-footnote img {
  flex-shrink: 0;
  width: 40px;
  height: 46px;
}

.calc5-footnote p {
  font-size: 12.5px;
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.78);
  margin: 0;
}

/* ---------- Right 2x2 cards ---------- */

.calc5-cards {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  flex: 1 1 0;
  min-width: 320px;
}

.calc5-card {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 12px;
  padding: 22px 24px;
  background: var(--c-white);
  background: linear-gradient(var(--c-white), var(--c-white)) padding-box, linear-gradient(90deg, #273775 40%, #FC5D61 100%) border-box;
  border: 2px solid transparent;
  border-radius: 20px;
}

.calc5-card-header {
  display: flex;
  align-items: center;
  gap: 14px;
}

.calc5-card-icon {
  position: relative;
  flex-shrink: 0;
  width: 56px;
  height: 56px;
}

.calc5-card-ring {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.calc5-card-glyph {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 28px;
  height: 28px;
}

.calc5-card-title {
  font-family: var(--font-primary);
  font-weight: 700;
  font-size: 17px;
  line-height: 1.35;
  color: var(--c-blue);
  margin: 0;
}

.calc5-card-rule {
  display: block;
  width: 32px;
  height: 2.5px;
  border-radius: 2px;
  background: var(--c-blue);
}

.calc5-card-desc {
  font-size: 16px;
  line-height: 1.33;
  color: var(--c-text);
  margin: 0;
}

/* ---------- Bottom pill ---------- */

.calc5-pill {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 24px;
  width: fit-content;
  max-width: 100%;
  margin: 0 auto;
  padding: 12px 32px;
  background: var(--c-white);
  background: linear-gradient(var(--c-white), var(--c-white)) padding-box, linear-gradient(90deg, #273775 40%, #FC5D61 100%) border-box;
  border: 1.5px solid transparent;
  border-radius: 999px;
}

.calc5-pill-item {
  display: flex;
  align-items: center;
  gap: 12px;
  white-space: nowrap;
}

.calc5-pill-item span {
  font-weight: 600;
  font-size: 13.5px;
  color: var(--c-blue);
}

.calc5-pill-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  width: 34px;
  height: 34px;
  border-radius: 17px;
  background: rgba(39, 55, 117, 0.08);
  border: 1px solid var(--c-blue);
}

.calc5-pill-icon--orange {
  background: rgba(252, 93, 97, 0.1);
  border-color: var(--c-orange);
}

.calc5-pill-divider {
  flex-shrink: 0;
  width: 1px;
  height: 26px;
  background: rgba(39, 55, 117, 0.15);
}

@media (max-width: 1100px) {
  .calc5-grid {
    flex-direction: column;
  }

  .calc5-panel,
  .calc5-cards {
    width: 100%;
    min-width: 0;
  }
}

@media (max-width: 768px) {
  .calc5-section {
    padding: 40px 0;
  }

  .calc5-title {
    font-size: 26px;
  }

  .calc5-cards {
    grid-template-columns: 1fr;
  }

  .calc5-stats {
    padding: 16px 7px;
    border-radius: 13px;
  }

  .calc5-stat {
    gap: 6px;
    padding: 0 6px;
  }

  .calc5-stat-icon {
    width: 38px;
    height: 38px;
    padding: 6px;
  }

  .calc5-stat-icon img {
    width: 25px;
    height: 25px;
  }

  .calc5-stat-value {
    font-size: 24px;
  }

  .calc5-stat-value .accent {
    font-size: 14px;
  }

  .calc5-stat-label {
    font-size: 10px;
  }

  .calc5-panel-chart {
    display: none;
  }

  .calc5-decor--pulse,
  .calc5-decor--plus {
    display: none;
  }
}

@media (max-width: 640px) {
  .calc5-pill {
    flex-direction: column;
    align-items: flex-start;
    width: 100%;
    gap: 20px;
    padding: 17px 39px;
    border-radius: 20px;
  }

  .calc5-pill-item {
    white-space: normal;
  }

  .calc5-pill-divider {
    display: none;
  }
}

/* =============================================================
   CLIENT SUCCESS STORIES — Figma node 1916:22785
   ============================================================= */

.calc6-section {
  padding: 40px 0;
}

.calc6-title {
  font-family: var(--font-primary);
  font-weight: 700;
  font-size: 32px;
  color: var(--c-blue);
  text-align: center;
  margin: 0 0 20px;
}

.calc6-row {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 30px;
}

.calc6-nav {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: var(--c-blue);
  border: none;
  cursor: pointer;
  transition: filter 0.2s ease;
}

.calc6-nav img {
  width: 12.25px;
  height: 14px;
}

.calc6-nav:hover {
  filter: brightness(1.15);
}

.calc6-nav:disabled {
  background: var(--c-placeholder);
  opacity: 0.2;
  cursor: default;
}

.calc6-track {
  display: flex;
  gap: 30px;
  flex: 1 1 0;
  overflow-x: auto;
  overflow-y: hidden;
  scroll-snap-type: x mandatory;
  scrollbar-width: none;
  min-width: 0;
}

.calc6-track::-webkit-scrollbar {
  display: none;
}

.calc6-card {
  position: relative;
  flex: 0 0 calc((100% - 60px) / 3);
  min-width: 0;
  max-width: 363.5px;
  min-height: 284px;
  scroll-snap-align: start;
  padding: 20px 18px 0;
}

.calc6-card-border {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
}

.calc6-card-rating {
  position: relative;
  z-index: 1;
  display: block;
  width: 188px;
  height: 28px;
  margin-bottom: 20px;
}

.calc6-card-quote {
  position: relative;
  z-index: 1;
  font-family: var(--font-primary);
  font-weight: 500;
  font-size: 16px;
  line-height: 1.5;
  color: var(--c-text);
  margin: 0;
}

.calc6-card-mark {
  position: absolute;
  z-index: 1;
  top: 20px;
  right: 15px;
  width: 39px;
  height: 28px;
  transform: rotate(180deg) scaleY(-1);
  opacity: 0.9;
}

.calc6-card-footer {
  position: absolute;
  z-index: 1;
  left: 18px;
  right: 100px;
  top: 216px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 3px;
  text-align: left;
}

.calc6-card-name {
  max-width: 100%;
  font-weight: 700;
  font-size: 18px;
  color: var(--c-text);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.calc6-card-org {
  max-width: 100%;
  font-size: 14px;
  color: var(--c-placeholder);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.calc6-card-photo {
  position: absolute;
  z-index: 1;
  right: 5px;
  bottom: -4px;
  width: 93px;
  height: 93px;
  border-radius: 50%;
  overflow: hidden;
  background: var(--c-white);
  border: 3px solid var(--c-white);
}

.calc6-card-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

@media (max-width: 900px) {
  .calc6-card {
    flex-basis: calc((100% - 30px) / 2);
  }
}

@media (max-width: 560px) {
  .calc6-row {
    gap: 10px;
  }

  .calc6-nav {
    display: none;
  }

  .calc6-card {
    flex-basis: 100%;
  }

  .calc6-card-name,
  .calc6-card-org {
    font-size: 0.9em;
  }
}

/* =============================================================
   IN-HOUSE BILLING COST CALCULATOR — Figma node 1576:17833
   ============================================================= */

.ihb-sidebar-col {
  display: flex;
  flex-direction: column;
  gap: 30px;
  align-self: stretch;
  width: 380px;
  flex-shrink: 0;
}

.ihb-sidebar-col .calc-sidebar {
  width: 100%;
}

.ihb-trust-box {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
  flex: 1 1 0;
  min-height: 0;
  width: 100%;
  padding: 20px;
  background: var(--c-white);
  border: 1px dashed var(--c-blue);
  border-radius: 16px;
  box-shadow: 0 3.738px 6.23px 0 rgba(39, 55, 117, 0.07);
}

.ihb-trust-title {
  font-family: var(--font-primary);
  font-weight: 700;
  font-size: 24px;
  letter-spacing: -0.32px;
  color: var(--c-blue);
  text-align: center;
  margin: 0;
}

.ihb-trust-rule {
  display: block;
  width: 37px;
  height: 2px;
  border-radius: 1px;
  background: var(--c-orange);
  flex-shrink: 0;
}

.ihb-stats-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  width: 100%;
}

.ihb-stat {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 10px;
  border-bottom: 1px solid var(--c-light-grey);
}

.ihb-stat:nth-child(odd) {
  border-right: 1px solid var(--c-light-grey);
}

.ihb-stats-grid .ihb-stat:nth-last-child(-n+2) {
  border-bottom: none;
}

.ihb-stat-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  border: 0.365px solid var(--c-light-grey);
  box-shadow: 0 2px 4px 0 rgba(0, 0, 0, 0.25);
}

.ihb-stat-icon img {
  width: 30px;
  height: 30px;
}

.ihb-stat-value {
  font-family: var(--font-primary);
  font-weight: 800;
  font-size: 24px;
  letter-spacing: -0.45px;
  color: var(--c-orange);
  margin: 0;
  line-height: 1.2;
}

.ihb-stat-label {
  font-size: 10px;
  font-weight: 500;
  color: var(--c-blue);
  margin: 0;
}

/* ---------- Card body ---------- */

.ihb-card-body {
  display: flex;
  flex-direction: column;
  gap: 20px;
  width: 100%;
  padding: 20px;
}

.ihb-provider-section {
  display: flex;
  flex-direction: column;
  gap: 20px;
  width: 100%;
  padding-bottom: 21px;
  border-bottom: 1px solid var(--c-light-grey);
  box-shadow: 0 1px 1px 0 rgba(0, 0, 0, 0.05);
}

.ihb-provider-heading {
  display: flex;
  align-items: center;
  gap: 12px;
}

.ihb-provider-heading img {
  width: 46px;
  height: 46px;
}

.ihb-provider-heading h3 {
  font-family: var(--font-primary);
  font-weight: 700;
  font-size: 20px;
  color: var(--c-orange);
  margin: 0;
}

.ihb-provider-fields {
  display: flex;
  gap: 24px;
  align-items: flex-start;
  justify-content: center;
  width: 100%;
}

.ihb-field {
  display: flex;
  flex-direction: column;
  gap: 8px;
  flex: 1 1 0;
  min-width: 0;
}

.ihb-field label {
  font-weight: 700;
  font-size: 16px;
  color: var(--c-blue);
}

.ihb-field-input {
  position: relative;
  width: 100%;
}

.ihb-field-input img {
  position: absolute;
  left: 16px;
  top: 50%;
  transform: translateY(-50%);
  width: 16px;
  height: 16px;
}

.ihb-field-input input {
  width: 100%;
  height: 46px;
  background: var(--c-white);
  border: 1px solid var(--c-light-grey);
  border-radius: 8px;
  padding: 12px 17px 13px 45px;
  font-family: var(--font-primary);
  font-size: 16px;
  color: var(--c-text);
  outline: none;
  transition: border-color 0.2s ease;
}

.ihb-field-input input::placeholder {
  color: var(--c-placeholder);
}

.ihb-field-input input:focus {
  border-color: var(--c-blue);
}

/* ---------- Cost calculator rows ---------- */

.ihb-rows {
  display: flex;
  flex-direction: column;
  gap: 16px;
  width: 100%;
}

.ihb-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  width: 100%;
  padding: 0 16px 17px;
  border-bottom: 1px solid var(--c-light-grey);
}

.ihb-row-info {
  display: flex;
  align-items: center;
  gap: 20px;
  flex: 1 1 0;
  min-width: 0;
}

.ihb-row-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: var(--c-white);
  box-shadow: 0 1px 2px 0 rgba(0, 0, 0, 0.25);
}

.ihb-row-icon img {
  max-width: 30px;
  max-height: 24px;
}

.ihb-row-icon--dollar {
  font-family: var(--font-primary);
  font-weight: 800;
  font-size: 22px;
  color: var(--c-orange);
}

.ihb-row-text {
  display: flex;
  flex-direction: column;
  gap: 5px;
  min-width: 0;
}

.ihb-row-text h4 {
  font-family: var(--font-primary);
  font-weight: 700;
  font-size: 18px;
  color: var(--c-blue);
  margin: 0;
}

.ihb-row-text p {
  font-size: 16px;
  line-height: 1.39;
  color: var(--c-text);
  margin: 0;
}

.ihb-row-text .ihb-row-note {
  font-style: italic;
  font-size: 12px;
  color: var(--c-text);
}

.ihb-row-amount {
  position: relative;
  flex-shrink: 0;
  width: 256px;
}

.ihb-row-amount span {
  position: absolute;
  left: 16px;
  top: 50%;
  transform: translateY(-50%);
  font-weight: 500;
  font-size: 16px;
  color: var(--c-blue);
  pointer-events: none;
}

.ihb-row-amount input {
  width: 100%;
  height: 48px;
  background: var(--c-bg-blue);
  border: none;
  border-radius: 8px;
  padding: 11px 12px 12px 30px;
  font-family: var(--font-primary);
  font-weight: 500;
  font-size: 16px;
  text-align: center;
  color: var(--c-text);
  outline: none;
}

.ihb-row-amount input::placeholder {
  color: var(--c-placeholder);
}

/* ---------- Action buttons ---------- */

.ihb-actions {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  width: 100%;
}

.ihb-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  flex: 1 1 0;
  min-width: 0;
  height: 50px;
  border-radius: 72px;
  font-family: var(--font-primary);
  font-weight: 500;
  font-size: 16px;
  cursor: pointer;
  transition: filter 0.2s ease, transform 0.15s ease;
}

.ihb-btn:hover {
  filter: brightness(0.96);
  transform: translateY(-1px);
}

.ihb-btn img {
  width: 15px;
  height: 13.5px;
}

.ihb-btn img.ihb-btn-compare-icon {
  width: 13.5px;
  height: 18px;
}

.ihb-btn--secondary {
  background: var(--c-white);
  border: 2px solid var(--c-orange);
  color: var(--c-orange);
}

.ihb-btn--primary {
  background: var(--c-blue);
  border: none;
  color: var(--c-white);
}

@media (max-width: 1100px) {
  .ihb-sidebar-col {
    width: 100%;
  }

  .ihb-provider-fields {
    flex-wrap: wrap;
  }

  .ihb-field {
    flex-basis: 100%;
  }

  .ihb-row {
    flex-wrap: wrap;
  }

  .ihb-row-amount {
    width: 100%;
  }
}

@media (max-width: 640px) {
  .ihb-stat {
    flex-direction: column;
    justify-content: center;
    text-align: center;
  }

  .ihb-actions {
    flex-direction: column;
  }

  .ihb-btn {
    flex: 0 0 auto;
    width: 100%;
    height: 50px;
    font-size: 14px;
  }

  .ihb-btn--primary {
    order: 1;
  }

  .ihb-btn--secondary {
    order: 2;
  }

  .calc2-btn{
    flex: 0 0 auto;
    width: 100%;
    height: 50px;
    font-size: 14px;
  }

  .calc2-btn--primary {
        order: 1;
  }

   .calc2-btn--secondary {
        order: 2;
  }

  .ihb-trust-box {
    flex: 0 0 auto;
  }
}

@media screen and (max-width: 430px) and (max-height: 992px){
  .calc6-card-org {
    font-size: 13px;
  }
}

@media screen and (min-width: 1024px) and (max-width: 1280px) and (max-height: 720px) {
    .calc6-card-photo {
        right: -5px;
    }
    .calc6-card-org {
        font-size: 12px;
    }

    .calc-revenue-wrap input{
      font-size: 13px;
    }

    .calc2-field-input input {
      font-size: 14px;
    }

    .calc2-amount-group input {
      padding: 17px 6px;
      font-size: 12px;
    }
}

@media screen and (min-width: 1024px) and (max-width: 1280px) and (max-height: 800px) {
    .calc6-card-photo {
        right: -5px;
    }
    .calc6-card-org {
        font-size: 12px;
    }

    .calc-field input, .calc-field select {
      font-size: 13px;
    }

    .calc-tooltip {
      display: none;
    }
}

@media screen and (max-width: 360px) and (max-height: 740px) {
    .calc-submit {
      font-size: 16px;
    }
    .calc-trust-item {
      min-width: auto;
    }

    .calc6-card-border {
      position: absolute;
      inset: 0;
      width: auto;
      height: auto;
      z-index: 0;
    }
    .calc6-card-quote {
      font-size: 12px !important;
    }

    .calc6-card-footer {
        top: 160px;
    }

    .calc6-card-org {
      font-size: 10px;
    }

    .calc6-card {
      min-height: 230px;
    }

    .calc6-card-photo {
      position: absolute;
      z-index: 1;
      top: 147px;
      right: -2px;
      bottom: -4px;
      width: 80px;
      height: 80px;
      border-radius: 50%;
      overflow: hidden;
      background: var(--c-white);
      border: 3px solid var(--c-white);
    }
}

@media screen and (max-width: 360px) and (max-height: 780px) {
    .calc-submit {
      font-size: 16px;
    }
    .calc-trust-item {
      min-width: auto;
    }

    .calc6-card-border {
      position: absolute;
      inset: 0;
      width: auto;
      height: auto;
      z-index: 0;
    }
    .calc6-card-quote {
      font-size: 12px !important;
    }

    .calc6-card-footer {
        top: 160px;
    }

    .calc6-card-org {
      font-size: 10px;
    }

    .calc6-card {
      min-height: 230px;
    }

    .calc6-card-photo {
      position: absolute;
      z-index: 1;
      top: 147px;
      right: -2px;
      bottom: -4px;
      width: 80px;
      height: 80px;
      border-radius: 50%;
      overflow: hidden;
      background: var(--c-white);
      border: 3px solid var(--c-white);
    }
}

@media screen and (max-width: 360px) and (max-height: 800px) {
    .calc-submit {
      font-size: 16px;
    }
    .calc-trust-item {
      min-width: auto;
    }

    .calc6-card-border {
      position: absolute;
      inset: 0;
      width: auto;
      height: auto;
      z-index: 0;
    }
    .calc6-card-quote {
      font-size: 12px !important;
    }

    .calc6-card-footer {
        top: 160px;
    }

    .calc6-card-org {
      font-size: 10px;
    }

    .calc6-card {
      min-height: 230px;
    }

    .calc6-card-photo {
      position: absolute;
      z-index: 1;
      top: 147px;
      right: -2px;
      bottom: -4px;
      width: 80px;
      height: 80px;
      border-radius: 50%;
      overflow: hidden;
      background: var(--c-white);
      border: 3px solid var(--c-white);
    }
}

@media screen and (max-width: 375px) and (max-height: 667px) {
    .calc-submit {
      font-size: 16px;
    }
    .calc-trust-item {
      min-width: auto;
    }

    .calc6-card-border {
      position: absolute;
      inset: 0;
      width: auto;
      height: auto;
      z-index: 0;
    }
    .calc6-card-quote {
      font-size: 12px !important;
    }

    .calc6-card-footer {
        top: 160px;
    }

    .calc6-card-org {
      font-size: 10px;
    }

    .calc6-card {
      min-height: 230px;
    }

    .calc6-card-photo {
      position: absolute;
      z-index: 1;
      top: 154px;
      right: -2px;
      bottom: -4px;
      width: 80px;
      height: 80px;
      border-radius: 50%;
      overflow: hidden;
      background: var(--c-white);
      border: 3px solid var(--c-white);
    }
}

/* @media screen and (max-width: 412px) and (max-height: 915px) {
    .calc-submit {
      font-size: 16px;
    }
    .calc-trust-item {
      min-width: auto;
    }

    .calc6-card-border {
      position: absolute;
      inset: 0;
      width: auto;
      height: auto;
      z-index: 0;
    }
    .calc6-card-quote {
      font-size: 16px;
    }

    .calc6-card-footer {
        top: 200px;
    }

    .calc6-card-org {
      font-size: 12px;
    }

    .calc6-card {
      min-height: 280px;
    }

    .calc6-card-photo {
      position: absolute;
      z-index: 1;
      top: 175px;
      right: -2px;
      bottom: -4px;
      width: 90px;
      height: 90px;
      border-radius: 50%;
      overflow: hidden;
      background: var(--c-white);
      border: 3px solid var(--c-white);
    }
} */

/* Accessibility: respect reduced motion */

@media (prefers-reduced-motion: reduce) {

  * {

    scroll-behavior: auto !important;

    transition-duration: 0.01ms !important;

    animation-duration: 0.01ms !important;

  }

}