    *,
    *::before,
    *::after {
      box-sizing: border-box;
      margin: 0;
      padding: 0;
    }

    :root {
      --primary: #2563EB;
      /* Solid Deep Azure */
      --primary-light: #60A5FA;
      /* Light Azure */
      --secondary: #F0FDF4;
      /* Precise Mint tint */
      --accent: #059669;
      /* Deep Emerald */
      --accent-warm: #D97706;
      /* Rich Amber */
      --background: #FFFFFF;
      /* Brilliant White */
      --card: #F8FAFC;
      /* Crystal Slate */
      --text: #0F172A;
      /* Midnight Charcoal (Slate 950) */
      --text-light: #334155;
      /* Deep Slate (Slate 700) */
      --border: #CBD5E1;
      /* Defined Slate border */
      --shadow: rgba(15, 23, 42, 0.12);
      /* Strengthened Shadow */
      --white: #FFFFFF;
    }

    html {
      scroll-behavior: smooth;
    }

    body {
      font-family: 'Outfit', sans-serif;
      background: var(--white);
      color: var(--text);
      overflow-x: hidden;
    }

    h1,
    h2,
    h3,
    h4,
    .logo {
      font-family: 'Plus Jakarta Sans', sans-serif;
    }


    /* ── SCROLLBAR ── */
    ::-webkit-scrollbar {
      width: 6px;
    }

    ::-webkit-scrollbar-track {
      background: var(--navy);
    }

    ::-webkit-scrollbar-thumb {
      background: var(--teal);
      border-radius: 3px;
    }

    /* ── HEADER ── */
    header {
      position: fixed;
      top: 0;
      left: 0;
      width: 100%;
      z-index: 1000;
      padding: 0 5%;
      display: flex;
      align-items: center;
      justify-content: space-between;
      height: 72px;
      background: rgba(15, 23, 42, 0.98);
      backdrop-filter: blur(20px);
      border-bottom: 1px solid rgba(255, 255, 255, 0.05);
      transition: all 0.3s;
    }

    header.scrolled {
      background: var(--text);
      box-shadow: 0 10px 40px rgba(0, 0, 0, 0.15);
    }

    .logo {
      font-size: 1.5rem;
      font-weight: 800;
      color: var(--white);
      letter-spacing: -0.04em;
      text-decoration: none;
    }

    .logo span.logo-tag {
      color: var(--primary-light);
      font-weight: 900;
    }

    .logo span {
      color: var(--primary);
    }

    nav {
      display: flex;
      align-items: center;
      gap: 0.25rem;
    }

    nav a {
      padding: 0.45rem 1.1rem;
      border-radius: 6px;
      font-size: 0.88rem;
      font-weight: 500;
      color: rgba(255, 255, 255, 0.7);
      text-decoration: none;
      transition: all 0.2s;
    }

    nav a:hover {
      color: var(--white);
      background: rgba(255, 255, 255, 0.1);
    }

    nav a.active {
      color: var(--white);
      background: rgba(255, 255, 255, 0.1);
    }

    .btn-nav {
      margin-left: 0.75rem;
      padding: 0.5rem 1.4rem;
      background: var(--primary);
      color: var(--white) !important;
      border-radius: 6px;
      font-weight: 600;
      font-size: 0.85rem;
      transition: all 0.3s !important;
    }

    .btn-nav:hover {
      background: var(--teal2) !important;
      transform: translateY(-1px);
    }

    /* mobile */
    .hamburger {
      display: none;
      background: none;
      border: none;
      cursor: pointer;
      padding: 4px;
    }

    .hamburger span {
      display: block;
      width: 24px;
      height: 2px;
      background: var(--white);
      margin: 5px 0;
      border-radius: 2px;
      transition: 0.3s;
    }

    #mobile-nav {
      display: none;
      flex-direction: column;
      gap: 0.5rem;
      background: var(--text);
      padding: 1.25rem 5%;
      border-top: 1px solid rgba(255, 255, 255, 0.05);
      position: fixed;
      top: 72px;
      left: 0;
      width: 100%;
      z-index: 999;
      box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
    }

    #mobile-nav a {
      color: var(--white);
      text-decoration: none;
      padding: 1rem 0;
      font-size: 1rem;
      font-weight: 500;
      border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    }

    /* ── HERO ── */
    .hero {
      min-height: 30vh;
      background: radial-gradient(circle at top right, #DBEAFE 0%, #FFFFFF 70%);
      display: flex;
      align-items: center;
      justify-content: center;
      position: relative;
      overflow: hidden;
      padding: 70px 5% 60px;
    }

    /* grid lines */
    .hero::before {
      content: '';
      position: absolute;
      inset: 0;
      background-image:
        linear-gradient(rgba(37, 99, 235, 0.12) 1px, transparent 1px),
        linear-gradient(90deg, rgba(37, 99, 235, 0.12) 1px, transparent 1px);
      background-size: 60px 60px;
      animation: gridShift 30s linear infinite;
    }

    @keyframes gridShift {
      0% {
        background-position: 0 0;
      }

      100% {
        background-position: 60px 60px;
      }
    }

    /* glow orbs */
    .orb {
      position: absolute;
      border-radius: 50%;
      filter: blur(90px);
      opacity: 0.35;
      pointer-events: none;
      animation: orbFloat 12s ease-in-out infinite;
    }

    .orb1 {
      width: 560px;
      height: 560px;
      background: var(--primary);
      top: -180px;
      right: -180px;
      animation-delay: 0s;
      opacity: 0.25;
    }

    .orb2 {
      width: 380px;
      height: 380px;
      background: var(--primary-light);
      bottom: -120px;
      left: -120px;
      animation-delay: 4s;
      opacity: 0.2;
    }

    .orb3 {
      width: 250px;
      height: 250px;
      background: var(--accent);
      top: 40%;
      left: 35%;
      animation-delay: 8s;
      opacity: 0.15;
    }

    @keyframes orbFloat {

      0%,
      100% {
        transform: translate(0, 0) scale(1);
      }

      50% {
        transform: translate(20px, -30px) scale(1.05);
      }
    }

    .hero-content {
      max-width: 600px;
      margin: 0 auto;
      text-align: center;
      position: relative;
      z-index: 2;
    }

    .badge {
      display: inline-flex;
      align-items: center;
      gap: 8px;
      background: #EFF6FF;
      border: 1px solid rgba(59, 130, 246, 0.2);
      border-radius: 40px;
      padding: 8px 18px;
      font-size: 0.8rem;
      font-weight: 700;
      color: var(--primary);
      letter-spacing: 0.05em;
      text-transform: uppercase;
      margin-bottom: 1.5rem;
      position: relative;
      overflow: hidden;
      transition: all 0.3s;
    }

    .badge::after {
      content: '';
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.1), transparent);
      animation: shimmer 4s infinite linear;
    }

    .badge-dot {
      width: 6px;
      height: 6px;
      background: var(--accent);
      border-radius: 50%;
      animation: pulse 1.5s ease-in-out infinite;
      box-shadow: 0 0 10px rgba(16, 185, 129, 0.5);
    }

    @keyframes pulse {

      0%,
      100% {
        opacity: 1;
        transform: scale(1);
      }

      50% {
        opacity: 0.5;
        transform: scale(1.4);
      }
    }

    @keyframes shimmer {
      0% {
        transform: translateX(-150%) skewX(-25deg);
      }

      100% {
        transform: translateX(150%) skewX(-25deg);
      }
    }

    @keyframes float3D {

      0%,
      100% {
        transform: translateY(0) rotateX(0) rotateY(0);
      }

      50% {
        transform: translateY(-8px) rotateX(2deg) rotateY(2deg);
      }
    }

    @keyframes borderRotate {
      0% {
        background-position: 0% 50%;
      }

      50% {
        background-position: 100% 50%;
      }

      100% {
        background-position: 0% 50%;
      }
    }

    .hero h1 {
      font-size: clamp(2.4rem, 5vw, 4rem);
      font-weight: 800;
      color: var(--text);
      line-height: 1.1;
      letter-spacing: -0.03em;
      margin-bottom: 1.25rem;
    }

    .hero h1 .accent {
      color: var(--primary);
    }

    .hero p {
      font-size: clamp(1rem, 1.8vw, 1.2rem);
      color: var(--text-light);
      max-width: 620px;
      margin: 0 auto 2.5rem;
      line-height: 1.7;
    }

    .hero-ctas {
      display: flex;
      gap: 1rem;
      justify-content: center;
      flex-wrap: wrap;
    }

    .btn-primary {
      padding: 0.95rem 2.25rem;
      background: var(--primary);
      color: var(--white);
      border-radius: 10px;
      font-weight: 700;
      font-size: 1rem;
      text-decoration: none;
      border: none;
      cursor: pointer;
      transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
      box-shadow: 0 10px 30px rgba(59, 130, 246, 0.25);
    }

    .btn-primary:hover {
      background: #2563EB;
      transform: translateY(-3px) scale(1.02);
      box-shadow: 0 15px 40px rgba(59, 130, 246, 0.4);
    }

    .btn-outline {
      padding: 0.95rem 2.25rem;
      background: transparent;
      color: var(--text);
      border: 2px solid var(--border);
      border-radius: 10px;
      font-weight: 600;
      font-size: 1rem;
      text-decoration: none;
      transition: all 0.3s;
    }

    .btn-outline:hover {
      background: var(--card);
      border-color: var(--primary);
      color: var(--primary);
      transform: translateY(-3px);
    }

    .hero-scroll {
      margin-top: 2.5rem;
      display: flex;
      flex-direction: column;
      align-items: center;
      gap: 8px;
      color: var(--text-light);
      font-size: 0.75rem;
      letter-spacing: 0.1em;
      text-transform: uppercase;
    }

    .scroll-line {
      width: 1px;
      height: 50px;
      background: linear-gradient(to bottom, var(--primary), transparent);
      animation: scrollDrop 1.8s ease-in-out infinite;
    }

    @keyframes scrollDrop {

      0%,
      100% {
        transform: scaleY(0);
        transform-origin: top;
      }

      50% {
        transform: scaleY(1);
        transform-origin: top;
      }
    }

    /* ── STATS TICKER ── */
    .stats-bar {
      background: var(--text);
      padding: 1.25rem 0;
      overflow: hidden;
      border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    }

    .stats-track {
      display: flex;
      gap: 4rem;
      animation: ticker 30s linear infinite;
      width: max-content;
    }

    @keyframes ticker {
      0% {
        transform: translateX(0);
      }

      100% {
        transform: translateX(-50%);
      }
    }

    .stat-item {
      display: flex;
      align-items: center;
      gap: 0.6rem;
      white-space: nowrap;
      font-size: 0.85rem;
      font-weight: 600;
      color: var(--white);
    }

    .stat-item i {
      font-size: 0.8rem;
      opacity: 0.8;
    }

    .stat-item span.num {
      font-family: 'Plus Jakarta Sans', sans-serif;
      font-size: 1rem;
    }

    /* ── SECTION BASE ── */
    section {
      padding: 100px 5%;
    }

    .section-label {
      display: inline-block;
      font-size: 0.72rem;
      font-weight: 700;
      letter-spacing: 0.12em;
      text-transform: uppercase;
      color: var(--primary);
      margin-bottom: 0.75rem;
    }

    .section-title {
      font-size: clamp(1.9rem, 3.5vw, 2.9rem);
      font-weight: 800;
      color: var(--text);
      line-height: 1.15;
      letter-spacing: -0.025em;
      margin-bottom: 1.25rem;
    }

    .section-sub {
      font-size: 1.05rem;
      color: var(--text-light);
      line-height: 1.7;
      max-width: 560px;
    }

    .section-title .accent {
      color: var(--primary);
    }

    .center {
      text-align: center;
    }

    .center .section-sub {
      margin: 0 auto;
    }

    /* ── ABOUT ── */
    #about {
      background: var(--background);
    }

    .about-grid {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 5rem;
      align-items: center;
      max-width: 1200px;
      margin: 0 auto;
    }

    .about-visual {
      position: relative;
    }

    .about-card-main {
      background: var(--primary);
      border-radius: 20px;
      padding: 3rem;
      position: relative;
      overflow: hidden;
      box-shadow: 0 40px 100px rgba(59, 130, 246, 0.25);
    }

    .about-card-main::before {
      content: '';
      position: absolute;
      top: 0;
      right: 0;
      width: 200px;
      height: 200px;
      background: radial-gradient(circle, rgba(255, 255, 255, 0.2), transparent 70%);
    }

    .about-card-main .big-num {
      font-family: 'Plus Jakarta Sans', sans-serif;
      font-size: 5rem;
      font-weight: 800;
      color: var(--white);
      line-height: 1;
      margin-bottom: 0.5rem;
    }

    .about-card-main p {
      color: rgba(255, 255, 255, 0.8);
      font-size: 1rem;
    }

    .about-mini-cards {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 1rem;
      margin-top: 1rem;
    }

    .mini-card {
      background: var(--card);
      border-radius: 14px;
      padding: 1.25rem;
      border: 1px solid var(--border);
      box-shadow: var(--shadow);
    }

    .mini-card .num {
      font-family: 'Plus Jakarta Sans', sans-serif;
      font-size: 1.8rem;
      font-weight: 800;
      color: var(--primary);
    }

    .mini-card .label {
      font-size: 0.8rem;
      color: var(--text-light);
      margin-top: 2px;
    }

    .mini-card .icon {
      font-size: 1.2rem;
      color: var(--primary-light);
      margin-bottom: 0.5rem;
    }

    /* ── WHO WE SERVE ── */
    #serve {
      background: #EBF5FF;
      /* Saturated Azure Tint */
      border-top: 1px solid rgba(37, 99, 235, 0.1);
      border-bottom: 1px solid rgba(37, 99, 235, 0.1);
    }

    /* ── WORKFLOW DARK CONTAINER ── */
    #workflow {
      background: #FFFFFF;
      border-top: 1px solid var(--border);
      border-bottom: 1px solid var(--border);
      position: relative;
      overflow: hidden;
      padding: 100px 5%;
    }

    #workflow::before {
      content: '';
      position: absolute;
      inset: 0;
      background-image: 
        linear-gradient(rgba(37, 99, 235, 0.03) 1px, transparent 1px),
        linear-gradient(90deg, rgba(37, 99, 235, 0.03) 1px, transparent 1px);
      background-size: 60px 60px;
      opacity: 0.8;
      pointer-events: none;
    }

    #workflow .section-title {
      color: var(--text);
    }

    #workflow .section-sub {
      color: var(--text-light);
    }

    /* ── SYNAPSE SERVICE HUB ── */
    .hub-wrapper {
      position: relative;
      max-width: 1200px;
      margin: 4rem auto 0;
      height: 650px;
      display: flex;
      align-items: center;
      justify-content: center;
      perspective: 1000px;
    }

    /* SVG Neural Paths */
    .synapse-svg {
      position: absolute;
      inset: 0;
      width: 100%;
      height: 100%;
      pointer-events: none;
      z-index: 1;
    }

    .synapse-path {
      fill: none;
      stroke-width: 2.5;
      stroke-linecap: round;
      stroke-dasharray: 8 28;
      opacity: 0.35;
      transition: all 0.6s cubic-bezier(0.23, 1, 0.32, 1);
      animation: neonFlow 4s linear infinite;
    }

    /* Color mappings for paths */
    #path-billing {
      stroke: var(--accent-warm);
      --line-glow-color: var(--accent-warm);
    }
    #path-coding {
      stroke: var(--primary-light);
      --line-glow-color: var(--primary-light);
    }
    #path-credentialing {
      stroke: #6366F1;
      --line-glow-color: #6366F1;
    }
    #path-ar {
      stroke: #10B981;
      --line-glow-color: #10B981;
    }

    @keyframes neonFlow {
      to {
        stroke-dashoffset: -96;
      }
    }

    .synapse-path.active {
      opacity: 1;
      stroke-width: 4;
      stroke-dasharray: 18 12;
      filter: drop-shadow(0 0 8px var(--line-glow-color));
      animation: neonFlowFast 1.5s linear infinite;
    }

    @keyframes neonFlowFast {
      to {
        stroke-dashoffset: -60;
      }
    }

    /* Clinical Core */
    .clinical-core {
      width: 170px;
      height: 170px;
      background: radial-gradient(circle at center, #FFFFFF 0%, #EFF6FF 100%);
      border: 2px solid var(--primary);
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
      flex-direction: column;
      position: relative;
      z-index: 10;
      box-shadow: 
        0 10px 30px rgba(37, 99, 235, 0.15), 
        inset 0 0 20px rgba(37, 99, 235, 0.05);
      text-align: center;
      padding: 24px;
      transition: all 0.5s ease;
    }

    .clinical-core:hover {
      transform: scale(1.05);
      border-color: var(--primary);
      box-shadow: 
        0 20px 45px rgba(37, 99, 235, 0.25), 
        inset 0 0 30px rgba(37, 99, 235, 0.15);
    }

    .clinical-core::before {
      content: '';
      position: absolute;
      inset: -18px;
      border: 2px dashed rgba(37, 99, 235, 0.25);
      border-radius: 50%;
      opacity: 0.8;
      animation: rotate 20s linear infinite;
    }

    .core-pulse {
      position: absolute;
      inset: -5px;
      border-radius: 50%;
      background: var(--primary);
      opacity: 0.05;
      animation: ping 3s cubic-bezier(0, 0, 0.2, 1) infinite;
    }

    .clinical-core h3 {
      font-size: 1.35rem;
      font-weight: 800;
      color: var(--text);
      line-height: 1.1;
      margin-bottom: 2px;
      text-transform: uppercase;
      letter-spacing: 0.05em;
    }

    .clinical-core p {
      font-size: 0.82rem;
      color: var(--primary);
      font-weight: 800;
      text-transform: uppercase;
      letter-spacing: 0.15em;
    }

    /* Service Orbs - Light Glassmorphism */
    .service-orb {
      position: absolute;
      width: 260px;
      height: 260px;
      background: rgba(255, 255, 255, 0.85);
      backdrop-filter: blur(20px);
      border-radius: 50%;
      border: 2px solid rgba(37, 99, 235, 0.15);
      padding: 2.25rem;
      display: flex;
      flex-direction: column;
      align-items: center;
      justify-content: center;
      text-align: center;
      cursor: pointer;
      z-index: 5;
      transition: all 0.6s cubic-bezier(0.23, 1, 0.32, 1);
      box-shadow: 
        0 20px 50px rgba(15, 23, 42, 0.06), 
        inset 0 0 20px rgba(255, 255, 255, 0.6);
    }

    .orb-inner-glow {
      position: absolute;
      inset: 0;
      border-radius: 50%;
      background: radial-gradient(circle at 30% 30%, rgba(255, 255, 255, 0.4) 0%, transparent 40%);
      pointer-events: none;
      transition: all 0.6s;
    }

    .service-orb:hover {
      transform: scale(1.08) translateY(-10px);
      background: rgba(255, 255, 255, 0.98);
      border-color: var(--orb-color);
      box-shadow: 
        0 30px 60px rgba(15, 23, 42, 0.1), 
        0 0 35px var(--orb-shadow), 
        inset 0 0 25px rgba(255, 255, 255, 0.8);
    }

    .service-orb:hover .orb-inner-glow {
      background: radial-gradient(circle at 30% 30%, rgba(255, 255, 255, 0.6) 0%, transparent 60%);
    }

    /* Positioning colors */
    .orb-billing {
      top: 0;
      left: 10%;
      --orb-color: var(--accent-warm);
      --orb-shadow: rgba(217, 119, 6, 0.3);
      animation: float 6s infinite ease-in-out;
    }

    .orb-coding {
      top: 0;
      right: 10%;
      --orb-color: var(--primary-light);
      --orb-shadow: rgba(96, 165, 250, 0.3);
      animation: float 6s infinite ease-in-out 1s;
    }

    .orb-credentialing {
      bottom: 0;
      left: 10%;
      --orb-color: #6366F1;
      --orb-shadow: rgba(99, 102, 241, 0.3);
      animation: float 6s infinite ease-in-out 1.5s;
    }

    .orb-ar {
      bottom: 0;
      right: 10%;
      --orb-color: #10B981;
      --orb-shadow: rgba(16, 185, 129, 0.3);
      animation: float 6s infinite ease-in-out 0.5s;
    }

    .orb-icon {
      width: 60px;
      height: 60px;
      background: rgba(37, 99, 235, 0.03);
      border: 1px solid rgba(37, 99, 235, 0.1);
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 1.6rem;
      color: var(--orb-color);
      margin-bottom: 1rem;
      transition: all 0.5s cubic-bezier(0.23, 1, 0.32, 1);
      box-shadow: 0 4px 10px rgba(15, 23, 42, 0.05);
    }

    .service-orb:hover .orb-icon {
      background: var(--orb-color);
      color: var(--white);
      border-color: var(--orb-color);
      transform: rotateY(360deg) scale(1.1);
      box-shadow: 0 0 20px var(--orb-shadow);
    }

    .service-orb h3 {
      font-size: 1.15rem;
      font-weight: 700;
      color: var(--text);
      margin-bottom: 0.4rem;
      letter-spacing: -0.01em;
      line-height: 1.2;
      transition: color 0.3s;
    }

    .service-orb p {
      font-size: 0.8rem;
      color: var(--text-light);
      font-weight: 400;
      line-height: 1.45;
      margin-bottom: 0.9rem;
    }

    .orb-link {
      font-size: 0.72rem;
      font-weight: 700;
      color: var(--orb-color);
      text-transform: uppercase;
      letter-spacing: 0.08em;
      text-decoration: none;
      display: flex;
      align-items: center;
      gap: 4px;
      transition: all 0.3s;
    }

    .orb-link i {
      transition: transform 0.3s;
    }

    .service-orb:hover .orb-link i {
      transform: translateX(4px);
    }

    @media (max-width: 1024px) {
      .hub-wrapper {
        height: auto;
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 2rem;
        padding-top: 2rem;
      }

      .synapse-svg,
      .clinical-core {
        display: none;
      }

      .service-orb {
        position: static;
        width: 100%;
        height: auto;
        border-radius: 24px;
        animation: none !important;
        padding: 3rem 2rem;
      }
    }

    @media (max-width: 600px) {
      .hub-wrapper {
        grid-template-columns: 1fr;
      }
    }


    /* ── PREMIUM LIGHT NARRATIVE TIMELINE ── */
    #why {
      background: #FFFFFF;
      position: relative;
      overflow: hidden;
      padding: 100px 5% 150px;
    }

    /* Central Spine */
    .timeline-container {
      position: relative;
      max-width: 1200px;
      margin: 2rem auto 0;
      padding: 0.5rem 0;
    }

    .timeline-spine {
      position: absolute;
      top: 0;
      left: 50%;
      width: 2px;
      height: 0;
      /* Dynamic height via JS */
      background: linear-gradient(to bottom, var(--primary-light), var(--primary));
      transform: translateX(-50%);
      transition: height 0.3s ease-out;
      box-shadow: 0 0 15px rgba(59, 130, 246, 0.4);
      z-index: 1;
    }

    .timeline-full-line {
      position: absolute;
      top: 0;
      left: 50%;
      width: 2px;
      height: 100%;
      background: rgba(0, 0, 0, 0.03);
      transform: translateX(-50%);
      z-index: 0;
    }

    /* Narrative Card */
    .narrative-item {
      display: flex;
      justify-content: flex-end;
      width: 50%;
      padding: 0.75rem 3rem;
      position: relative;
      transition: 0.8s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    }

    .narrative-item.right {
      margin-left: 50%;
      justify-content: flex-start;
    }

    .narrative-card {
      background: #FFFFFF;
      border: 1px solid var(--border);
      border-radius: 20px;
      padding: 1.5rem 2.25rem;
      max-width: 500px;
      position: relative;
      transition: all 0.5s;
      box-shadow: 0 10px 30px rgba(15, 23, 42, 0.1);
    }

    .narrative-card:hover {
      background: #FFFFFF;
      border-color: var(--primary);
      transform: translateY(-5px);
      box-shadow: 0 30px 60px rgba(59, 130, 246, 0.15);
    }

    /* Connection Node */
    .narrative-node {
      position: absolute;
      top: 50%;
      width: 18px;
      height: 18px;
      background: var(--white);
      border: 3px solid var(--primary-light);
      border-radius: 50%;
      transform: translateY(-50%);
      z-index: 3;
      transition: 0.5s;
    }

    .narrative-item:not(.right) .narrative-node {
      right: -10px;
    }

    .narrative-item.right .narrative-node {
      left: -10px;
    }

    .narrative-item.visible .narrative-node {
      background: var(--accent);
      border-color: var(--white);
      box-shadow: 0 0 15px rgba(16, 185, 129, 0.4);
      transform: translateY(-50%) scale(1.2);
    }

    /* Content styling */
    .narrative-card i {
      font-size: 2.5rem;
      color: var(--primary);
      margin-bottom: 1.5rem;
      display: block;
    }

    .narrative-card h3 {
      font-size: 1.6rem;
      color: var(--text);
      margin-bottom: 1rem;
      font-weight: 800;
    }

    .narrative-card p {
      font-size: 1.05rem;
      color: var(--text-light);
      line-height: 1.7;
    }

    /* Entrances */
    .narrative-item {
      opacity: 0;
      transform: translateX(-50px);
    }

    .narrative-item.right {
      transform: translateX(50px);
    }

    .narrative-item.visible {
      opacity: 1;
      transform: translateX(0);
    }

    @media (max-width: 900px) {

      .timeline-spine,
      .timeline-full-line,
      .narrative-node {
        left: 20px;
        transform: none;
      }

      .narrative-item {
        width: 100%;
        margin-left: 40px !important;
        padding: 2rem 1rem;
        transform: translateX(30px);
      }

      .narrative-item.right {
        transform: translateX(30px);
      }

      .narrative-card {
        max-width: 100%;
      }

      .timeline-container {
        margin-left: 20px;
      }

      .center.reveal {
        text-align: left;
        padding-left: 60px;
      }
    }

    .why-icon {
      width: 60px;
      height: 60px;
      border-radius: 14px;
      background: var(--secondary);
      border: 1px solid var(--primary-light);
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 1.4rem;
      color: var(--primary);
      margin-bottom: 1.5rem;
      transition: all 0.3s;
    }

    .why-card:hover .why-icon {
      background: var(--primary);
      color: var(--white);
      box-shadow: 0 8px 24px rgba(59, 130, 246, 0.3);
    }

    .why-card h3 {
      font-size: 1.1rem;
      font-weight: 700;
      color: var(--white);
      margin-bottom: 0.7rem;
    }

    .why-card p {
      font-size: 0.88rem;
      color: rgba(255, 255, 255, 0.5);
      line-height: 1.7;
    }

    /* ── PREMIUM LIGHT GLASS CYCLE (SERVICES) ── */
    #services {
      background: #F8FAFC;
      padding: 80px 5% 120px;
      position: relative;
      overflow: hidden;
    }

    .services-header {
      display: flex;
      justify-content: space-between;
      align-items: flex-end;
      max-width: 1200px;
      margin: 0 auto 4rem;
      position: relative;
      z-index: 2;
    }

    /* ── 3D COVERFLOW STACK CAROUSEL ── */
    #services {
      padding: 100px 5%;
      background: radial-gradient(circle at center, #FFFFFF 0%, #F8FAFC 100%);
      position: relative;
      overflow: hidden;
      border-top: 1px solid var(--border);
      border-bottom: 1px solid var(--border);
    }

    #services::before {
      content: '';
      position: absolute;
      inset: 0;
      background-image: 
        linear-gradient(rgba(37, 99, 235, 0.03) 1px, transparent 1px),
        linear-gradient(90deg, rgba(37, 99, 235, 0.03) 1px, transparent 1px);
      background-size: 30px 30px;
      opacity: 0.8;
      pointer-events: none;
    }

    #services .section-title {
      color: var(--text);
    }

    #services .section-sub {
      color: var(--text-light);
    }

    .services-carousel-container {
      position: relative;
      width: 100%;
      max-width: 1200px;
      margin: 4rem auto 0;
      height: 560px;
      display: flex;
      align-items: center;
      justify-content: center;
      perspective: 1200px;
      overflow: visible; /* Let stacked cards expand out visually */
      padding: 2rem 0;
    }

    .carousel-dot-grid {
      position: absolute;
      inset: 0;
      background-image: radial-gradient(rgba(249, 115, 22, 0.1) 1.5px, transparent 1.5px);
      background-size: 24px 24px;
      opacity: 0.6;
      pointer-events: none;
      border-radius: 32px;
      z-index: 0;
    }

    .carousel-track {
      position: relative;
      width: 100%;
      height: 100%;
      display: flex;
      align-items: center;
      justify-content: center;
      transform-style: preserve-3d;
      z-index: 2;
    }

    .carousel-card {
      position: absolute;
      width: 380px;
      height: 500px;
      border-radius: 32px;
      padding: 3.5rem 2.5rem;
      box-sizing: border-box;
      display: flex;
      flex-direction: column;
      justify-content: space-between;
      cursor: pointer;
      user-select: none;
      transform-style: preserve-3d;
      perspective: 1000px;
      background: #FFFFFF;
      border: 1px solid var(--border);
      color: var(--text);
      transition: transform 0.8s cubic-bezier(0.25, 1, 0.33, 1),
                  opacity 0.8s cubic-bezier(0.25, 1, 0.33, 1),
                  filter 0.8s cubic-bezier(0.25, 1, 0.33, 1),
                  background-color 0.8s cubic-bezier(0.25, 1, 0.33, 1),
                  border-color 0.8s cubic-bezier(0.25, 1, 0.33, 1),
                  color 0.8s cubic-bezier(0.25, 1, 0.33, 1),
                  box-shadow 0.8s cubic-bezier(0.25, 1, 0.33, 1);
      box-shadow: 0 10px 30px rgba(15, 23, 42, 0.05);
    }

    /* Active State Override - Highlighted Active Card with primary color border and elevated shadow */
    .carousel-card.active {
      background: #FFFFFF;
      border-color: var(--primary);
      color: var(--text);
      box-shadow: 0 30px 60px rgba(15, 23, 42, 0.12), 0 0 45px rgba(37, 99, 235, 0.1);
      cursor: default;
    }

    /* Rotating background gradient blobs for that modern visual aesthetic */
    .card-blob {
      position: absolute;
      bottom: 0;
      left: 0;
      right: 0;
      height: 65%;
      pointer-events: none;
      z-index: 1;
      border-radius: 0 0 32px 32px;
      filter: blur(25px);
      opacity: 0.65;
      transition: opacity 0.8s, filter 0.8s;
    }

    /* Medical Identity color variables inside the dark cards */
    .c-indigo {
      --accent-tile: #3B82F6;
      --accent-glow: rgba(59, 130, 246, 0.25);
    }
    .c-teal {
      --accent-tile: #6366F1;
      --accent-glow: rgba(99, 102, 241, 0.25);
    }
    .c-amber {
      --accent-tile: #0891B2;
      --accent-glow: rgba(8, 145, 178, 0.25);
    }
    .c-rose {
      --accent-tile: #10B981;
      --accent-glow: rgba(16, 185, 129, 0.25);
    }

    /* Custom blobs for inactive card */
    .carousel-card.c-indigo .card-blob {
      background: radial-gradient(circle at 50% 110%, rgba(59, 130, 246, 0.45) 0%, transparent 70%);
    }
    .carousel-card.c-teal .card-blob {
      background: radial-gradient(circle at 50% 110%, rgba(99, 102, 241, 0.45) 0%, transparent 70%);
    }
    .carousel-card.c-amber .card-blob {
      background: radial-gradient(circle at 50% 110%, rgba(8, 145, 178, 0.45) 0%, transparent 70%);
    }
    .carousel-card.c-rose .card-blob {
      background: radial-gradient(circle at 50% 110%, rgba(16, 185, 129, 0.45) 0%, transparent 70%);
    }

    /* Active cards blob transitions (softer contrast blob overlay) */
    .carousel-card.active.c-indigo .card-blob {
      background: radial-gradient(circle at 50% 110%, rgba(59, 130, 246, 0.15) 0%, transparent 75%);
    }
    .carousel-card.active.c-teal .card-blob {
      background: radial-gradient(circle at 50% 110%, rgba(99, 102, 241, 0.15) 0%, transparent 75%);
    }
    .carousel-card.active.c-amber .card-blob {
      background: radial-gradient(circle at 50% 110%, rgba(8, 145, 178, 0.15) 0%, transparent 75%);
    }
    .carousel-card.active.c-rose .card-blob {
      background: radial-gradient(circle at 50% 110%, rgba(16, 185, 129, 0.15) 0%, transparent 75%);
    }

    /* Coverflow Stack Classes */
    .carousel-card.active {
      transform: translate3d(0, 0, 100px) rotateY(0deg) scale(1);
      z-index: 100;
      opacity: 1;
      filter: none;
    }

    .carousel-card.prev {
      transform: translate3d(-330px, 0, 0) rotateY(28deg) scale(0.85);
      z-index: 50;
      opacity: 0.7;
      filter: blur(1.5px);
    }

    .carousel-card.next {
      transform: translate3d(330px, 0, 0) rotateY(-28deg) scale(0.85);
      z-index: 50;
      opacity: 0.7;
      filter: blur(1.5px);
    }

    .carousel-card.far-prev {
      transform: translate3d(-540px, 0, -100px) rotateY(40deg) scale(0.7);
      z-index: 20;
      opacity: 0.35;
      filter: blur(3px);
    }

    .carousel-card.far-next {
      transform: translate3d(540px, 0, -100px) rotateY(-40deg) scale(0.7);
      z-index: 20;
      opacity: 0.35;
      filter: blur(3px);
    }

    .carousel-card.hidden-left {
      transform: translate3d(-800px, 0, -200px) rotateY(50deg) scale(0.5);
      z-index: 10;
      opacity: 0;
      filter: blur(5px);
      pointer-events: none;
    }

    .carousel-card.hidden-right {
      transform: translate3d(800px, 0, -200px) rotateY(-50deg) scale(0.5);
      z-index: 10;
      opacity: 0;
      filter: blur(5px);
      pointer-events: none;
    }

    /* Content Layout */
    .card-top {
      display: flex;
      justify-content: space-between;
      align-items: center;
      width: 100%;
      z-index: 5;
    }

    .card-num {
      font-size: 1.35rem;
      font-weight: 800;
      font-family: 'Plus Jakarta Sans', sans-serif;
      color: rgba(255, 255, 255, 0.3);
      transition: color 0.8s;
    }

    .carousel-card.active .card-num {
      color: rgba(15, 23, 42, 0.3);
    }

    .card-action-icon {
      font-size: 1.3rem;
      color: rgba(255, 255, 255, 0.5);
      transition: all 0.4s cubic-bezier(0.25, 1, 0.33, 1);
      z-index: 5;
    }

    .carousel-card.active .card-action-icon {
      color: rgba(15, 23, 42, 0.6);
    }

    .card-action-icon:hover {
      transform: scale(1.15) rotate(15deg);
      color: var(--accent-tile);
    }

    .card-body {
      z-index: 5;
      display: flex;
      flex-direction: column;
      align-items: flex-start;
      margin-top: auto;
    }

    .card-icon-wrap {
      width: 56px;
      height: 56px;
      background: rgba(255, 255, 255, 0.05);
      border: 1px solid rgba(255, 255, 255, 0.1);
      border-radius: 16px;
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 1.5rem;
      color: var(--accent-tile);
      margin-bottom: 2rem;
      transition: all 0.8s;
    }

    .carousel-card.active .card-icon-wrap {
      background: rgba(15, 23, 42, 0.04);
      border-color: rgba(15, 23, 42, 0.08);
      color: var(--accent-tile);
    }

    .carousel-card h3 {
      font-size: 1.6rem;
      font-weight: 800;
      margin-bottom: 1rem;
      line-height: 1.3;
      transition: color 0.8s;
    }

    .carousel-card p {
      font-size: 0.96rem;
      color: var(--text-light);
      line-height: 1.6;
      transition: color 0.8s;
    }

    .carousel-card.active p {
      color: var(--text-light);
    }

    /* Carousel Nav Controls */
    .carousel-nav {
      display: flex;
      align-items: center;
      justify-content: center;
      gap: 2rem;
      margin-top: 3.5rem;
      z-index: 200;
      position: relative;
    }

    .nav-btn {
      width: 52px;
      height: 52px;
      border-radius: 50%;
      border: 1px solid var(--border);
      background: var(--white);
      color: var(--text);
      font-size: 1.1rem;
      cursor: pointer;
      display: flex;
      align-items: center;
      justify-content: center;
      transition: all 0.4s cubic-bezier(0.25, 1, 0.33, 1);
      box-shadow: 0 4px 10px rgba(15, 23, 42, 0.05);
    }

    .nav-btn:hover {
      background: var(--primary);
      color: var(--white);
      border-color: var(--primary);
      transform: scale(1.08);
    }

    .carousel-indicators {
      display: flex;
      gap: 0.6rem;
      align-items: center;
    }

    .indicator-dot {
      width: 8px;
      height: 8px;
      border-radius: 50%;
      background: var(--border);
      cursor: pointer;
      transition: all 0.4s cubic-bezier(0.25, 1, 0.33, 1);
    }

    .indicator-dot.active {
      width: 24px;
      border-radius: 4px;
      background: var(--primary);
    }

    /* Pulse Connection Line */
    .services-pulse-wrap {
      position: absolute;
      top: 50%;
      left: 5%;
      right: 5%;
      height: 2px;
      background: rgba(0, 0, 0, 0.1);
      z-index: 1;
      transform: translateY(20px);
    }

    .pulse-dot {
      position: absolute;
      top: -4px;
      left: 0;
      width: 10px;
      height: 10px;
      background: var(--primary);
      border-radius: 50%;
      box-shadow: 0 0 10px rgba(59, 130, 246, 0.6);
      transition: left 0.1s linear;
    }

    @media (max-width: 1024px) {
      .cycle-grid {
        grid-template-columns: 1fr 1fr;
      }

      .services-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 1rem;
      }

      .services-pulse-wrap {
        display: none;
      }
    }

    @media (max-width: 600px) {
      .cycle-grid {
        grid-template-columns: 1fr;
      }
    }

    /* ══════════════════════════════════════════════════
       HONEYCOMB GRID — Premium Pop Animation System
    ══════════════════════════════════════════════════ */
    #serve {
      padding: 100px 5% 140px;
      background: #FFFFFF;
      position: relative;
      overflow: hidden;
      border-top: 1px solid var(--border);
    }

    /* Subtle decorative background dots */
    #serve::before {
      content: '';
      position: absolute;
      inset: 0;
      background-image: radial-gradient(circle, rgba(37,99,235,0.06) 1px, transparent 1px);
      background-size: 32px 32px;
      pointer-events: none;
    }

    .honeycomb-container {
      display: grid;
      grid-template-columns: repeat(6, 1fr);
      max-width: 1000px;
      margin: 0 auto;
      row-gap: 0;
      justify-items: center;
      isolation: isolate;
    }

    /* ── BASE NODE ── */
    .honeycomb-node {
      grid-column: span 2;
      position: relative;
      width: 300px;
      height: 340px;
      padding: 2.4rem 2rem;
      background: linear-gradient(145deg, #EEF4FF 0%, #F0F9FF 100%);
      border: 1.5px solid rgba(37, 99, 235, 0.18);
      clip-path: polygon(50% 0%, 100% 25%, 100% 75%, 50% 100%, 0% 75%, 0% 25%);
      display: flex;
      flex-direction: column;
      align-items: center;
      justify-content: center;
      text-align: center;
      cursor: pointer;
      z-index: 5;
      transform-origin: center center;
      backface-visibility: hidden;
      will-change: transform, box-shadow;
      /* Smooth spring-like transition */
      transition:
        transform    0.45s cubic-bezier(0.34, 1.56, 0.64, 1),
        box-shadow   0.45s cubic-bezier(0.34, 1.56, 0.64, 1),
        background   0.35s ease,
        border-color 0.35s ease,
        opacity      0.35s ease,
        filter       0.35s ease,
        z-index      0s;
      box-shadow:
        0 4px 16px rgba(37, 99, 235, 0.10),
        0 1px 4px  rgba(0, 0, 0, 0.06);
    }

    /* ── SHIMMER SWEEP (::before) ── */
    .honeycomb-node::before {
      content: '';
      position: absolute;
      inset: 0;
      background: linear-gradient(
        115deg,
        transparent 0%,
        transparent 30%,
        rgba(255, 255, 255, 0.55) 50%,
        transparent 70%,
        transparent 100%
      );
      background-size: 250% 100%;
      background-position: -100% 0;
      opacity: 0;
      transition: opacity 0.2s ease, background-position 0.6s ease;
      pointer-events: none;
      z-index: 2;
    }

    /* ── GLOW RING (::after) ── */
    .honeycomb-node::after {
      content: '';
      position: absolute;
      inset: -3px;
      clip-path: polygon(50% 0%, 100% 25%, 100% 75%, 50% 100%, 0% 75%, 0% 25%);
      background: transparent;
      border: 2px solid transparent;
      box-shadow: 0 0 0 0 rgba(37, 99, 235, 0);
      opacity: 0;
      transition:
        opacity     0.4s ease,
        box-shadow  0.5s cubic-bezier(0.34, 1.56, 0.64, 1);
      pointer-events: none;
      z-index: 1;
    }

    /* ════════════════════════════════════
       POP STATE — applied via .is-hovered
    ════════════════════════════════════ */
    .honeycomb-node.is-hovered {
      /* Spring-eased lift + scale — identical for ALL rows
         because z-index:100 overrides CSS grid paint order */
      transform: scale(1.12) translateY(-14px);
      z-index: 100;
      background: linear-gradient(145deg, #ffffff 0%, #EEF5FF 100%);
      border-color: rgba(37, 99, 235, 0.7);
      box-shadow:
        0 0  0   1px rgba(37, 99, 235, 0.35),
        0 16px 40px rgba(37, 99, 235, 0.30),
        0 32px 72px rgba(37, 99, 235, 0.15),
        0 6px  18px rgba(0,  0,  0,  0.12);
    }

    /* Shimmer sweeps across on hover */
    .honeycomb-node.is-hovered::before {
      opacity: 1;
      background-position: 200% 0;
    }

    /* Glow ring pulses out */
    .honeycomb-node.is-hovered::after {
      opacity: 1;
      box-shadow:
        0 0 0 6px  rgba(37, 99, 235, 0.12),
        0 0 0 14px rgba(37, 99, 235, 0.05);
    }

    /* ── SIBLING DIM-BACK ── */
    .honeycomb-container.grid-has-hover .honeycomb-node:not(.is-hovered) {
      z-index: 1;
      opacity: 0.60;
      filter: blur(0.4px) brightness(0.92);
      transform: scale(0.97);
    }

    /* ── PRECISION ROW LAYOUT (3 – 2 – 3) ── */
    /* Row 2: items 4 & 5 offset into gaps */
    .honeycomb-node:nth-child(4) {
      grid-column: 2 / span 2;
      margin-top: -75px;
    }
    .honeycomb-node:nth-child(5) {
      grid-column: 4 / span 2;
      margin-top: -75px;
    }
    /* Row 3: items 6, 7, 8 nest under row 2 */
    .honeycomb-node:nth-child(6) {
      grid-column: 1 / span 2;
      margin-top: -75px;
    }
    .honeycomb-node:nth-child(7) {
      grid-column: 3 / span 2;
      margin-top: -75px;
    }
    .honeycomb-node:nth-child(8) {
      grid-column: 5 / span 2;
      margin-top: -75px;
    }

    /* ── ICON ── */
    .honeycomb-node i {
      font-size: 2.4rem;
      color: var(--primary);
      margin-bottom: 1.25rem;
      transition:
        transform 0.45s cubic-bezier(0.34, 1.56, 0.64, 1),
        color     0.35s ease;
      position: relative;
      z-index: 3;
    }
    .honeycomb-node.is-hovered i {
      transform: translateY(-8px) scale(1.18);
      color: #1D4ED8;
    }

    /* ── TITLE ── */
    .honeycomb-node h4 {
      font-size: 1.05rem;
      font-weight: 800;
      color: var(--text);
      margin-bottom: 0.75rem;
      text-transform: uppercase;
      letter-spacing: 0.05em;
      position: relative;
      z-index: 3;
      transition: transform 0.45s cubic-bezier(0.34, 1.56, 0.64, 1),
                  color 0.3s ease;
    }
    .honeycomb-node.is-hovered h4 {
      transform: translateY(-4px);
      color: var(--primary);
    }

    /* ── DESCRIPTION ── */
    .honeycomb-node p {
      font-size: 0.85rem;
      color: var(--text-light);
      line-height: 1.6;
      position: relative;
      z-index: 3;
      transition: transform 0.45s cubic-bezier(0.34, 1.56, 0.64, 1),
                  opacity 0.3s ease;
    }
    .honeycomb-node.is-hovered p {
      transform: translateY(-2px);
    }

    /* Featured Node — slightly deeper base tint */
    .honeycomb-node.featured {
      background: linear-gradient(145deg, #E8F0FE 0%, #EBF4FF 100%);
      border: 1.5px solid rgba(37, 99, 235, 0.28);
    }

    /* ── RESPONSIVE ── */
    @media (max-width: 1000px) {
      .honeycomb-container {
        display: flex;
        flex-direction: column;
        align-items: center;
        gap: 1.5rem;
      }
      .honeycomb-node {
        width: 100%;
        max-width: 350px;
        height: auto;
        clip-path: none;
        border-radius: 24px;
        margin-top: 0 !important;
        padding: 2.5rem 1.5rem;
      }
      .honeycomb-node::after {
        clip-path: none;
        border-radius: 24px;
      }
      .honeycomb-node.is-hovered {
        transform: scale(1.03) translateY(-6px);
      }
      .honeycomb-container.grid-has-hover .honeycomb-node:not(.is-hovered) {
        transform: none;
        opacity: 0.75;
        filter: none;
      }
    }

    /* ── PROCESS ── */
    #process {
      background: var(--white);
    }

    .process-steps {
      max-width: 900px;
      margin: 4rem auto 0;
      display: flex;
      flex-direction: column;
      gap: 0;
    }

    .process-step {
      display: grid;
      grid-template-columns: 60px 1fr;
      gap: 2rem;
      align-items: start;
      padding-bottom: 3rem;
      position: relative;
    }

    .process-step:not(:last-child) .step-line-wrap::after {
      content: '';
      position: absolute;
      left: 29px;
      top: 60px;
      width: 2px;
      height: calc(100% - 60px);
      background: linear-gradient(to bottom, var(--primary), var(--secondary));
    }

    .step-dot {
      width: 60px;
      height: 60px;
      border-radius: 50%;
      background: var(--background);
      border: 2px solid var(--primary);
      display: flex;
      align-items: center;
      justify-content: center;
      font-family: 'Plus Jakarta Sans', sans-serif;
      font-size: 1.1rem;
      font-weight: 800;
      color: var(--teal2);
      flex-shrink: 0;
      position: relative;
      z-index: 1;
      transition: all 0.3s;
    }

    .process-step:hover .step-dot {
      background: var(--primary);
      color: var(--white);
      box-shadow: 0 0 0 8px rgba(59, 130, 246, 0.1);
    }

    .step-content {
      padding-top: 1rem;
    }

    .step-content h3 {
      font-size: 1.15rem;
      font-weight: 700;
      color: var(--navy);
      margin-bottom: 0.5rem;
    }

    .step-content p {
      font-size: 0.9rem;
      color: var(--text-light);
      line-height: 1.7;
    }

    /* ── TESTIMONIALS ── */
    #testimonials {
      background: #E6FFFA;
      /* Saturated Mint Tint */
      border-top: 1px solid rgba(5, 150, 105, 0.1);
    }

    .testi-grid {
      display: grid;
      grid-template-columns: repeat(2, 1fr);
      gap: 1.5rem;
      max-width: 1000px;
      margin: 3.5rem auto 0;
    }

    .testi-card {
      background: var(--white);
      border-radius: 18px;
      padding: 2.25rem;
      border: 1px solid rgba(11, 28, 53, 0.07);
      box-shadow: 0 4px 16px rgba(11, 28, 53, 0.05);
      transition: all 0.3s;
    }

    .testi-card:hover {
      transform: translateY(-4px);
      box-shadow: 0 12px 32px rgba(11, 28, 53, 0.1);
    }

    .quote-icon {
      font-size: 2rem;
      color: var(--primary);
      margin-bottom: 1rem;
      line-height: 1;
    }

    .testi-card p {
      font-size: 0.93rem;
      color: var(--text-light);
      line-height: 1.75;
      font-style: italic;
      margin-bottom: 1.5rem;
    }

    .testi-author {
      display: flex;
      align-items: center;
      gap: 0.85rem;
    }

    .author-av {
      width: 46px;
      height: 46px;
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
      font-family: 'Plus Jakarta Sans', sans-serif;
      font-size: 0.9rem;
      font-weight: 800;
      color: var(--white);
    }

    .author-name {
      font-weight: 600;
      font-size: 0.9rem;
      color: var(--navy);
    }

    .author-role {
      font-size: 0.78rem;
      color: var(--mid);
    }

    .stars {
      color: #F5A623;
      font-size: 0.8rem;
      margin-bottom: 3px;
    }

    /* ── CTA ── */
    #cta {
      background: #FFFFFF;
      position: relative;
      overflow: hidden;
      text-align: center;
      padding: 100px 5%;
      border-top: 1px solid rgba(0, 0, 0, 0.05);
    }

    #cta::before {
      content: '';
      position: absolute;
      inset: 0;
      background: radial-gradient(ellipse at center, rgba(111, 168, 166, 0.15) 0%, transparent 65%);
    }

    #cta .section-title {
      color: var(--navy);
      position: relative;
      z-index: 1;
      max-width: 700px;
      margin: 0 auto 1rem;
    }

    #cta .section-sub {
      color: var(--text-light);
      position: relative;
      z-index: 1;
      margin: 0 auto 2.5rem;
    }

    #cta .cta-btns {
      display: flex;
      gap: 1rem;
      justify-content: center;
      flex-wrap: wrap;
      position: relative;
      z-index: 1;
    }

    /* ── FOOTER ── */
    footer {
      background: var(--card);
      /* Technical Slate Finish */
      padding: 5rem 5% 2rem;
      border-top: 1px solid var(--border);
    }

    .footer-grid {
      display: grid;
      grid-template-columns: 2fr 1fr 1fr 1.5fr;
      gap: 3rem;
      max-width: 1200px;
      margin: 0 auto 3rem;
    }

    .footer-about .logo {
      font-size: 1.35rem;
      display: block;
      margin-bottom: 1rem;
    }

    .footer-about p {
      font-size: 0.85rem;
      color: #64748B;
      line-height: 1.7;
    }

    .footer-col h4 {
      font-family: 'Plus Jakarta Sans', sans-serif;
      font-size: 0.85rem;
      font-weight: 800;
      letter-spacing: 0.1em;
      text-transform: uppercase;
      color: var(--text);
      margin-bottom: 1.5rem;
    }

    .footer-col ul {
      list-style: none;
      display: flex;
      flex-direction: column;
      gap: 0.6rem;
    }

    .footer-col ul a {
      font-size: 0.88rem;
      color: var(--text-light);
      text-decoration: none;
      transition: color 0.2s;
    }

    .footer-col ul a:hover {
      color: var(--primary);
    }

    .footer-contact p {
      font-size: 0.85rem;
      color: #64748B;
      line-height: 1.8;
    }

    .footer-contact a {
      color: var(--primary);
      text-decoration: none;
    }

    .social-icons {
      display: flex;
      gap: 0.75rem;
      margin-top: 1.25rem;
    }

    .social-icons a {
      width: 36px;
      height: 36px;
      border-radius: 8px;
      background: #E2E8F0;
      display: flex;
      align-items: center;
      justify-content: center;
      color: var(--navy);
      font-size: 0.9rem;
      transition: all 0.2s;
      text-decoration: none;
    }

    .social-icons a:hover {
      background: var(--primary);
      color: var(--white);
    }

    .footer-bottom {
      max-width: 1200px;
      margin: 0 auto;
      padding-top: 2rem;
      border-top: 1px solid rgba(0, 0, 0, 0.05);
      display: flex;
      justify-content: space-between;
      align-items: center;
      flex-wrap: wrap;
      gap: 1rem;
    }

    .footer-bottom p {
      font-size: 0.8rem;
      color: #94A3B8;
    }

    .footer-divider {
      height: 1px;
      background: #E2E8F0;
    }

    /* ── SPOTLIGHT ── */
    .spotlight {
      position: fixed;
      width: 40vw;
      height: 40vw;
      background: radial-gradient(circle, rgba(0, 0, 0, 0.03) 0%, transparent 75%);
      border-radius: 50%;
      pointer-events: none;
      z-index: 1;
      transform: translate(-50%, -50%);
      transition: width 0.3s, height 0.3s;
      mix-blend-mode: multiply;
    }

    /* ── WORD REVEAL ── */
    .reveal-stagger span {
      display: inline-block;
      opacity: 0;
      transform: translateY(30px) scale(0.9);
      transition: all 0.8s cubic-bezier(0.34, 1.56, 0.64, 1);
    }

    .reveal-stagger.visible span {
      opacity: 1;
      transform: translateY(0) scale(1);
    }

    /* ── HIGH-ENERGY REVEALS ── */
    .reveal,
    .reveal-left,
    .reveal-right {
      opacity: 0;
      transform: translateY(40px) scale(0.95);
      transition: opacity 0.8s cubic-bezier(0.34, 1.56, 0.64, 1), transform 0.8s cubic-bezier(0.34, 1.56, 0.64, 1);
    }

    .reveal.visible,
    .reveal-left.visible,
    .reveal-right.visible {
      opacity: 1;
      transform: translateY(0) scale(1);
    }


    /* ── MICRO-ANIMS ── */
    @keyframes orbit {
      from {
        transform: rotate(0deg) translateX(3px) rotate(0deg);
      }

      to {
        transform: rotate(360deg) translateX(3px) rotate(-360deg);
      }
    }

    @keyframes glowPulse {

      0%,
      100% {
        filter: drop-shadow(0 0 5px rgba(111, 168, 166, 0.4));
      }

      50% {
        filter: drop-shadow(0 0 15px rgba(111, 168, 166, 0.8));
      }
    }

    .accent {
      animation: glowPulse 3s infinite;
    }

    .serve-icon i,
    .why-icon i,
    .svc-icon-wrap i {
      animation: orbit 4s linear infinite;
    }

    /* ── REVEAL ANIMATIONS ── */
    .reveal {
      opacity: 0;
      transform: translateY(40px);
      transition: opacity 0.7s cubic-bezier(0.2, 0.9, 0.3, 1), transform 0.7s cubic-bezier(0.2, 0.9, 0.3, 1);
    }

    .reveal.visible {
      opacity: 1;
      transform: translateY(0);
    }

    .reveal-left {
      opacity: 0;
      transform: translateX(-50px);
      transition: opacity 0.7s ease, transform 0.7s ease;
    }

    .reveal-left.visible {
      opacity: 1;
      transform: translateX(0);
    }

    .reveal-right {
      opacity: 0;
      transform: translateX(50px);
      transition: opacity 0.7s ease, transform 0.7s ease;
    }

    .reveal-right.visible {
      opacity: 1;
      transform: translateX(0);
    }

    /* stagger children */
    .stagger>* {
      opacity: 0;
      transform: translateY(30px);
      transition: opacity 0.6s ease, transform 0.6s ease;
    }

    .stagger.visible>*:nth-child(1) {
      opacity: 1;
      transform: translateY(0);
      transition-delay: 0s;
    }

    .stagger.visible>*:nth-child(2) {
      opacity: 1;
      transform: translateY(0);
      transition-delay: 0.12s;
    }

    .stagger.visible>*:nth-child(3) {
      opacity: 1;
      transform: translateY(0);
      transition-delay: 0.24s;
    }

    .stagger.visible>*:nth-child(4) {
      opacity: 1;
      transform: translateY(0);
      transition-delay: 0.36s;
    }

    /* ── RESPONSIVE ── */
    @media (max-width: 1024px) {

      .about-grid,
      .serve-grid,
      .services-grid,
      .footer-grid {
        grid-template-columns: 1fr 1fr;
      }

      .why-grid {
        grid-template-columns: 1fr 1fr;
      }

      .services-intro {
        grid-template-columns: 1fr;
        gap: 1.5rem;
      }
    }

    @media (max-width: 768px) {
      nav {
        display: none;
      }

      .hamburger {
        display: block;
      }

      .about-grid,
      .testi-grid {
        grid-template-columns: 1fr;
      }

      .serve-grid,
      .services-grid,
      .why-grid {
        grid-template-columns: 1fr 1fr;
      }

      .footer-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
      }

      .footer-bottom {
        flex-direction: column;
        text-align: center;
      }

      .hero h1 {
        font-size: 2.4rem;
      }
    }

    @media (max-width: 540px) {

      .serve-grid,
      .services-grid,
      .why-grid {
        grid-template-columns: 1fr;
      }

      .about-mini-cards {
        grid-template-columns: 1fr 1fr;
      }

      section {
        padding: 70px 5%;
      }
    }

    /* ========== ANIMATED STATUS BAR (LIGHT BLUE THEME) ========== */
    .stats-bar {
      background: linear-gradient(135deg, #E0F2FE 0%, #BAE6FD 100%);
      padding: 0.9rem 0;
      overflow: hidden;
      border-bottom: 1px solid rgba(37, 99, 235, 0.2);
      border-top: 1px solid rgba(37, 99, 235, 0.15);
      position: relative;
      z-index: 5;
      box-shadow: 0 4px 12px rgba(0, 0, 0, 0.02), inset 0 1px 0 rgba(255, 255, 255, 0.6);
    }

    .stats-bar::before {
      content: '';
      position: absolute;
      top: 0;
      left: -75%;
      width: 50%;
      height: 100%;
      background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.5), transparent);
      transform: skewX(-20deg);
      animation: shimmerMove 5s infinite ease-in-out;
      pointer-events: none;
    }

    @keyframes shimmerMove {
      0% {
        left: -75%;
      }

      100% {
        left: 125%;
      }
    }

    .stats-track {
      display: flex;
      gap: 4rem;
      animation: ticker 32s linear infinite;
      width: max-content;
    }

    @keyframes ticker {
      0% {
        transform: translateX(0);
      }

      100% {
        transform: translateX(-50%);
      }
    }

    .stat-item {
      display: flex;
      align-items: center;
      gap: 0.6rem;
      white-space: nowrap;
      font-size: 0.9rem;
      font-weight: 700;
      color: #0C4A6E;
      background: rgba(255, 255, 255, 0.55);
      backdrop-filter: blur(4px);
      padding: 0.3rem 1rem;
      border-radius: 60px;
      transition: all 0.25s ease;
      box-shadow: 0 1px 2px rgba(0, 0, 0, 0.02);
    }

    .stat-item i {
      font-size: 0.85rem;
      color: #0284C7;
      transition: transform 0.2s;
    }

    .stat-item:hover {
      background: rgba(255, 255, 255, 0.85);
      transform: translateY(-2px);
      box-shadow: 0 8px 18px rgba(2, 132, 199, 0.12);
    }

    .stat-item:hover i {
      transform: scale(1.15);
      color: #2563EB;
    }

    /* ── CALCULATOR SECTION ── */
    #calculator {
      background: #FFFFFF;
      border-top: 1px solid var(--border);
      padding: 100px 5%;
    }

    .calc-grid {
      display: grid;
      grid-template-columns: 1fr 1.2fr;
      gap: 4rem;
      max-width: 1200px;
      margin: 4rem auto 0;
      align-items: center;
    }

    .calc-inputs {
      background: var(--card);
      border: 1px solid var(--border);
      border-radius: 24px;
      padding: 3rem;
      box-shadow: var(--shadow);
    }

    .calc-group {
      margin-bottom: 2.5rem;
    }

    .calc-group:last-child {
      margin-bottom: 0;
    }

    .calc-label {
      display: flex;
      justify-content: space-between;
      font-weight: 700;
      color: var(--text);
      margin-bottom: 1rem;
      font-size: 1.05rem;
    }

    .calc-label span.val {
      color: var(--primary);
      font-family: 'Plus Jakarta Sans', sans-serif;
      font-size: 1.15rem;
    }

    .calc-slider {
      width: 100%;
      height: 6px;
      background: var(--border);
      border-radius: 3px;
      outline: none;
      -webkit-appearance: none;
      appearance: none;
      accent-color: var(--primary);
    }

    .calc-results {
      display: flex;
      flex-direction: column;
      gap: 1.5rem;
    }

    .calc-card {
      background: #FFFFFF;
      border: 1px solid var(--border);
      border-radius: 20px;
      padding: 2rem 2.5rem;
      transition: all 0.3s;
      box-shadow: 0 4px 12px rgba(0, 0, 0, 0.02);
    }

    .calc-card:hover {
      transform: translateY(-3px);
      box-shadow: 0 15px 30px rgba(15, 23, 42, 0.08);
    }

    .calc-card.leakage {
      border-left: 5px solid var(--accent-warm);
    }

    .calc-card.recovery {
      border-left: 5px solid var(--accent);
      background: #F0FDF4; /* light mint tint */
    }

    .calc-card.boost {
      border-left: 5px solid var(--primary);
      background: #F0F9FF; /* light azure tint */
    }

    .calc-card .label {
      font-size: 0.85rem;
      font-weight: 700;
      text-transform: uppercase;
      letter-spacing: 0.05em;
      color: var(--text-light);
      margin-bottom: 0.5rem;
    }

    .calc-card .amount {
      font-family: 'Plus Jakarta Sans', sans-serif;
      font-size: 2.2rem;
      font-weight: 800;
      color: var(--text);
      line-height: 1.1;
    }

    .calc-card.leakage .amount {
      color: var(--accent-warm);
    }

    .calc-card.recovery .amount {
      color: var(--accent);
    }

    .calc-card.boost .amount {
      color: var(--primary);
    }

    .calc-note {
      font-size: 0.85rem;
      color: #64748B;
      line-height: 1.5;
      margin-top: 1rem;
      text-align: center;
    }

    /* ── FAQ SECTION ── */
    #faq {
      background: #F8FAFC;
      padding: 100px 5%;
      border-top: 1px solid var(--border);
    }

    .faq-container {
      max-width: 800px;
      margin: 3.5rem auto 0;
      display: flex;
      flex-direction: column;
      gap: 1.25rem;
    }

    .faq-item {
      background: #FFFFFF;
      border: 1px solid var(--border);
      border-radius: 16px;
      overflow: hidden;
      box-shadow: 0 2px 8px rgba(0,0,0,0.01);
      transition: all 0.3s;
    }

    .faq-item:hover {
      border-color: var(--primary-light);
      box-shadow: 0 10px 20px rgba(0,0,0,0.03);
    }

    .faq-question {
      padding: 1.5rem 2rem;
      display: flex;
      justify-content: space-between;
      align-items: center;
      cursor: pointer;
      font-weight: 700;
      font-size: 1.05rem;
      color: var(--text);
      user-select: none;
      transition: background-color 0.2s;
    }

    .faq-question:hover {
      background-color: var(--card);
    }

    .faq-question i {
      color: var(--primary);
      font-size: 0.9rem;
      transition: transform 0.3s ease;
    }

    .faq-answer {
      max-height: 0;
      overflow: hidden;
      padding: 0 2rem;
      color: var(--text-light);
      line-height: 1.7;
      font-size: 0.95rem;
      border-top: 0 solid transparent;
      transition: max-height 0.4s ease, padding 0.4s ease;
    }

    @media (max-width: 900px) {
      .calc-grid {
        grid-template-columns: 1fr;
        gap: 2.5rem;
      }
    }

    /* ── LANGUAGE SWITCHER ── */
    .lang-switch {
      display: flex;
      gap: 0.4rem;
      align-items: center;
    }
    .lang-switch button {
      background: none;
      border: none;
      color: #94A3B8;
      font-size: 0.8rem;
      font-weight: 700;
      cursor: pointer;
      padding: 0.2rem 0.4rem;
      border-radius: 4px;
      transition: all 0.2s;
    }
    .lang-switch button.active {
      color: var(--primary);
      background: rgba(37, 99, 235, 0.08);
    }
    .lang-switch button:hover {
      color: var(--primary);
    }

    /* ── BILINGUAL RTL OVERRIDES ── */
    html[dir="rtl"] {
      text-align: right;
    }
    html[dir="rtl"] body {
      font-family: 'Plus Jakarta Sans', sans-serif;
    }
    html[dir="rtl"] header,
    html[dir="rtl"] nav,
    html[dir="rtl"] .hero-ctas,
    html[dir="rtl"] .about-mini-cards,
    html[dir="rtl"] .footer-grid,
    html[dir="rtl"] .footer-bottom,
    html[dir="rtl"] .footer-bottom div,
    html[dir="rtl"] .testi-author,
    html[dir="rtl"] .contact-info-item {
      flex-direction: row-reverse;
    }
    html[dir="rtl"] nav {
      direction: rtl;
    }
    html[dir="rtl"] .btn-nav {
      margin-left: 0;
      margin-right: 0.75rem;
    }
    html[dir="rtl"] .about-grid,
    html[dir="rtl"] .footer-grid {
      direction: rtl;
    }
    html[dir="rtl"] .testi-card {
      text-align: right;
    }
    html[dir="rtl"] .testi-author {
      text-align: right;
      display: flex;
      justify-content: flex-start;
      gap: 1rem;
    }
    html[dir="rtl"] .faq-question {
      flex-direction: row-reverse;
      text-align: right;
    }
    html[dir="rtl"] .faq-question i {
      transform: rotate(0deg);
    }
    html[dir="rtl"] .faq-item.active .faq-question i {
      transform: rotate(90deg);
    }
    html[dir="rtl"] .lang-switch {
      flex-direction: row !important;
    }
    html[dir="rtl"] .about-mini-cards .mini-card {
      text-align: right;
    }
    html[dir="rtl"] .about-mini-cards .mini-card .icon {
      margin-left: auto;
      margin-right: 0;
    }
    html[dir="rtl"] .timeline-container {
      direction: rtl;
    }
    html[dir="rtl"] .narrative-item {
      direction: rtl;
      text-align: right;
    }
    html[dir="rtl"] .contact-grid {
      direction: rtl;
    }
    html[dir="rtl"] .contact-form {
      text-align: right;
    }
    html[dir="rtl"] .contact-form label {
      text-align: right;
    }

    /* ── RTL COVERFLOW CAROUSEL OVERRIDES ── */
    html[dir="rtl"] .carousel-card.prev {
      transform: translate3d(330px, 0, 0) rotateY(-28deg) scale(0.85);
    }
    html[dir="rtl"] .carousel-card.next {
      transform: translate3d(-330px, 0, 0) rotateY(28deg) scale(0.85);
    }
    html[dir="rtl"] .carousel-card.far-prev {
      transform: translate3d(540px, 0, -100px) rotateY(-40deg) scale(0.7);
    }
    html[dir="rtl"] .carousel-card.far-next {
      transform: translate3d(-540px, 0, -100px) rotateY(40deg) scale(0.7);
    }
    html[dir="rtl"] .carousel-card.hidden-left {
      transform: translate3d(800px, 0, -200px) rotateY(-50deg) scale(0.5);
    }
    html[dir="rtl"] .carousel-card.hidden-right {
      transform: translate3d(-800px, 0, -200px) rotateY(50deg) scale(0.5);
    }


    /* ── SERVICE MODAL STYLES ── */
    .service-modal {
      position: fixed;
      inset: 0;
      z-index: 2000;
      display: flex;
      align-items: center;
      justify-content: center;
      opacity: 0;
      pointer-events: none;
      transition: opacity 0.4s cubic-bezier(0.25, 1, 0.33, 1);
    }

    .service-modal.active {
      opacity: 1;
      pointer-events: auto;
    }

    .modal-overlay {
      position: absolute;
      inset: 0;
      background: rgba(15, 23, 42, 0.6);
      backdrop-filter: blur(8px);
      transition: opacity 0.4s;
    }

    .modal-content {
      position: relative;
      width: 650px;
      max-width: 90%;
      max-height: 85vh;
      background: #FFFFFF;
      border: 1px solid var(--border);
      border-radius: 32px;
      padding: 3rem 2.5rem;
      box-sizing: border-box;
      z-index: 2;
      overflow-y: auto;
      box-shadow: 0 30px 60px rgba(15, 23, 42, 0.15);
      transform: scale(0.9) translateY(20px);
      transition: transform 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
    }

    .service-modal.active .modal-content {
      transform: scale(1) translateY(0);
    }

    .modal-close {
      position: absolute;
      top: 1.5rem;
      right: 1.5rem;
      width: 40px;
      height: 40px;
      border-radius: 50%;
      background: #F1F5F9;
      border: none;
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 1.2rem;
      color: var(--text-light);
      cursor: pointer;
      transition: all 0.2s;
    }

    .modal-close:hover {
      background: var(--text);
      color: var(--white);
    }

    .modal-body {
      display: flex;
      flex-direction: column;
      gap: 1.5rem;
    }

    .modal-num {
      font-size: 1.5rem;
      font-weight: 800;
      color: var(--primary-light);
      opacity: 0.8;
      font-family: 'Plus Jakarta Sans', sans-serif;
    }

    .modal-icon-wrap {
      width: 60px;
      height: 60px;
      border-radius: 16px;
      background: rgba(37, 99, 235, 0.08);
      color: var(--primary);
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 1.75rem;
    }

    .modal-title {
      font-size: 1.75rem;
      font-weight: 800;
      color: var(--text);
      font-family: 'Plus Jakarta Sans', sans-serif;
    }

    .modal-short-desc {
      font-size: 1.05rem;
      color: var(--text-light);
      line-height: 1.6;
      font-weight: 500;
      border-left: 3px solid var(--primary);
      padding-left: 1rem;
    }

    .modal-detailed-content {
      font-size: 0.95rem;
      color: var(--text-light);
      line-height: 1.8;
      margin-top: 0.5rem;
    }

    .modal-detailed-content h4 {
      font-size: 1.1rem;
      font-weight: 700;
      color: var(--text);
      margin-bottom: 0.75rem;
      margin-top: 1rem;
    }

    .modal-detailed-content ul {
      list-style-type: none;
      padding: 0;
      margin: 1rem 0;
      display: flex;
      flex-direction: column;
      gap: 0.75rem;
    }

    .modal-detailed-content li {
      position: relative;
      padding-left: 1.75rem;
    }

    .modal-detailed-content li::before {
      content: "✓";
      position: absolute;
      left: 0;
      color: #10B981;
      font-weight: bold;
    }

    /* Accent overrides for modal */
    .service-modal.c-indigo .modal-icon-wrap {
      background: rgba(99, 102, 241, 0.08);
      color: #6366F1;
    }
    .service-modal.c-indigo .modal-short-desc {
      border-color: #6366F1;
    }
    .service-modal.c-indigo .modal-num {
      color: #6366F1;
    }
    
    .service-modal.c-teal .modal-icon-wrap {
      background: rgba(20, 184, 166, 0.08);
      color: #14B8A6;
    }
    .service-modal.c-teal .modal-short-desc {
      border-color: #14B8A6;
    }
    .service-modal.c-teal .modal-num {
      color: #14B8A6;
    }

    .service-modal.c-amber .modal-icon-wrap {
      background: rgba(245, 158, 11, 0.08);
      color: #F59E0B;
    }
    .service-modal.c-amber .modal-short-desc {
      border-color: #F59E0B;
    }
    .service-modal.c-amber .modal-num {
      color: #F59E0B;
    }

    .service-modal.c-rose .modal-icon-wrap {
      background: rgba(244, 63, 94, 0.08);
      color: #F43F5E;
    }
    .service-modal.c-rose .modal-short-desc {
      border-color: #F43F5E;
    }
    .service-modal.c-rose .modal-num {
      color: #F43F5E;
    }

    /* RTL specific overrides for modal */
    html[dir="rtl"] .modal-close {
      right: auto;
      left: 1.5rem;
    }
    html[dir="rtl"] .modal-short-desc {
      border-left: none;
      border-right: 3px solid var(--primary);
      padding-left: 0;
      padding-right: 1rem;
      text-align: right;
    }
    html[dir="rtl"] .service-modal.c-indigo .modal-short-desc {
      border-right-color: #6366F1;
    }
    html[dir="rtl"] .service-modal.c-teal .modal-short-desc {
      border-right-color: #14B8A6;
    }
    html[dir="rtl"] .service-modal.c-amber .modal-short-desc {
      border-right-color: #F59E0B;
    }
    html[dir="rtl"] .service-modal.c-rose .modal-short-desc {
      border-right-color: #F43F5E;
    }
    html[dir="rtl"] .modal-detailed-content li {
      padding-left: 0;
      padding-right: 1.75rem;
      text-align: right;
    }
    html[dir="rtl"] .modal-detailed-content li::before {
      left: auto;
      right: 0;
    }
    html[dir="rtl"] .modal-detailed-content p,
    html[dir="rtl"] .modal-detailed-content h4 {
      text-align: right;
    }

