
:root {
      --bg: #f7f9fc;
      --bg2: #eef3fa;
      --bg3: #e4ecf7;
      --surface: #ffffff;
      --surface2: #f0f5fb;
      --border: #dce6f5;
      --border2: #c8d8ef;
      --accent: #1a5fb4;
      --accent-mid: #2d7dd2;
      --accent-light: #e3eeff;
      --accent-xlight: #f0f5ff;
      --accent2: #0ea5e9;
      --accent2-light: #e0f4fe;
      --indigo: #4f46e5;
      --indigo-light: #eef2ff;
      --sky: #0284c7;
      --text: #0d1b2e;
      --text-mid: #354a6a;
      --text-muted: #7a90b0;
      --text-dim: #b8cae0;
      --shadow-sm: 0 1px 3px rgba(10, 40, 80, 0.07), 0 1px 2px rgba(10, 40, 80, 0.04);
      --shadow: 0 4px 16px rgba(10, 40, 80, 0.08), 0 1px 4px rgba(10, 40, 80, 0.04);
      --shadow-lg: 0 12px 40px rgba(10, 40, 80, 0.1), 0 4px 12px rgba(10, 40, 80, 0.05);
      --shadow-xl: 0 24px 64px rgba(10, 40, 80, 0.12), 0 8px 20px rgba(10, 40, 80, 0.06);
      --radius: 14px;
      --radius-sm: 8px;
      --radius-lg: 22px;
      --logo-filter: grayscale(100%) opacity(0.45);
      --logo-filter-hover: grayscale(0%) opacity(1);
      --speed: 38s;
      --speed-reverse: 42s;
    }

    *,
    *::before,
    *::after {
      margin: 0;
      padding: 0;
      box-sizing: border-box;
    }

    html {
      scroll-behavior: smooth;
    }

    body {
      font-family: 'Instrument Sans', sans-serif;
      background: var(--bg);
      color: var(--text);
      overflow-x: hidden;
      -webkit-font-smoothing: antialiased;
    }

    h1,
    h2,
    h3,
    h4 {
      font-family: 'Google Sans Flex', sans-serif;
      font-weight: 500;
    }

    ::-webkit-scrollbar {
      width: 5px;
    }

    ::-webkit-scrollbar-track {
      background: var(--bg2);
    }

    ::-webkit-scrollbar-thumb {
      background: var(--border2);
      border-radius: 10px;
    }

    /* ── NAVBAR ── */
    nav {
      position: fixed;
      top: 0;
      left: 0;
      right: 0;
      z-index: 1000;
      height: 85px;
      display: flex;
      align-items: center;
      justify-content: space-between;
      padding: 0 5%;
      background: transparent;
      backdrop-filter: blur(18px);
      border-bottom: 1px solid transparent;
      transition: border-color 0.3s, background 0.3s, box-shadow 0.3s;
    }

    nav.scrolled {
      border-bottom-color: var(--border);
      background: rgba(247, 249, 252, 0.18);
      backdrop-filter: blur(20px);
      box-shadow: 0 2px 20px rgba(10, 40, 80, 0.06);
    }

    .nav-logo {
      display: flex;
      align-items: center;
      gap: 9px;
      text-decoration: none;
    }

    .nav-logo-mark {
      width: 36px;
      height: 36px;
      border-radius: 9px;
      background: var(--accent);
      border-bottom-color: 2px solid #0284c7;
      display: flex;
      align-items: center;
      justify-content: center;
      box-shadow: 0 4px 12px rgba(26, 95, 180, 0.3);
    }

    .nav-brand {
      font-family: 'Google Sans Flex', sans-serif;
      font-weight: 500;
      font-size: 1.05rem;
      color: var(--text);
      letter-spacing: -0.02em;
      display: flex;
      flex-direction: column;
      text-align: center;
    }

    .nav-brand span {
      color: var(--accent);
    }

    .nav-links {
      display: flex;
      align-items: center;
      gap: 30px;
      list-style: none;
    }

    .nav-links a {
      color: var(--text-muted);
      text-decoration: none;
      font-size: 0.875rem;
      font-weight: 500;
      transition: color 0.2s;
    }

    .nav-links a:hover {
      color: var(--text);
    }

    .nav-pill {
      background: linear-gradient(135deg, var(--accent), var(--accent-mid)) !important;
      color: white !important;
      padding: 8px 20px;
      border-radius: 100px;
      font-size: 0.85rem !important;
      font-weight: 600 !important;
      transition: all 0.25s !important;
      box-shadow: 0 4px 14px rgba(26, 95, 180, 0.3);
    }

    .nav-pill:hover {
      transform: translateY(-1px);
      box-shadow: 0 6px 20px rgba(26, 95, 180, 0.4) !important;
    }

    .hamburger {
      display: none;
      flex-direction: column;
      gap: 5px;
      cursor: pointer;
      background: none;
      border: none;
      padding: 5px;
    }

    .hamburger span {
      display: block;
      width: 22px;
      height: 2px;
      background: var(--text);
      border-radius: 2px;
      transition: all 0.3s;
      transform-origin: center;
    }

    .hamburger.active span:nth-child(1) {
      transform: translateY(7px) rotate(45deg);
    }

    .hamburger.active span:nth-child(2) {
      opacity: 0;
    }

    .hamburger.active span:nth-child(3) {
      transform: translateY(-7px) rotate(-45deg);
    }

    .mobile-nav {
      position: fixed;
      top: 68px;
      left: 0;
      right: 0;
      bottom: 0;
      z-index: 999;
      background: var(--bg);
      padding: 40px 6%;
      display: flex;
      flex-direction: column;
      gap: 2px;
      transform: translateY(-110%);
      transition: transform 0.45s cubic-bezier(0.77, 0, 0.175, 1);
      border-top: 1px solid var(--border);
    }

    .mobile-nav.open {
      transform: translateY(0);
    }

    .mobile-nav a {
      font-family: 'Google Sans Flex', sans-serif;
      font-size: 1.9rem;
      font-weight: 700;
      color: var(--text);
      text-decoration: none;
      padding: 14px 0;
      border-bottom: 1px solid var(--border);
      display: flex;
      justify-content: space-between;
      align-items: center;
      opacity: 0;
      transform: translateY(16px);
      transition: color 0.2s, opacity 0.3s, transform 0.3s;
    }

    .mobile-nav.open a {
      opacity: 1;
      transform: translateY(0);
    }

    .mobile-nav.open a:nth-child(1) {
      transition-delay: 0.04s
    }

    .mobile-nav.open a:nth-child(2) {
      transition-delay: 0.08s
    }

    .mobile-nav.open a:nth-child(3) {
      transition-delay: 0.12s
    }

    .mobile-nav.open a:nth-child(4) {
      transition-delay: 0.16s
    }

    .mobile-nav.open a:nth-child(5) {
      transition-delay: 0.20s
    }

    .mobile-nav.open a:nth-child(6) {
      transition-delay: 0.24s
    }

    .mobile-nav a:hover {
      color: var(--accent);
    }

    .mob-cta {
      background: linear-gradient(135deg, var(--accent), var(--accent-mid)) !important;
      color: white !important;
      padding: 18px 28px !important;
      border-radius: 12px !important;
      margin-top: 24px;
      border-bottom: none !important;
      font-size: 1.1rem !important;
      justify-content: center !important;
      box-shadow: 0 6px 20px rgba(26, 95, 180, 0.3);
    }

    /* ── HERO ── */
    .hero {
      min-height: 100vh;
      padding: 110px 5% 80px;
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 60px;
      align-items: center;
      position: relative;
      overflow: hidden;
    }

    .hero-svg-bg {
      position: absolute;
      inset: 0;
      width: 100%;
      height: 100%;
      pointer-events: none;
      z-index: 0;
    }

     .mh-root {
    display: none;
    font-family: 'Inter', 'Helvetica Neue', Arial, sans-serif;
    -webkit-font-smoothing: antialiased;
  }

    .hero-content {
      margin-top: 50px;
      position: relative;
      z-index: 2;
    }

    .hero-eyebrow {
      display: inline-flex;
      align-items: center;
      gap: 8px;
      background: var(--accent-light);
      border: 1px solid rgba(26, 95, 180, 0.18);
      padding: 5px 14px;
      border-radius: 100px;
      font-size: 0.75rem;
      font-weight: 600;
      color: var(--accent);
      letter-spacing: 0.07em;
      margin-bottom: 26px;
      opacity: 0;
      animation: slideUp 0.7s 0.1s forwards;
    }

    .hero-eyebrow::before {
      content: '';
      width: 6px;
      height: 6px;
      background: var(--accent);
      border-radius: 50%;
      animation: blink 2s infinite;
    }

    @keyframes blink {

      0%,
      100% {
        opacity: 1
      }

      50% {
        opacity: 0.3
      }
    }

    .hero h1 {
      font-size: clamp(2.8rem, 5.5vw, 5rem);
      font-weight: 600;
      line-height: 1.05;
      letter-spacing: -0.04em;
      margin-bottom: 24px;
      opacity: 0;
      animation: slideUp 0.7s 0.2s forwards;
    }

    .hero h1 em {
      font-family: 'Instrument Serif', serif;
      font-style: italic;
      font-weight: 400;
      background: linear-gradient(135deg, var(--accent), var(--accent2));
      -webkit-background-clip: text;
      -webkit-text-fill-color: transparent;
      background-clip: text;
    }

    .hero-desc {
      font-size: 1.08rem;
      line-height: 1.8;
      color: var(--text-mid);
      max-width: 500px;
      margin-bottom: 40px;
      opacity: 0;
      animation: slideUp 0.7s 0.35s forwards;
    }

    .hero-actions {
      display: flex;
      gap: 12px;
      flex-wrap: wrap;
      opacity: 0;
      animation: slideUp 0.7s 0.5s forwards;
    }

    .btn-primary {
      display: inline-flex;
      align-items: center;
      gap: 9px;
      background: linear-gradient(135deg, var(--accent), var(--accent-mid));
      color: white;
      padding: 14px 28px;
      border-radius: 10px;
      font-family: 'Bricolage Grotesque', sans-serif;
      font-weight: 600;
      font-size: 0.9rem;
      text-decoration: none;
      transition: all 0.25s;
      box-shadow: 0 6px 20px rgba(26, 95, 180, 0.3);
    }

    .btn-primary:hover {
      transform: translateY(-2px);
      box-shadow: 0 10px 30px rgba(26, 95, 180, 0.4);
    }

    .btn-ghost {
      display: inline-flex;
      align-items: center;
      gap: 9px;
      background: var(--surface);
      color: var(--text);
      padding: 14px 28px;
      border-radius: 10px;
      border: 1.5px solid var(--border2);
      font-family: 'Bricolage Grotesque', sans-serif;
      font-weight: 600;
      font-size: 0.9rem;
      text-decoration: none;
      transition: all 0.25s;
      box-shadow: var(--shadow-sm);
    }

    .btn-ghost:hover {
      border-color: var(--accent);
      color: var(--accent);
      transform: translateY(-2px);
      box-shadow: var(--shadow);
    }

    .hero-stats {
      display: flex;
      gap: 40px;
      margin-top: 56px;
      padding-top: 36px;
      border-top: 1px solid var(--border);
      opacity: 0;
      animation: slideUp 0.7s 0.65s forwards;
    }

    .stat-v {
      display: flex;
      flex-direction: column;
      align-items: center;
    }

    .stat-n {
      font-family: 'Bricolage Grotesque', sans-serif;
      font-size: 2.1rem;
      font-weight: 800;
      line-height: 1;
      color: var(--text);
    }

    .stat-n sup {
      font-size: 1rem;
      color: var(--accent);
    }

    .stat-l {
      font-size: 0.78rem;
      color: var(--text-muted);
      margin-top: 4px;
      text-transform: uppercase;
      letter-spacing: 0.06em;
    }

    /* HERO ORBIT */
    .hero-visual {
      position: relative;
      height: 520px;
      opacity: 0;
      animation: fadeIn 1s 0.4s forwards;
      z-index: 2;
    }

    @keyframes fadeIn {
      from {
        opacity: 0
      }

      to {
        opacity: 1
      }
    }

    .orbit-center {
      position: absolute;
      top: 50%;
      left: 50%;
      transform: translate(-50%, -50%);
      width: 160px;
      height: 160px;
      border-radius: 26px;
      background: transparent;
      
      display: flex;
      flex-direction: column;
      align-items: center;
      justify-content: center;
      gap: 8px;
      z-index: 10;
    }

    .orbit-center-label {
      font-family: 'Bricolage Grotesque', sans-serif;
      font-weight: 700;
      font-size: 0.85rem;
      color: rgb(255, 255, 255);
    }

    .orbit-center-sub {
      font-size: 0.7rem;
      color: rgba(255, 255, 255, 0.7);
    }

    .orbit-ring {
      position: absolute;
      top: 50%;
      left: 50%;
      border-radius: 50%;
      border: 1px dashed var(--border2);
      transform: translate(-50%, -50%);
      pointer-events: none;
    }

    .orbit-ring-1 {
      width: 280px;
      height: 280px;
      animation: spinOrbit 18s linear infinite;
    }

    .orbit-ring-2 {
      width: 430px;
      height: 430px;
      animation: spinOrbit 32s linear infinite reverse;
    }

    @keyframes spinOrbit {
      from {
        transform: translate(-50%, -50%) rotate(0deg)
      }

      to {
        transform: translate(-50%, -50%) rotate(360deg)
      }
    }

    .orbit-card {
      position: absolute;
      width: 110px;
      background: var(--surface);
      border: 1px solid var(--border);
      border-radius: 12px;
      padding: 11px;
      box-shadow: var(--shadow-lg);
      display: flex;
      flex-direction: column;
      align-items: center;
      gap: 5px;
      text-align: center;
      animation: counterSpin 18s linear infinite;
    }

    .orbit-ring-2 .orbit-card {
      animation-duration: 32s;
      animation-direction: reverse;
    }

    @keyframes counterSpin {
      from {
        transform: rotate(0deg)
      }

      to {
        transform: rotate(-360deg)
      }
    }

    .oc-icon {
      width: 34px;
      height: 34px;
      border-radius: 9px;
      display: flex;
      align-items: center;
      justify-content: center;
    }

    .oc-label {
      font-size: 0.68rem;
      font-weight: 600;
      color: var(--text-mid);
      line-height: 1.3;
    }

    .ring-1-card-1 {
      top: -14px;
      left: 50%;
      transform: translateX(-50%);
    }

    .ring-1-card-2 {
      bottom: -14px;
      left: 50%;
      transform: translateX(-50%);
    }

    .ring-2-card-1 {
      top: 50%;
      left: -14px;
      transform: translateY(-50%);
    }

    .ring-2-card-2 {
      top: 8px;
      right: -8px;
    }

    .ring-2-card-3 {
      bottom: 8px;
      left: -8px;
    }

    @keyframes slideUp {
      from {
        opacity: 0;
        transform: translateY(22px)
      }

      to {
        opacity: 1;
        transform: translateY(0)
      }
    }


    /* ── MARQUEE TRACK ── */
    .marquee-outer {
      position: relative;
      overflow: hidden;
      width: 100%;
    }

    /* Fade edges */
    .marquee-outer::before,
    .marquee-outer::after {
      content: '';
      position: absolute;
      top: 0;
      bottom: 0;
      width: clamp(60px, 10vw, 140px);
      z-index: 2;
      pointer-events: none;
    }

    .marquee-outer::before {
      left: 0;
      background: linear-gradient(to right, var(--bg), transparent);
    }

    .marquee-outer::after {
      right: 0;
      background: linear-gradient(to left, var(--bg), transparent);
    }

    .marquee-track {
      display: flex;
      align-items: center;
      width: max-content;
      gap: 0;
      animation: scroll-left var(--speed) linear infinite;
    }

    .marquee-track.reverse {
      display: flex;
      align-items: center;
      width: max-content;
      gap: 0;
      animation: scroll-right var(--speed-reverse) linear infinite;
    }

    /* Pause on hover */
    .marquee-outer:hover .marquee-track {
      animation-play-state: paused;
    }

    @keyframes scroll-left {
      from {
        transform: translateX(0);
      }

      to {
        transform: translateX(-50%);
      }
    }

    @keyframes scroll-right {
      from {
        transform: translateX(-50%);
      }

      to {
        transform: translateX(0);
      }
    }

    /* ── LOGO CARD ── */
    .logo-card {
      display: flex;
      align-items: center;
      justify-content: center;
      padding: 0 2.4rem;
      height: 80px;
      flex-shrink: 0;
      position: relative;
    }

    /* Thin divider between logos */
    .logo-card::after {
      content: '';
      position: absolute;
      right: 0;
      top: 50%;
      transform: translateY(-50%);
      height: 24px;
      width: 1px;
      background: var(--border);
    }

    .logo-card svg,
    .logo-card img {
      height: 28px;
      width: auto;
      max-width: 120px;
      filter: var(--logo-filter);
      transition: filter 0.35s ease, transform 0.35s ease;
      display: block;
      object-fit: contain;
    }

    .logo-card:hover svg,
    .logo-card:hover img {
      filter: var(--logo-filter-hover);
      transform: scale(1.07);
    }


    /* ── SECTION COMMONS ── */
    section {
      padding: 96px 5%;
    }

    .s-label {
      display: inline-flex;
      align-items: center;
      gap: 8px;
      font-size: 0.72rem;
      font-weight: 700;
      letter-spacing: 0.12em;
      text-transform: uppercase;
      color: var(--accent);
      margin-bottom: 16px;
    }

    .s-label::before {
      content: '';
      width: 20px;
      height: 2px;
      background: linear-gradient(90deg, var(--accent), var(--accent2));
      border-radius: 2px;
    }

    .s-title {
      font-size: clamp(1.9rem, 3.5vw, 3rem);
      font-weight: 500;
      letter-spacing: -0.03em;
      line-height: 1.1;
      margin-bottom: 18px;
    }

    .s-title em {
      font-family: 'Instrument Serif', serif;
      font-style: italic;
      font-weight: 400;
      background: linear-gradient(135deg, var(--accent), var(--accent2));
      -webkit-background-clip: text;
      -webkit-text-fill-color: transparent;
      background-clip: text;
    }

    .s-desc {
      font-size: 1rem;
      line-height: 1.8;
      color: var(--text-mid);
      max-width: 540px;
    }

    .reveal {
      opacity: 0;
      transform: translateY(26px);
      transition: opacity 0.65s ease, transform 0.65s ease;
    }

    .reveal.visible {
      opacity: 1;
      transform: translateY(0);
    }

    /* ── SERVICES ── */
    #services {
      background: var(--bg2);
      position: relative;
      overflow: hidden;
    }

    .service-card-img{height: 35px; }

    .services-head {
      display: flex;
      justify-content: space-between;
      align-items: flex-end;
      margin-bottom: 52px;
      flex-wrap: wrap;
      gap: 24px;
      position: relative;
      z-index: 1;
    }

    .services-grid {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 20px;
      position: relative;
      z-index: 1;
    }

    .svc-card {
      background: var(--surface);
      border: 1px solid var(--border);
      border-radius: var(--radius-lg);
      padding: 32px;
      transition: all 0.32s;
      position: relative;
      overflow: hidden;
    }

    .svc-card-glow {
      position: absolute;
      top: -60px;
      right: -60px;
      width: 160px;
      height: 160px;
      border-radius: 50%;
      opacity: 0;
      transition: opacity 0.4s;
      pointer-events: none;
    }

    .svc-card:hover .svc-card-glow {
      opacity: 1;
    }

    .svc-card:hover {
      transform: translateY(-6px);
      box-shadow: var(--shadow-lg);
    }

    .svc-top-bar {
      height: 3px;
      border-radius: 100px;
      margin-bottom: 24px;
      background: linear-gradient(90deg, var(--accent), var(--accent2));
    }

    .svc-num {
      font-size: 0.7rem;
      font-weight: 700;
      color: var(--text-dim);
      letter-spacing: 0.1em;
      margin-bottom: 16px;
    }

    .svc-icon-wrap {
      width: 56px;
      height: 56px;
      border-radius: 14px;
      display: flex;
      align-items: center;
      justify-content: center;
      margin-bottom: 20px;
    }

    .svc-card h3 {
      font-size: 1.2rem;
      font-weight: 700;
      letter-spacing: -0.02em;
      margin-bottom: 12px;
    }

    .svc-card p {
      font-size: 0.875rem;
      line-height: 1.75;
      color: var(--text-mid);
      margin-bottom: 24px;
    }

    .svc-tags {
      display: flex;
      flex-wrap: wrap;
      gap: 6px;
    }

    .s-tag {
      background: var(--bg2);
      border: 1px solid var(--border);
      padding: 3px 10px;
      border-radius: 100px;
      font-size: 0.7rem;
      color: var(--text-muted);
      font-weight: 500;
    }

    .svc-link {
      display: inline-flex;
      align-items: center;
      gap: 6px;
      margin-top: 18px;
      font-size: 0.82rem;
      font-weight: 600;
      color: var(--accent);
      text-decoration: none;
      transition: gap 0.2s;
    }

    .svc-link:hover {
      gap: 10px;
    }

    /* ── ABOUT ── */
    #about {
      background: var(--bg);
    }

    .about-grid {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 80px;
      align-items: center;
      margin-top: 50px;
    }

    .about-left .s-desc {
      margin-bottom: 32px;
    }

    .about-features {
      display: flex;
      flex-direction: column;
      gap: 14px;
      margin-top: 32px;
    }

    .af-item {
      display: flex;
      align-items: flex-start;
      gap: 14px;
      padding: 18px 20px;
      background: linear-gradient(135deg, var(--surface), var(--accent-xlight));
      border: 1px solid var(--border);
      border-radius: 12px;
      transition: all 0.25s;
    }

    .af-item:hover {
      border-color: var(--accent);
      box-shadow: var(--shadow);
    }

    .af-icon {
      width: 36px;
      height: 36px;
      border-radius: 9px;
      background: var(--accent-light);
      display: flex;
      align-items: center;
      justify-content: center;
      flex-shrink: 0;
      margin-top: 2px;
    }

    .af-text h4 {
      font-size: 0.95rem;
      font-weight: 600;
      margin-bottom: 4px;
    }

    .af-text p {
      font-size: 0.82rem;
      color: var(--text-muted);
      line-height: 1.65;
    }

    /* ABOUT VISUAL: STACKED CARDS */
    .about-visual {
      position: relative;
      height: 440px;
    }

    .stacked-cards {
      position: absolute;
      top: 50%;
      left: 50%;
      transform: translate(-50%, -50%);
      width: 320px;
      height: 320px;
    }

    .sc {
      position: absolute;
      width: 280px;
      border-radius: 20px;
      padding: 26px;
      box-shadow: var(--shadow-lg);
      transition: transform 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
    }

    .sc-1 {
      background: linear-gradient(135deg, #dbeafe, #eff6ff);
      border: 1px solid #bfdbfe;
      top: 0;
      left: 0;
      transform: rotate(-7deg);
      z-index: 1;
    }

    .sc-2 {
      background: linear-gradient(135deg, var(--accent), var(--accent-mid));
      top: 22px;
      left: 18px;
      transform: rotate(-2deg);
      z-index: 2;
    }

    .sc-3 {
      background: linear-gradient(135deg, var(--text), #1e3a5f);
      top: 44px;
      left: 36px;
      transform: rotate(3deg);
      z-index: 3;
    }

    .stacked-cards:hover .sc-1 {
      transform: rotate(-12deg) translateY(-14px);
    }

    .stacked-cards:hover .sc-2 {
      transform: rotate(-4deg) translateX(14px);
    }

    .stacked-cards:hover .sc-3 {
      transform: rotate(5deg) translateY(10px);
    }

    .sc-label {
      font-size: 0.68rem;
      font-weight: 700;
      text-transform: uppercase;
      letter-spacing: 0.1em;
      margin-bottom: 14px;
    }

    .sc-1 .sc-label {
      color: #3b82f6;
    }

    .sc-2 .sc-label,
    .sc-3 .sc-label {
      color: rgba(255, 255, 255, 0.6);
    }

    .sc-value {
      font-family: 'Bricolage Grotesque', sans-serif;
      font-size: 2.5rem;
      font-weight: 800;
      line-height: 1;
      margin-bottom: 6px;
    }

    .sc-1 .sc-value {
      color: var(--accent);
    }

    .sc-2 .sc-value,
    .sc-3 .sc-value {
      color: white;
    }

    .sc-sub {
      font-size: 0.8rem;
    }

    .sc-1 .sc-sub {
      color: #6b8ab0;
    }

    .sc-2 .sc-sub,
    .sc-3 .sc-sub {
      color: rgba(255, 255, 255, 0.65);
    }

    .sc-icon-row {
      display: flex;
      gap: 6px;
      margin-bottom: 12px;
    }

    .sc-dot-icon {
      width: 28px;
      height: 28px;
      border-radius: 7px;
      display: flex;
      align-items: center;
      justify-content: center;
    }

    .about-badge {
      position: absolute;
      bottom: 24px;
      right: -16px;
      background: linear-gradient(135deg, var(--accent), var(--accent2));
      border-radius: 14px;
      padding: 16px 20px;
      display: flex;
      align-items: center;
      gap: 12px;
      z-index: 10;
      box-shadow: 0 12px 32px rgba(26, 95, 180, 0.35);
    }

    .ab-num {
      font-family: 'Bricolage Grotesque', sans-serif;
      font-size: 1.4rem;
      font-weight: 800;
      line-height: 1;
      color: white;
    }

    .ab-l {
      font-size: 0.72rem;
      color: rgba(255, 255, 255, 0.75);
      margin-top: 2px;
    }

    /* ── PROCESS ── */
    #process {
      background: var(--bg2);
      position: relative;
      overflow: hidden;
    }

    .process-svg-bg {
      position: absolute;
      inset: 0;
      pointer-events: none;
      opacity: 0.3;
    }

    .process-steps {
      display: grid;
      grid-template-columns: repeat(4, 1fr);
      gap: 0;
      margin-top: 56px;
      position: relative;
      z-index: 1;
    }

    .process-steps::before {
      content: '';
      position: absolute;
      top: 42px;
      left: 12%;
      right: 12%;
      height: 1px;
      background: linear-gradient(90deg, transparent, var(--border2) 20%, var(--border2) 80%, transparent);
    }

    .ps {
      padding: 36px 22px;
      text-align: center;
    }

    .ps-num-wrap {
      display: flex;
      justify-content: center;
      margin-bottom: 22px;
      position: relative;
      z-index: 1;
    }

    .ps-num {
      width: 52px;
      height: 52px;
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
      font-family: 'Bricolage Grotesque', sans-serif;
      font-size: 1.1rem;
      font-weight: 800;
      background: var(--surface);
      border: 2px solid var(--border2);
      color: var(--text-muted);
      transition: all 0.3s;
      box-shadow: var(--shadow-sm);
    }

    .ps:hover .ps-num {
      background: linear-gradient(135deg, var(--accent), var(--accent2));
      color: white;
      border-color: transparent;
      box-shadow: 0 6px 20px rgba(26, 95, 180, 0.3);
    }

    .ps h3 {
      font-size: 1.05rem;
      font-weight: 700;
      margin-bottom: 10px;
      letter-spacing: -0.02em;
    }

    .ps p {
      font-size: 0.83rem;
      color: var(--text-muted);
      line-height: 1.7;
    }

    /* ── QUALITY ── */
    #quality {
      background: var(--bg);
    }

    .quality-layout {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 72px;
      align-items: start;
      margin-top: 56px;
    }

    .quality-list {
      display: flex;
      flex-direction: column;
      gap: 3px;
    }

    .ql-item {
      display: flex;
      gap: 16px;
      align-items: flex-start;
      padding: 18px 20px;
      border-radius: 12px;
      border: 1px solid transparent;
      cursor: default;
      transition: all 0.25s;
    }

    .ql-item:hover {
      background: linear-gradient(135deg, var(--surface), var(--accent-xlight));
      border-color: var(--border);
      transform: translateX(4px);
      box-shadow: var(--shadow-sm);
    }

    .ql-check {
      width: 28px;
      height: 28px;
      border-radius: 50%;
      background: var(--accent-light);
      display: flex;
      align-items: center;
      justify-content: center;
      flex-shrink: 0;
      margin-top: 2px;
    }

    .ql-text h4 {
      font-size: 0.95rem;
      font-weight: 600;
      margin-bottom: 5px;
    }

    .ql-text p {
      font-size: 0.83rem;
      color: var(--text-muted);
      line-height: 1.65;
    }

    /* QUALITY VISUAL: SCROLLING METRIC CARDS */
    .quality-visual {}

    .metrics-carousel {
      position: relative;
      height: 360px;
      overflow: hidden;
      border-radius: var(--radius-lg);
      background: linear-gradient(160deg, var(--bg2), var(--accent-xlight));
      border: 1px solid var(--border);
    }

    .metrics-track {
      display: flex;
      flex-direction: column;
      gap: 14px;
      padding: 20px;
      animation: scrollMetrics 14s linear infinite;
    }

    .metrics-track:hover {
      animation-play-state: paused;
    }

    @keyframes scrollMetrics {
      0% {
        transform: translateY(0)
      }

      100% {
        transform: translateY(-50%)
      }
    }

    .metric-card {
      background: var(--surface);
      border: 1px solid var(--border);
      border-radius: 14px;
      padding: 18px 22px;
      display: flex;
      align-items: center;
      gap: 16px;
      flex-shrink: 0;
      box-shadow: var(--shadow-sm);
      transition: box-shadow 0.2s;
    }

    .metric-card:hover {
      box-shadow: var(--shadow);
    }

    .mc-icon {
      width: 44px;
      height: 44px;
      border-radius: 11px;
      display: flex;
      align-items: center;
      justify-content: center;
      flex-shrink: 0;
    }

    .mc-num {
      font-family: 'Bricolage Grotesque', sans-serif;
      font-size: 1.6rem;
      font-weight: 800;
      line-height: 1;
      color: var(--text);
    }

    .mc-label {
      font-size: 0.77rem;
      color: var(--text-muted);
      margin-top: 3px;
    }

    .mfade-top {
      position: absolute;
      top: 0;
      left: 0;
      right: 0;
      height: 60px;
      background: linear-gradient(to bottom, var(--bg2), transparent);
      z-index: 1;
      pointer-events: none;
    }

    .mfade-bot {
      position: absolute;
      bottom: 0;
      left: 0;
      right: 0;
      height: 60px;
      background: linear-gradient(to top, var(--accent-xlight), transparent);
      z-index: 1;
      pointer-events: none;
    }

    .quality-bottom {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 12px;
      margin-top: 16px;
    }

    .qb-card {
      background: linear-gradient(135deg, var(--surface), var(--accent-xlight));
      border: 1px solid var(--border);
      border-radius: 12px;
      padding: 18px;
      text-align: center;
      transition: all 0.25s;
    }

    .qb-card:hover {
      border-color: var(--accent);
      box-shadow: var(--shadow);
    }

    .qb-num {
      font-family: 'Bricolage Grotesque', sans-serif;
      font-size: 1.8rem;
      font-weight: 800;
      color: var(--text);
    }

    .qb-num sup {
      font-size: 1rem;
      color: var(--accent);
    }

    .qb-l {
      font-size: 0.72rem;
      color: var(--text-muted);
      margin-top: 3px;
      text-transform: uppercase;
      letter-spacing: 0.06em;
    }

    /* ── TECHNOLOGIES ── */
    #technologies {
      background: var(--bg2);
      position: relative;
      overflow: hidden;
    }

    .tech-stack-img{height: 30px;}

    .tech-grid {
      display: grid;
      grid-template-columns: repeat(6, 1fr);
      gap: 12px;
      margin-top: 48px;
      position: relative;
      z-index: 1;
    }

    .tech-card {
      background: var(--surface);
      border: 1px solid var(--border);
      border-radius: 14px;
      padding: 20px 10px;
      display: flex;
      flex-direction: column;
      align-items: center;
      gap: 10px;
      transition: all 0.28s;
      cursor: default;
    }

    .tech-card:hover {
      border-color: var(--accent);
      box-shadow: var(--shadow);
      transform: translateY(-4px);
    }

    .ti {
      width: 42px;
      height: 42px;
      border-radius: 11px;
      display: flex;
      align-items: center;
      justify-content: center;
    }

    .tn {
      font-size: 0.72rem;
      font-weight: 600;
      color: var(--text-mid);
      text-align: center;
    }

   

    /* ── PRICING ── */
    #pricing {
      background: var(--bg2);
    }

    .pricing-grid {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 20px;
      margin-top: 56px;
    }

    .pr-card {
      background: var(--surface);
      border: 1px solid var(--border);
      border-radius: var(--radius-lg);
      padding: 36px;
      position: relative;
      transition: all 0.3s;
    }

    .pr-card:hover {
      transform: translateY(-6px);
      box-shadow: var(--shadow-lg);
    }

    .pr-card.featured {
      background: linear-gradient(160deg, var(--accent), #0d47a1);
      border-color: transparent;
      box-shadow: 0 20px 60px rgba(26, 95, 180, 0.35);
    }

    .pr-badge {
      position: absolute;
      top: -13px;
      left: 50%;
      transform: translateX(-50%);
      background: linear-gradient(135deg, #f59e0b, #f97316);
      color: white;
      font-size: 0.7rem;
      font-weight: 700;
      letter-spacing: 0.08em;
      text-transform: uppercase;
      padding: 4px 14px;
      border-radius: 100px;
      white-space: nowrap;
      box-shadow: 0 4px 12px rgba(249, 115, 22, 0.35);
    }

    .pr-tier {
      font-size: 0.75rem;
      font-weight: 700;
      text-transform: uppercase;
      letter-spacing: 0.1em;
      margin-bottom: 14px;
    }

    .pr-card:not(.featured) .pr-tier {
      color: var(--text-muted);
    }

    .pr-card.featured .pr-tier {
      color: rgba(255, 255, 255, 0.5);
    }

    .pr-price {
      font-family: 'Bricolage Grotesque', sans-serif;
      font-size: 3rem;
      font-weight: 800;
      line-height: 1;
      margin-bottom: 10px;
      letter-spacing: -0.04em;
    }

    .pr-card:not(.featured) .pr-price {
      color: var(--text);
    }

    .pr-card.featured .pr-price {
      color: white;
    }

    .pr-price span {
      font-size: 1.1rem;
      font-weight: 400;
      vertical-align: super;
      margin-right: 2px;
    }

    .pr-card:not(.featured) .pr-price span {
      color: var(--text-muted);
    }

    .pr-card.featured .pr-price span {
      color: rgba(255, 255, 255, 0.6);
    }

    .pr-desc {
      font-size: 0.83rem;
      line-height: 1.6;
      margin-bottom: 28px;
      padding-bottom: 28px;
      border-bottom: 1px solid;
    }

    .pr-card:not(.featured) .pr-desc {
      color: var(--text-muted);
      border-bottom-color: var(--border);
    }

    .pr-card.featured .pr-desc {
      color: rgba(255, 255, 255, 0.65);
      border-bottom-color: rgba(255, 255, 255, 0.15);
    }

    .pr-feats {
      list-style: none;
      display: flex;
      flex-direction: column;
      gap: 12px;
      margin-bottom: 32px;
    }

    .pr-feats li {
      display: flex;
      gap: 10px;
      font-size: 0.87rem;
      align-items: flex-start;
    }

    .pr-card:not(.featured) .pr-feats li {
      color: var(--text-mid);
    }

    .pr-card.featured .pr-feats li {
      color: rgba(255, 255, 255, 0.85);
    }

    .pr-feats li::before {
      content: '';
      width: 16px;
      height: 16px;
      border-radius: 50%;
      flex-shrink: 0;
      margin-top: 2px;
      background-size: 8px;
      background-repeat: no-repeat;
      background-position: center;
    }

    .pr-card:not(.featured) .pr-feats li::before {
      background-color: var(--accent-light);
      background-image: url("data:image/svg+xml,%3Csvg width='8' height='6' viewBox='0 0 8 6' fill='none'%3E%3Cpath d='M1 3L3 5L7 1' stroke='%231a5fb4' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
    }

    .pr-card.featured .pr-feats li::before {
      background-color: rgba(255, 255, 255, 0.2);
      background-image: url("data:image/svg+xml,%3Csvg width='8' height='6' viewBox='0 0 8 6' fill='none'%3E%3Cpath d='M1 3L3 5L7 1' stroke='white' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
    }

    .btn-book {
      display: block;
      text-align: center;
      padding: 13px;
      border-radius: 100px;
      font-family: 'Bricolage Grotesque', sans-serif;
      font-weight: 700;
      font-size: 0.88rem;
      text-decoration: none;
      transition: all 0.25s;
    }

    .btn-book-light {
      background: var(--bg2);
      color: var(--text);
      border: 1px solid var(--border);
    }

    .btn-book-light:hover {
      background: linear-gradient(135deg, var(--accent), var(--accent-mid));
      color: white;
      border-color: transparent;
      box-shadow: 0 6px 20px rgba(26, 95, 180, 0.3);
    }

    .btn-book-white {
      background: white;
      color: var(--accent);
    }

    .btn-book-white:hover {
      background: rgba(255, 255, 255, 0.9);
      transform: translateY(-1px);
      box-shadow: 0 6px 20px rgba(0, 0, 0, 0.15);
    }

    /* ── CTA ── */
    #cta {
      background: var(--bg);
      padding: 96px 5%;
    }

    .cta-box {
      background: linear-gradient(135deg, var(--accent) 0%, var(--sky) 50%, #0e7490 100%);
      border-radius: 15px;
      padding: 80px 72px;
      display: grid;
      grid-template-columns: 1fr auto;
      gap: 60px;
      align-items: center;
      position: relative;
      overflow: hidden;
      box-shadow: 0 30px 80px rgba(26, 95, 180, 0.3);
    }

    .cta-svg-bg {
      position: absolute;
      inset: 0;
      width: 100%;
      height: 100%;
      pointer-events: none;
    }

    .cta-eyebrow {
      font-size: 0.72rem;
      font-weight: 700;
      color: rgba(255, 255, 255, 0.5);
      text-transform: uppercase;
      letter-spacing: 0.12em;
      margin-bottom: 14px;
    }

    .cta-box h2 {
      font-size: clamp(1.9rem, 3.5vw, 2.8rem);
      font-weight: 500;
      color: white;
      line-height: 1.1;
      letter-spacing: -0.03em;
      margin-bottom: 16px;
    }

    .cta-box h2 em {
      font-family: 'Instrument Serif', serif;
      font-style: italic;
      color: #bae6fd;
      font-weight: 400;
    }

    .cta-box p {
      font-size: 1rem;
      color: rgba(255, 255, 255, 0.65);
      line-height: 1.7;
    }

    .cta-actions {
      display: flex;
      flex-direction: column;
      gap: 12px;
      min-width: 220px;
      position: relative;
      z-index: 2;
    }

    .btn-white {
      display: block;
      text-align: center;
      background: white;
      color: var(--accent);
      padding: 14px 28px;
      border-radius: 100px;
      font-family: 'Bricolage Grotesque', sans-serif;
      font-weight: 700;
      font-size: 0.9rem;
      text-decoration: none;
      transition: all 0.25s;
      box-shadow: 0 6px 20px rgba(0, 0, 0, 0.15);
    }

    .btn-white:hover {
      transform: translateY(-2px);
      box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
    }

    .btn-outline-white {
      display: block;
      text-align: center;
      background: transparent;
      color: rgba(255, 255, 255, 0.85);
      border: 1.5px solid rgba(255, 255, 255, 0.3);
      padding: 14px 28px;
      border-radius: 100px;
      font-family: 'Bricolage Grotesque', sans-serif;
      font-weight: 600;
      font-size: 0.9rem;
      text-decoration: none;
      transition: all 0.25s;
    }

    .btn-outline-white:hover {
      border-color: rgba(255, 255, 255, 0.7);
      color: white;
    }

    /* ── FAQ ── */
    #faq {
      background: var(--bg2);
    }

    .faq-layout {
      display: grid;
      grid-template-columns: 1fr 1.4fr;
      gap: 80px;
      margin-top: 56px;
      align-items: start;
    }

    .faq-sidebar {
      position: sticky;
      top: 90px;
    }

    .faq-sidebar .s-desc {
      margin-bottom: 28px;
    }

    .faq-contact {
      display: flex;
      flex-direction: column;
      gap: 10px;
      margin-top: 32px;
    }

    .fc-item {
      display: flex;
      align-items: center;
      gap: 12px;
      padding: 14px 16px;
      background: var(--surface);
      border: 1px solid var(--border);
      border-radius: 10px;
      font-size: 0.85rem;
      color: var(--text-mid);
      transition: all 0.2s;
      text-decoration: none;
    }

    .fc-item:hover {
      border-color: var(--accent);
      color: var(--text);
      box-shadow: var(--shadow-sm);
    }

    .fc-icon {
      width: 32px;
      height: 32px;
      border-radius: 8px;
      background: var(--accent-light);
      display: flex;
      align-items: center;
      justify-content: center;
      flex-shrink: 0;
    }

    .faq-list {
      display: flex;
      flex-direction: column;
      gap: 3px;
    }

    .faq-item {
      border: 1px solid var(--border);
      border-radius: 12px;
      overflow: hidden;
      background: var(--surface);
    }

    .faq-q {
      padding: 18px 22px;
      display: flex;
      justify-content: space-between;
      align-items: center;
      cursor: pointer;
      gap: 16px;
      user-select: none;
      transition: background 0.2s;
    }

    .faq-q:hover {
      background: var(--accent-xlight);
    }

    .faq-q span {
      font-size: 0.92rem;
      font-weight: 600;
    }

    .faq-plus {
      width: 22px;
      height: 22px;
      border-radius: 50%;
      background: var(--bg2);
      display: flex;
      align-items: center;
      justify-content: center;
      flex-shrink: 0;
      transition: all 0.3s;
      color: var(--text-muted);
    }

    .faq-item.open .faq-plus {
      background: linear-gradient(135deg, var(--accent), var(--accent2));
      color: white;
      transform: rotate(45deg);
    }

    .faq-ans {
      max-height: 0;
      overflow: hidden;
      transition: max-height 0.35s ease;
    }

    .faq-item.open .faq-ans {
      max-height: 250px;
    }

    .faq-ans-inner {
      padding: 0 22px 18px;
      font-size: 0.85rem;
      line-height: 1.75;
      color: var(--text-muted);
    }

    /* ── FOOTER ── */
    footer {
      background: linear-gradient(160deg, #0d1b2e 0%, #0d2a4e 50%, #0a2540 100%);
      padding: 72px 5% 36px;
      position: relative;
      overflow: hidden;
    }

    .footer-svg-bg {
      position: absolute;
      inset: 0;
      width: 100%;
      height: 100%;
      pointer-events: none;
    }

    .foot-grid {
      display: grid;
      grid-template-columns: 2fr 1fr 1fr 1fr;
      gap: 60px;
      padding-bottom: 56px;
      border-bottom: 1px solid rgba(255, 255, 255, 0.08);
      margin-bottom: 36px;
      position: relative;
      z-index: 1;
    }

    .foot-brand {}

    .foot-logo {
      display: flex;
      align-items: center;
      gap: 9px;
      margin-bottom: 18px;
      text-decoration: none;
    }

    .foot-logo-mark {
      width: 34px;
      height: 34px;
      border-radius: 9px;
      background: linear-gradient(135deg, var(--accent), var(--accent2));
      display: flex;
      align-items: center;
      justify-content: center;
      box-shadow: 0 4px 14px rgba(26, 95, 180, 0.4);
    }

    .foot-brandname {
      font-family: 'Google Sans Flex', sans-serif;
      font-weight: 500;
      font-size: 1.05rem;
      color: white;
      letter-spacing: -0.02em;
      display: flex;
      flex-direction: column;
      text-align: center;
    }

    .foot-brandname span {
      color: #7dd3fc;
    }

    .foot-desc {
      font-size: 0.85rem;
      line-height: 1.75;
      color: rgba(255, 255, 255, 0.8);
      max-width: 280px;
      margin-bottom: 24px;
    }

    .foot-socials {
      display: flex;
      gap: 8px;
    }

    .fs-link {
      width: 36px;
      height: 36px;
      border-radius: 8px;
      background: rgba(255, 255, 255, 0.06);
      border: 1px solid rgba(255, 255, 255, 0.1);
      display: flex;
      align-items: center;
      justify-content: center;
      transition: all 0.2s;
      text-decoration: none;
    }

    .fs-link:hover {
      background: rgba(45, 125, 210, 0.3);
      border-color: rgba(125, 211, 252, 0.3);
      transform: translateY(-2px);
    }

    .foot-col h4 {
      font-size: 0.75rem;
      font-weight: 700;
      text-transform: uppercase;
      letter-spacing: 0.1em;
      color: rgba(255, 255, 255, 0.8);
      margin-bottom: 18px;
    }

    .foot-links {
      list-style: none;
      display: flex;
      flex-direction: column;
      gap: 10px;
    }

    .foot-links a {
      color: rgb(255, 255, 255, 0.4);
      text-decoration: none;
      font-size: 0.85rem;
      transition: color 0.2s;
    }

    .foot-links a:hover {
      color: #7dd3fc;
    }

    .foot-bottom {
      display: flex;
      justify-content: space-between;
      align-items: center;
      flex-wrap: wrap;
      gap: 16px;
      position: relative;
      z-index: 1;
    }

    .foot-copy {
      font-size: 0.8rem;
      color: rgba(255, 255, 255, 0.25);
    }

    .foot-copy span {
      color: #7dd3fc;
    }

    .foot-legal {
      display: flex;
      gap: 24px;
    }

    .foot-legal a {
      font-size: 0.8rem;
      color: rgba(255, 255, 255, 0.25);
      text-decoration: none;
      transition: color 0.2s;
    }

    .foot-legal a:hover {
      color: rgba(255, 255, 255, 0.55);
    }

    /* ── RESPONSIVE ── */
    @media(max-width:1100px) {
      .hero {
        grid-template-columns: 1fr;
        min-height: auto;
        padding-top: 130px;
      }

      .hero-visual {
        display: none;
      }

      .about-grid {
        grid-template-columns: 1fr;
      }

      .about-visual {
        height: 300px;
        margin-top: 20px;
      }

      .stacked-cards {
        width: 260px;
      }

      .sc {
        width: 240px;
      }

      .quality-layout {
        grid-template-columns: 1fr;
      }

      .tech-grid {
        grid-template-columns: repeat(4, 1fr);
      }

      .cta-box {
        grid-template-columns: 1fr;
        text-align: center;
        padding: 56px 40px;
      }

      .cta-actions {
        flex-direction: row;
        justify-content: center;
      }

      .faq-layout {
        grid-template-columns: 1fr;
      }

      .faq-sidebar {
        position: static;
      }

      .services-grid {
        grid-template-columns: 1fr 1fr;
      }
    }

    @media(max-width:900px) {
      .process-steps {
        grid-template-columns: 1fr 1fr;
      }

      .process-steps::before {
        display: none;
      }

      .pricing-grid {
        grid-template-columns: 1fr;
      }

      .foot-grid {
        grid-template-columns: 1fr 1fr;
      }

      .testi-stage {
        height: auto;
        perspective: none;
      }

      .testi-track {
        transform: none !important;
        animation: none;
        display: flex;
        flex-direction: column;
        gap: 20px;
        align-items: center;
      }

      .testi-card {
        position: static;
        transform: none !important;
        width: 100%;
        max-width: 480px;
      }
    }

    @media(max-width:768px) {
      .nav-links {
        display: none;
      }

      .hamburger {
        display: flex;
      }

      .hero-content{margin-top:0px; text-align: center; justify-content: center;}

      .hero-actions{text-align: center; justify-content: center; align-items: center;}

      /* backgrou animation */

  @media (max-width: 767px) {
    .mh-root { display: block; }
  }

  /* ── SECTION WRAPPER ── */
  .mh-section {
    width: 100%;
    padding: 56px 24px 48px;
    box-sizing: border-box;
    background: #ffffff;
    overflow: hidden;
  }

  /* ── EYEBROW ── */
  .mh-eyebrow {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 22px;
  }

  .mh-eyebrow-line {
    flex: 1;
    height: 1px;
    background: #e5e5e5;
  }

  .mh-eyebrow-text {
    font-size: 10px;
    font-weight: 600;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: #999;
    white-space: nowrap;
  }

  /* ── HEADLINE ── */
  .mh-headline {
    font-size: 32px;
    font-weight: 700;
    line-height: 1.15;
    color: #0a0a0a;
    letter-spacing: -0.03em;
    margin: 0 0 8px;
  }

  /* Animated word switcher */
  .mh-word-wrap {
    display: inline-block;
    position: relative;
    overflow: hidden;
    height: 1.15em;
    vertical-align: bottom;
  }

  .mh-word {
    display: block;
    position: absolute;
    left: 0;
    top: 0;
    color: #0a0a0a;
    opacity: 0;
    transform: translateY(100%);
    transition: none;
    white-space: nowrap;
  }

  .mh-word.active {
    opacity: 1;
    transform: translateY(0);
    transition: opacity 0.45s ease, transform 0.45s cubic-bezier(0.22, 1, 0.36, 1);
  }

  .mh-word.exit {
    opacity: 0;
    transform: translateY(-100%);
    transition: opacity 0.35s ease, transform 0.35s cubic-bezier(0.55, 0, 1, 0.45);
  }

  /* Underline accent on active word */
  .mh-word.active::after {
    content: '';
    position: absolute;
    bottom: 2px;
    left: 0;
    width: 100%;
    height: 2px;
    background: #0a0a0a;
    border-radius: 1px;
  }

  .mh-sub {
    font-size: 15px;
    font-weight: 400;
    color: #666;
    line-height: 1.6;
    margin: 14px 0 36px;
  }

  /* ── CANVAS AREA ── */
  .mh-canvas {
    position: relative;
    width: 100%;
    margin-bottom: 40px;
  }

  .mh-canvas svg {
    width: 100%;
    height: auto;
    display: block;
    overflow: visible;
  }

  /* ── SVG ANIMATIONS ── */

  /* Breathing dot at centre */
  @keyframes mh-breathe {
    0%, 100% { r: 5; opacity: 1; }
    50%       { r: 7; opacity: 0.7; }
  }

  /* Ripple rings from centre */
  @keyframes mh-ripple {
    0%   { r: 12; stroke-opacity: 0.4; }
    100% { r: 90; stroke-opacity: 0; }
  }

  /* Travelling dot on path */
  @keyframes mh-travel {
    0%   { offset-distance: 0%; }
    100% { offset-distance: 100%; }
  }

  /* Fade-up entrance */
  @keyframes mh-fadein {
    from { opacity: 0; transform: translateY(8px); }
    to   { opacity: 1; transform: translateY(0); }
  }

  /* Node idle float */
  @keyframes mh-float {
    0%, 100% { transform: translateY(0); }
    50%       { transform: translateY(-4px); }
  }

  /* Tick dash on connector lines */
  @keyframes mh-dash {
    from { stroke-dashoffset: 40; }
    to   { stroke-dashoffset: 0; }
  }

  /* Pulse on active node */
  @keyframes mh-pulse {
    0%, 100% { opacity: 0.12; transform: scale(1); }
    50%       { opacity: 0.22; transform: scale(1.08); }
  }

  /* Corner bracket draw */
  @keyframes mh-bracket {
    from { stroke-dashoffset: 60; }
    to   { stroke-dashoffset: 0; }
  }

  /* Dot entrance stagger */
  .mh-node { animation: mh-fadein 0.6s ease both; }
  .mh-node:nth-child(1) { animation-delay: 0.1s; }
  .mh-node:nth-child(2) { animation-delay: 0.2s; }
  .mh-node:nth-child(3) { animation-delay: 0.3s; }
  .mh-node:nth-child(4) { animation-delay: 0.4s; }
  .mh-node:nth-child(5) { animation-delay: 0.5s; }

  /* ── SERVICE CHIPS ── */
  .mh-chips {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-bottom: 32px;
  }

  .mh-chip {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 12px;
    font-weight: 500;
    color: #333;
    background: #f5f5f5;
    border: 1px solid #ebebeb;
    border-radius: 6px;
    padding: 6px 12px;
    letter-spacing: 0.01em;
    animation: mh-fadein 0.5s ease both;
  }

  .mh-chip:nth-child(1) { animation-delay: 0.6s; }
  .mh-chip:nth-child(2) { animation-delay: 0.7s; }
  .mh-chip:nth-child(3) { animation-delay: 0.8s; }
  .mh-chip:nth-child(4) { animation-delay: 0.9s; }
  .mh-chip:nth-child(5) { animation-delay: 1.0s; }
  .mh-chip:nth-child(6) { animation-delay: 1.1s; }

  .mh-chip-dot {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: #0a0a0a;
    flex-shrink: 0;
  }

  /* ── STATS ROW ── */
  .mh-stats {
    display: grid;
    grid-template-columns: 1fr 1px 1fr 1px 1fr;
    gap: 0;
    padding: 24px 0;
    border-top: 1px solid #ebebeb;
    border-bottom: 1px solid #ebebeb;
    margin-bottom: 32px;
    animation: mh-fadein 0.6s 1.2s ease both;
    opacity: 0;
    animation-fill-mode: both;
  }

  .mh-stat { text-align: center; }

  .mh-stat-divider {
    background: #e5e5e5;
    width: 1px;
  }

  .mh-stat-num {
    font-size: 22px;
    font-weight: 700;
    color: #0a0a0a;
    letter-spacing: -0.04em;
    line-height: 1;
    margin-bottom: 4px;
  }

  .mh-stat-label {
    font-size: 10px;
    font-weight: 500;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: #aaa;
  }

  /* ── CTA BUTTON ── */
  .mh-cta {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    background: #0a0a0a;
    color: #fff;
    font-size: 14px;
    font-weight: 600;
    letter-spacing: 0.01em;
    padding: 16px 20px;
    border-radius: 10px;
    border: none;
    cursor: pointer;
    text-decoration: none;
    box-sizing: border-box;
    transition: background 0.2s;
    animation: mh-fadein 0.5s 1.4s ease both;
    opacity: 0;
    animation-fill-mode: both;
  }

  .mh-cta:active { background: #222; }

  .mh-cta-arrow {
    width: 20px;
    height: 20px;
    border-radius: 50%;
    border: 1.5px solid rgba(255,255,255,0.35);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
  }

  .mh-cta-arrow svg {
    width: 10px;
    height: 10px;
  }


  .hero-stats{justify-content: center;}
      
      section {
        padding: 72px 5%;
      }

      .hero-stats {
        flex-wrap: wrap;
        gap: 24px;
      }

      .process-steps {
        grid-template-columns: 1fr;
      }

      .tech-grid {
        grid-template-columns: repeat(3, 1fr);
      }

      .cta-box {
        padding: 44px 28px;
      }

      .cta-actions {
        flex-direction: column;
      }

      .foot-grid {
        grid-template-columns: 1fr;
        gap: 36px;
      }

      .services-grid {
        grid-template-columns: 1fr;
      }

      .quality-bottom {
        grid-template-columns: 1fr 1fr;
      }
    }

    @media(max-width:480px) {
      .tech-grid {
        grid-template-columns: repeat(2, 1fr);
      }

      .quality-bottom {
        grid-template-columns: 1fr;
      }

      .foot-legal {
        flex-wrap: wrap;
        gap: 12px;
      }
    }

    .ws-wrap {
    display: inline-flex;
    justify-content: center;
    align-items: baseline;
    gap: 0.22em;
    flex-wrap: wrap;
  }
  @media (max-width: 768px){
    .ws-wrap{display: flex;}
  }

  .ws-static {
    font-style: normal;
  }

  .ws-dynamic {
    position: relative;
    display: inline-block;
    font-style: none;
    color: #0284c7;
    min-width: 2em;
    font-weight: 600;
    transition: min-width 0.45s cubic-bezier(0.22, 1, 0.36, 1);
  }

  .ws-dynamic .wc {
    display: inline-block;
    opacity: 0;
    transform: translateY(20px) rotate(var(--r, 0deg)) scale(0.82);
    will-change: opacity, transform;
  }

  .ws-dynamic .wc.in {
    opacity: 1;
    transform: translateY(0) rotate(0deg) scale(1);
    transition:
      opacity  0.5s cubic-bezier(0.22, 1, 0.36, 1),
      transform 0.62s cubic-bezier(0.34, 1.56, 0.64, 1);
  }

  .ws-dynamic .wc.out {
    opacity: 0;
    transform: translateY(-18px) rotate(var(--r2, 0deg)) scale(0.88);
    transition:
      opacity  0.28s cubic-bezier(0.55, 0, 1, 0.45),
      transform 0.32s cubic-bezier(0.55, 0, 1, 0.45);
  }

  .ws-dots {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    margin-left: 4px;
    vertical-align: middle;
  }

  .ws-dot {
    width: 5px;
    height: 5px;
    border-radius: 50%;
    background: currentColor;
    opacity: 0.18;
    transition: width 0.35s cubic-bezier(0.34, 1.56, 0.64, 1),
                border-radius 0.35s,
                opacity 0.3s;
    display: inline-block;
  }

  .ws-dot.active {
    width: 18px;
    border-radius: 3px;
    opacity: 0.65;
  }
  
  /* ── SECTION ── */
.cm-section {
  width: 100%;
  padding: clamp(64px, 10vw, 110px) clamp(20px, 6vw, 80px);
  background: #ffffff;
  position: relative;
  overflow: hidden;
  font-family: 'quicksand', system-ui, sans-serif;
  -webkit-font-smoothing: antialiased;
}
 
/* background accent blob */
.cm-section::before {
  content: '';
  position: absolute;
  top: -120px; right: -120px;
  width: 420px; height: 420px;
  border-radius: 50%;
  background: radial-gradient(circle, #e0f2fe 0%, transparent 70%);
  pointer-events: none;
  z-index: 0;
}
 
/* ── GRID LAYOUT ── */
.cm-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1fr 1.15fr;
  gap: clamp(40px, 6vw, 80px);
  max-width: 1100px;
  margin: 0 auto;
  align-items: start;
}
 
@media (max-width: 820px) {
  .cm-grid { grid-template-columns: 1fr; }
}
 
/* ── LEFT — INFO SIDE ── */
.cm-info { display: flex; flex-direction: column; gap: 28px; }
 
.cm-tag {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 10.5px;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: #0284c7;
}
.cm-tag::before {
  content: '';
  width: 22px; height: 1.5px;
  background: #0284c7;
  border-radius: 2px;
}
 
.cm-title {
  font-size: clamp(28px, 4.5vw, 46px);
  font-weight: 700;
  letter-spacing: -0.03em;
  line-height: 1.1;
  color: #0c1a2e;
}
.cm-title em {
  font-style: italic;
  font-weight: 400;
  color: #0284c7;
}
 
.cm-desc {
  font-size: 15px;
  font-weight: 300;
  color: #64748b;
  line-height: 1.75;
  max-width: 360px;
}
 
/* contact details */
.cm-details { display: flex; flex-direction: column; gap: 14px; }
 
.cm-detail {
  display: flex;
  align-items: center;
  gap: 13px;
  text-decoration: none;
  transition: transform 0.2s cubic-bezier(0.34, 1.56, 0.64, 1);
}
.cm-detail:hover { transform: translateX(4px); }
 
.cm-detail-icon {
  width: 38px; height: 38px;
  border-radius: 10px;
  background: #f0f9ff;
  border: 1px solid #e0f2fe;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
  transition: background 0.2s, border-color 0.2s;
}
.cm-detail:hover .cm-detail-icon {
  background: #e0f2fe;
  border-color: #bae6fd;
}
.cm-detail-icon svg { width: 16px; height: 16px; color: #0284c7; }
 
.cm-detail-text { display: flex; flex-direction: column; gap: 1px; }
.cm-detail-label {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #94a3b8;
}
.cm-detail-value {
  font-size: 13.5px;
  font-weight: 500;
  color: #0c1a2e;
}
 
/* response badge */
.cm-response {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: #f0fdf4;
  border: 1px solid #bbf7d0;
  border-radius: 20px;
  padding: 7px 14px;
  width: fit-content;
}
.cm-response-dot {
  width: 7px; height: 7px;
  border-radius: 50%;
  background: #22c55e;
  animation: cm-blink 1.6s ease-in-out infinite;
  flex-shrink: 0;
}
@keyframes cm-blink {
  0%, 100% { opacity: 1; transform: scale(1); }
  50%       { opacity: 0.35; transform: scale(0.7); }
}
.cm-response-text {
  font-size: 12px;
  font-weight: 500;
  color: #16a34a;
  letter-spacing: 0.01em;
}
 
/* ── RIGHT — FORM CARD ── */
.cm-card {
  background: #ffffff;
  border: 1px solid #e2e8f0;
  border-radius: 20px;
  padding: clamp(28px, 4vw, 44px);
  box-shadow: 0 4px 32px rgba(2, 132, 199, 0.07), 0 1px 4px rgba(0,0,0,0.04);
  position: relative;
  overflow: hidden;
}
 
/* top accent line */
.cm-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, #0284c7, #38bdf8, #0284c7);
  background-size: 200%;
  animation: cm-line-slide 3s linear infinite;
}
@keyframes cm-line-slide {
  from { background-position: 0% 0; }
  to   { background-position: 200% 0; }
}
 
/* ── FORM ── */
.cm-form { display: flex; flex-direction: column; gap: 18px; }
 
/* row of 2 */
.cm-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}
@media (max-width: 480px) { .cm-row { grid-template-columns: 1fr; } }
 
/* field group */
.cm-field { display: flex; flex-direction: column; gap: 6px; }
 
.cm-label {
  font-size: 11.5px;
  font-weight: 600;
  letter-spacing: 0.06em;
  color: #475569;
}
.cm-label span { color: #ef4444; margin-left: 2px; }
 
/* inputs */
.cm-input,
.cm-select,
.cm-textarea {
  width: 100%;
  font-family: 'DM Sans', system-ui, sans-serif;
  font-size: 14px;
  font-weight: 400;
  color: #0c1a2e;
  background: #f8fafc;
  border: 1.5px solid #e2e8f0;
  border-radius: 10px;
  padding: 11px 14px;
  outline: none;
  transition: border-color 0.22s, background 0.22s, box-shadow 0.22s;
  -webkit-appearance: none;
  appearance: none;
}
.cm-input::placeholder,
.cm-textarea::placeholder { color: #94a3b8; }
.cm-input:hover,
.cm-select:hover,
.cm-textarea:hover {
  border-color: #bae6fd;
  background: #fff;
}
.cm-input:focus,
.cm-select:focus,
.cm-textarea:focus {
  border-color: #0284c7;
  background: #fff;
  box-shadow: 0 0 0 3px rgba(2, 132, 199, 0.12);
}
.cm-input.error,
.cm-select.error,
.cm-textarea.error {
  border-color: #ef4444;
  box-shadow: 0 0 0 3px rgba(239, 68, 68, 0.1);
}
 
.cm-textarea { resize: vertical; min-height: 110px; line-height: 1.6; }
 
/* select arrow */
.cm-select-wrap { position: relative; }
.cm-select-wrap::after {
  content: '';
  position: absolute;
  right: 13px; top: 50%;
  transform: translateY(-50%);
  width: 0; height: 0;
  border-left: 4px solid transparent;
  border-right: 4px solid transparent;
  border-top: 5px solid #94a3b8;
  pointer-events: none;
}
 
/* error message */
.cm-error-msg {
  font-size: 11px;
  font-weight: 500;
  color: #ef4444;
  display: none;
  align-items: center;
  gap: 4px;
}
.cm-error-msg.show { display: flex; }
 
/* char counter */
.cm-char-count {
  font-size: 10.5px;
  color: #94a3b8;
  text-align: right;
  margin-top: -10px;
  transition: color 0.2s;
}
.cm-char-count.warn { color: #f59e0b; }
 
/* ── SUBMIT BUTTON ── */
.cm-submit {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  width: 100%;
  padding: 14px 24px;
  background: #0284c7;
  color: #fff;
  font-family: 'DM Sans', system-ui, sans-serif;
  font-size: 14.5px;
  font-weight: 600;
  letter-spacing: 0.01em;
  border: none;
  border-radius: 12px;
  cursor: pointer;
  transition:
    background 0.22s,
    transform 0.25s cubic-bezier(0.34, 1.56, 0.64, 1),
    box-shadow 0.25s;
  position: relative;
  overflow: hidden;
}
.cm-submit:hover {
  background: #0369a1;
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(2, 132, 199, 0.32);
}
.cm-submit:active { transform: scale(0.98) translateY(0); box-shadow: none; }
.cm-submit:disabled { opacity: 0.65; cursor: not-allowed; transform: none; }
.cm-submit svg { width: 16px; height: 16px; flex-shrink: 0; transition: transform 0.25s cubic-bezier(0.34,1.56,0.64,1); }
.cm-submit:hover:not(:disabled) svg { transform: translateX(3px); }
 
/* loading spinner */
.cm-spinner {
  width: 16px; height: 16px;
  border: 2px solid rgba(255,255,255,0.35);
  border-top-color: #fff;
  border-radius: 50%;
  animation: cm-spin 0.7s linear infinite;
  display: none;
  flex-shrink: 0;
}
@keyframes cm-spin { to { transform: rotate(360deg); } }
 
/* ── SUCCESS STATE ── */
.cm-success {
  display: none;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 40px 20px;
  gap: 16px;
}
.cm-success-icon {
  width: 64px; height: 64px;
  border-radius: 50%;
  background: #f0fdf4;
  border: 2px solid #bbf7d0;
  display: flex; align-items: center; justify-content: center;
  animation: cm-pop 0.5s cubic-bezier(0.34, 1.56, 0.64, 1);
}
@keyframes cm-pop {
  from { transform: scale(0); opacity: 0; }
  to   { transform: scale(1); opacity: 1; }
}
.cm-success-icon svg { width: 28px; height: 28px; color: #22c55e; }
.cm-success-title {
  font-size: 20px;
  font-weight: 700;
  color: #0c1a2e;
  letter-spacing: -0.02em;
}
.cm-success-text {
  font-size: 14px;
  color: #64748b;
  line-height: 1.65;
  max-width: 280px;
}
.cm-success-back {
  font-size: 13px;
  font-weight: 500;
  color: #0284c7;
  background: none;
  border: none;
  cursor: pointer;
  text-decoration: underline;
  text-underline-offset: 3px;
  padding: 0;
  transition: color 0.2s;
}
.cm-success-back:hover { color: #0369a1; }
 
/* ── RIPPLE ── */
.cm-ripple {
  position: absolute;
  border-radius: 50%;
  background: rgba(255,255,255,0.3);
  transform: scale(0);
  animation: cm-ripple-anim 0.6s ease-out forwards;
  pointer-events: none;
}
@keyframes cm-ripple-anim { to { transform: scale(4); opacity: 0; } }
 
/* ── PRIVACY NOTE ── */
.cm-privacy {
  text-align: center;
  font-size: 11px;
  color: #94a3b8;
  line-height: 1.5;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 5px;
}
.cm-privacy svg { width: 12px; height: 12px; flex-shrink: 0; }

/* booking popup css  */

/* ── TOKENS ── */
:root {
  --bm-ink:     #0c1a2e;
  --bm-ink2:    #1e2d40;
  --bm-white:   #ffffff;
  --bm-blue:    #0ea5e9;
  --bm-blue-d:  #0284c7;
  --bm-blue-bg: #f0f9ff;
  --bm-blue-lt: #e0f2fe;
  --bm-blue-bd: #bae6fd;
  --bm-muted:   #64748b;
  --bm-muted2:  #94a3b8;
  --bm-border:  #e2e8f0;
  --bm-surf:    #f8fafc;
  --bm-green:   #22c55e;
  --bm-ease:    cubic-bezier(0.25,1,0.5,1);
  --bm-spring:  cubic-bezier(0.34,1.56,0.64,1);
}

/* ── OVERLAY ── */
.bm-overlay {
  position: fixed;
  inset: 0;
  z-index: 9999;
  background: rgba(8,20,40,0.6);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  display: flex;
  align-items: flex-end; /* bottom sheet on mobile */
  justify-content: center;
  padding: 0;
  opacity: 0;
  pointer-events: none;
  transition: opacity .3s ease;
}
.bm-overlay.open {
  opacity: 1;
  pointer-events: all;
}

/* ── MODAL SHELL ── */
.bm-modal {
  background: var(--bm-white);
  width: 100%;
  max-height: 96dvh;
  max-height: 96vh;
  border-radius: 22px 22px 0 0;
  display: flex;
  flex-direction: column;
  overflow: hidden;
  transform: translateY(100%);
  transition: transform .42s var(--bm-ease);
  font-family: 'DM Sans', system-ui, sans-serif;
  -webkit-font-smoothing: antialiased;
  position: relative;
}
.bm-overlay.open .bm-modal {
  transform: translateY(0);
}

/* ── DESKTOP: centred dialog ── */
@media (min-width: 700px) {
  .bm-overlay {
    align-items: center;
    padding: 16px;
  }
  .bm-modal {
    max-width: 900px;
    max-height: 92dvh;
    max-height: 92vh;
    border-radius: 20px;
    transform: translateY(28px) scale(.97);
  }
  .bm-overlay.open .bm-modal {
    transform: none;
  }
}

/* ── DRAG HANDLE (mobile) ── */
.bm-handle {
  display: flex;
  justify-content: center;
  padding: 10px 0 4px;
  flex-shrink: 0;
}
.bm-handle-bar {
  width: 38px; height: 4px;
  border-radius: 2px;
  background: #d1d5db;
}
@media (min-width: 700px) { .bm-handle { display: none; } }

/* ── MODAL INNER GRID ── */
.bm-inner {
  display: flex;
  flex-direction: column;
  flex: 1;
  min-height: 0;
  overflow: hidden;
}
@media (min-width: 700px) {
  .bm-inner {
    flex-direction: row;
  }
}

/* ── LEFT DARK PANEL (desktop only) ── */
.bm-left {
  display: none;
}
@media (min-width: 700px) {
  .bm-left {
    display: flex;
    flex-direction: column;
    gap: 22px;
    width: 300px;
    flex-shrink: 0;
    background: var(--bm-ink);
    padding: 36px 30px;
    position: relative;
    overflow: hidden;
  }
  .bm-left::before {
    content: '';
    position: absolute; inset: 0;
    background-image:
      linear-gradient(rgba(14,165,233,.06) 1px, transparent 1px),
      linear-gradient(90deg, rgba(14,165,233,.06) 1px, transparent 1px);
    background-size: 28px 28px;
    pointer-events: none;
  }
  .bm-left::after {
    content: '';
    position: absolute;
    bottom: -80px; right: -80px;
    width: 240px; height: 240px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(14,165,233,0.14) 0%, transparent 70%);
    pointer-events: none;
  }
}
.bm-left-inner { position: relative; z-index: 1; display: flex; flex-direction: column; gap: 20px; }
.bm-l-tag { font-family: 'Syne', sans-serif; font-size: 9.5px; font-weight: 700; letter-spacing: .2em; text-transform: uppercase; color: var(--bm-blue); display: flex; align-items: center; gap: 7px; }
.bm-l-tag::before { content:''; width:16px; height:1.5px; background:var(--bm-blue); }
.bm-l-title { font-family: 'Instrument Serif', serif; font-size: 26px; font-weight: 400; line-height: 1.12; letter-spacing: -0.025em; color: white; }
.bm-l-title em { font-style: italic; color: var(--bm-blue); }
.bm-l-desc { font-size: 12.5px; font-weight: 300; color: rgba(255,255,255,0.45); line-height: 1.72; }
.bm-l-list { display: flex; flex-direction: column; gap: 11px; }
.bm-l-item { display: flex; align-items: center; gap: 10px; }
.bm-l-ico { width: 32px; height: 32px; border-radius: 8px; background: rgba(14,165,233,.1); border: 1px solid rgba(14,165,233,.18); display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.bm-l-ico svg { width: 13px; height: 13px; color: var(--bm-blue); }
.bm-l-val { font-size: 12.5px; font-weight: 500; color: rgba(255,255,255,.7); }
.bm-l-badge { display: inline-flex; align-items: center; gap: 7px; background: rgba(34,197,94,.1); border: 1px solid rgba(34,197,94,.22); border-radius: 20px; padding: 6px 12px; width: fit-content; }
.bm-l-badge-dot { width: 6px; height: 6px; border-radius: 50%; background: #22c55e; animation: bm-live 1.6s ease-in-out infinite; }
@keyframes bm-live { 0%,100%{opacity:1;transform:scale(1)} 50%{opacity:.3;transform:scale(.65)} }
.bm-l-badge span { font-size: 11.5px; font-weight: 500; color: #4ade80; }

/* ── RIGHT FORM SIDE ── */
.bm-right {
  display: flex;
  flex-direction: column;
  flex: 1;
  min-height: 0;
  overflow: hidden;
}

/* ── HEADER ROW ── */
.bm-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 4px 20px 0;
  flex-shrink: 0;
  gap: 12px;
}
@media (min-width: 700px) {
  .bm-header { padding: 22px 28px 0; }
}
.bm-header-title {
  font-family: 'Syne', sans-serif;
  font-size: 13.5px; font-weight: 700;
  color: var(--bm-ink); letter-spacing: -.01em;
  display: flex; align-items: center; gap: 8px;
}
.bm-header-dot {
  width: 8px; height: 8px; border-radius: 50%;
  background: var(--bm-blue);
  animation: bm-live 1.6s ease-in-out infinite;
}
@media (min-width: 700px) {
  .bm-header-title { display: none; }
}
.bm-close {
  width: 34px; height: 34px; border-radius: 50%;
  border: 1.5px solid var(--bm-border);
  background: var(--bm-white); color: var(--bm-muted);
  cursor: pointer; display: flex; align-items: center; justify-content: center;
  font-size: 18px; line-height: 1;
  transition: background .2s, color .2s, transform .25s var(--bm-spring);
  -webkit-tap-highlight-color: transparent;
  flex-shrink: 0;
}
.bm-close:hover, .bm-close:active { background: #fee2e2; color: #dc2626; border-color: #fecaca; transform: rotate(90deg); }

/* ── PROGRESS ── */
.bm-progress {
  padding: 12px 20px 0;
  flex-shrink: 0;
}
@media (min-width: 700px) {
  .bm-progress { padding: 14px 28px 0; }
}
.bm-step-row {
  display: flex; overflow-x: auto; scrollbar-width: none;
  -webkit-overflow-scrolling: touch; gap: 0;
  border-bottom: 1px solid var(--bm-border);
}
.bm-step-row::-webkit-scrollbar { display: none; }
.bm-spill {
  display: flex; align-items: center; gap: 6px;
  padding: 10px 10px 11px;
  font-family: 'Syne', sans-serif;
  font-size: 10px; font-weight: 700;
  letter-spacing: .1em; text-transform: uppercase;
  color: var(--bm-muted2); white-space: nowrap;
  border-bottom: 2px solid transparent;
  margin-bottom: -1px;
  transition: color .3s, border-color .3s;
}
.bm-spill .bm-sn {
  width: 18px; height: 18px; border-radius: 50%;
  border: 1.5px solid currentColor;
  display: flex; align-items: center; justify-content: center;
  font-size: 9px; flex-shrink: 0;
  transition: background .3s, color .3s;
}
.bm-spill.done   { color: var(--bm-blue-d); }
.bm-spill.done .bm-sn { background: var(--bm-blue-d); border-color: var(--bm-blue-d); color: white; }
.bm-spill.active { color: var(--bm-ink); border-bottom-color: var(--bm-blue); }
.bm-ptrack { height: 2px; background: var(--bm-border); margin: 0 -20px; position: relative; overflow: hidden; }
@media (min-width: 700px) { .bm-ptrack { margin: 0 -28px; } }
.bm-pfill { position: absolute; left:0; top:0; height:100%; background: linear-gradient(90deg,#38bdf8,var(--bm-blue)); border-radius:1px; transition: width .55s var(--bm-ease); }

/* ── SCROLLABLE BODY ── */
.bm-body {
  flex: 1;
  overflow-y: auto;
  -webkit-overflow-scrolling: touch;
  padding: 22px 20px 16px;
}
@media (min-width: 700px) {
  .bm-body { padding: 24px 28px 16px; }
}

/* ── STEPS ── */
.bm-step { display: none; }
.bm-step.active { display: block; animation: bm-in .36s var(--bm-ease) both; }
.bm-step.back   { animation: bm-out .36s var(--bm-ease) both; }
@keyframes bm-in  { from{opacity:0;transform:translateX(18px)} to{opacity:1;transform:none} }
@keyframes bm-out { from{opacity:0;transform:translateX(-18px)} to{opacity:1;transform:none} }

.bm-sh { font-family: 'Instrument Serif', serif; font-size: clamp(20px,5vw,26px); font-weight:400; line-height:1.15; letter-spacing:-.025em; color:var(--bm-ink); margin-bottom:4px; }
.bm-ss { font-size:13px; font-weight:300; color:var(--bm-muted); margin-bottom:22px; line-height:1.65; }

/* ── FORM ── */
.bm-row { display:grid; grid-template-columns:1fr 1fr; gap:12px; margin-bottom:12px; }
@media (max-width:420px) { .bm-row { grid-template-columns:1fr; } }
.bm-field { display:flex; flex-direction:column; gap:5px; margin-bottom:12px; }
.bm-field:last-child { margin-bottom:0; }
.bm-lbl { font-family:'Syne',sans-serif; font-size:10px; font-weight:700; letter-spacing:.1em; text-transform:uppercase; color:#475569; }
.bm-lbl span { color:#ef4444; }
.bm-input, .bm-sel, .bm-ta {
  width:100%; font-family:'DM Sans',sans-serif;
  font-size:16px; /* prevent iOS zoom */
  font-weight:400; color:var(--bm-ink);
  background:var(--bm-surf); border:1.5px solid var(--bm-border);
  border-radius:10px; padding:12px 14px; outline:none;
  -webkit-appearance:none; appearance:none;
  min-height:50px;
  transition:border-color .2s, background .2s, box-shadow .2s;
}
.bm-input::placeholder,.bm-ta::placeholder { color:#94a3b8; }
.bm-input:focus,.bm-sel:focus,.bm-ta:focus { border-color:var(--bm-blue); background:var(--bm-white); box-shadow:0 0 0 3px rgba(14,165,233,.1); }
.bm-input.err,.bm-sel.err { border-color:#ef4444; box-shadow:0 0 0 3px rgba(239,68,68,.09); }
.bm-ta { resize:none; min-height:90px; line-height:1.6; }
.bm-err { font-size:11px; font-weight:500; color:#ef4444; display:none; align-items:center; gap:4px; }
.bm-err.show { display:flex; }
.bm-sel-wr { position:relative; }
.bm-sel-wr::after { content:''; position:absolute; right:13px; top:50%; transform:translateY(-50%); width:0; height:0; border-left:4px solid transparent; border-right:4px solid transparent; border-top:5px solid #94a3b8; pointer-events:none; }

/* ── SERVICE CARDS ── */
.bm-svcs { display:grid; grid-template-columns:1fr 1fr; gap:9px; margin-bottom:20px; }
@media (min-width:540px) { .bm-svcs { grid-template-columns:repeat(3,1fr); } }
.bm-svc {
  border:1.5px solid var(--bm-border); border-radius:12px;
  padding:13px 11px; cursor:pointer; user-select:none;
  display:flex; flex-direction:column; gap:8px;
  position:relative; background:var(--bm-white);
  transition:border-color .22s,box-shadow .22s,transform .22s var(--bm-spring);
  -webkit-tap-highlight-color:transparent; min-height:100px;
}
.bm-svc:active { transform:scale(.95); }
.bm-svc.sel { border-color:var(--bm-blue); background:var(--bm-blue-bg); box-shadow:0 0 0 3px rgba(14,165,233,.1); }
.bm-svc-ico { width:36px; height:36px; border-radius:9px; background:var(--bm-blue-lt); border:1px solid var(--bm-blue-bd); display:flex; align-items:center; justify-content:center; }
.bm-svc-ico svg { width:18px; height:18px; }
.bm-svc-name { font-family:'Syne',sans-serif; font-size:11.5px; font-weight:700; color:var(--bm-ink); line-height:1.2; }
.bm-svc-hint { font-size:10px; font-weight:300; color:var(--bm-muted2); line-height:1.4; }
.bm-svc-tick { position:absolute; top:8px; right:8px; width:17px; height:17px; border-radius:50%; border:1.5px solid #cbd5e1; display:flex; align-items:center; justify-content:center; transition:background .2s,border-color .2s; }
.bm-svc.sel .bm-svc-tick { background:var(--bm-blue); border-color:var(--bm-blue); }
.bm-svc-tick svg { width:8px; height:8px; display:none; }
.bm-svc.sel .bm-svc-tick svg { display:block; }

/* ── BUDGET ── */
.bm-buds { display:grid; grid-template-columns:1fr 1fr; gap:9px; margin-top:4px; }
.bm-bud { border:1.5px solid var(--bm-border); border-radius:10px; padding:12px; text-align:center; font-family:'Syne',sans-serif; font-size:12px; font-weight:700; color:var(--bm-muted); cursor:pointer; user-select:none; min-height:46px; display:flex; align-items:center; justify-content:center; transition:all .2s var(--bm-spring); -webkit-tap-highlight-color:transparent; }
.bm-bud:active { transform:scale(.95); }
.bm-bud.sel { border-color:var(--bm-blue); background:var(--bm-blue-bg); color:var(--bm-blue); box-shadow:0 0 0 3px rgba(14,165,233,.1); }

/* ── CALENDAR ── */
.bm-cal-head { display:flex; align-items:center; justify-content:space-between; margin-bottom:14px; }
.bm-cal-mo { font-family:'Syne',sans-serif; font-size:15px; font-weight:700; color:var(--bm-ink); }
.bm-cal-navs { display:flex; gap:7px; }
.bm-cal-btn { width:36px; height:36px; border-radius:50%; border:1.5px solid var(--bm-border); background:var(--bm-white); color:var(--bm-muted); cursor:pointer; display:flex; align-items:center; justify-content:center; font-size:16px; line-height:1; transition:all .2s var(--bm-spring); -webkit-tap-highlight-color:transparent; }
.bm-cal-btn:active { background:var(--bm-blue); color:white; border-color:var(--bm-blue); transform:scale(.93); }
.bm-cal-grid { display:grid; grid-template-columns:repeat(7,1fr); gap:3px; margin-bottom:18px; }
.bm-cal-dow { text-align:center; font-family:'Syne',sans-serif; font-size:9px; font-weight:700; letter-spacing:.1em; text-transform:uppercase; color:var(--bm-muted2); padding-bottom:7px; }
.bm-cal-day { aspect-ratio:1; border-radius:9px; display:flex; align-items:center; justify-content:center; font-size:13px; font-weight:500; color:var(--bm-ink); cursor:pointer; border:1.5px solid transparent; transition:all .18s var(--bm-spring); user-select:none; -webkit-tap-highlight-color:transparent; min-height:36px; }
.bm-cal-day:active:not(.past):not(.empty) { transform:scale(.88); }
.bm-cal-day.past  { color:#cbd5e1; cursor:not-allowed; }
.bm-cal-day.empty { cursor:default; }
.bm-cal-day.today { border-color:#7dd3fc; color:var(--bm-blue); font-weight:700; }
.bm-cal-day.sel   { background:var(--bm-blue); color:white; border-color:var(--bm-blue); box-shadow:0 3px 10px rgba(14,165,233,.28); }
.bm-times-lbl { font-family:'Syne',sans-serif; font-size:9.5px; font-weight:700; letter-spacing:.14em; text-transform:uppercase; color:var(--bm-muted2); margin-bottom:10px; }
.bm-times-grid { display:grid; grid-template-columns:repeat(3,1fr); gap:7px; }
@media (min-width:480px) { .bm-times-grid { grid-template-columns:repeat(4,1fr); } }
.bm-time { border:1.5px solid var(--bm-border); border-radius:9px; padding:10px 4px; text-align:center; font-family:'Syne',sans-serif; font-size:11.5px; font-weight:700; color:var(--bm-muted); cursor:pointer; user-select:none; transition:all .18s var(--bm-spring); min-height:44px; display:flex; align-items:center; justify-content:center; -webkit-tap-highlight-color:transparent; }
.bm-time:active { transform:scale(.93); }
.bm-time.sel    { background:var(--bm-blue); color:white; border-color:var(--bm-blue); box-shadow:0 3px 10px rgba(14,165,233,.25); }
.bm-time.booked { color:#cbd5e1; border-color:#f1f5f9; cursor:not-allowed; text-decoration:line-through; background:#fafafa; }
.bm-tz { font-size:11px; color:var(--bm-muted2); margin-top:12px; display:flex; align-items:center; gap:5px; }
.bm-tz svg { width:12px; height:12px; flex-shrink:0; }

/* ── REVIEW ── */
.bm-review { border:1px solid var(--bm-border); border-radius:14px; overflow:hidden; margin-bottom:14px; }
.bm-rr { display:flex; align-items:flex-start; gap:11px; padding:13px 16px; border-bottom:1px solid var(--bm-border); }
.bm-rr:last-child { border-bottom:none; }
.bm-ri { width:33px; height:33px; border-radius:8px; background:var(--bm-blue-lt); border:1px solid var(--bm-blue-bd); display:flex; align-items:center; justify-content:center; flex-shrink:0; }
.bm-ri svg { width:14px; height:14px; color:var(--bm-blue); }
.bm-rl { font-size:9.5px; font-weight:700; letter-spacing:.1em; text-transform:uppercase; color:var(--bm-muted2); margin-bottom:2px; }
.bm-rv { font-size:13px; font-weight:500; color:var(--bm-ink); line-height:1.4; }
.bm-consent { display:flex; align-items:flex-start; gap:11px; background:var(--bm-blue-bg); border:1.5px solid var(--bm-blue-bd); border-radius:11px; padding:14px 15px; cursor:pointer; user-select:none; -webkit-tap-highlight-color:transparent; transition:border-color .2s; }
.bm-consent.checked { border-color:var(--bm-blue); box-shadow:0 0 0 3px rgba(14,165,233,.1); }
.bm-cbox { width:20px; height:20px; border-radius:6px; border:2px solid var(--bm-blue-bd); background:white; display:flex; align-items:center; justify-content:center; flex-shrink:0; margin-top:1px; transition:background .2s, border-color .2s; }
.bm-consent.checked .bm-cbox { background:var(--bm-blue); border-color:var(--bm-blue); }
.bm-cbox svg { width:10px; height:10px; display:none; }
.bm-consent.checked .bm-cbox svg { display:block; }
.bm-ctxt { font-size:12.5px; color:#475569; line-height:1.6; }
.bm-ctxt a { color:var(--bm-blue); text-decoration:none; }

/* ── SUCCESS ── */
.bm-success { display:flex; flex-direction:column; align-items:center; text-align:center; gap:14px; padding:8px 0; }
.bm-sring { width:72px; height:72px; border-radius:50%; background:#f0fdf4; border:2px solid #86efac; display:flex; align-items:center; justify-content:center; animation:bm-pop .5s var(--bm-spring) both; }
@keyframes bm-pop { from{transform:scale(0);opacity:0} to{transform:scale(1);opacity:1} }
.bm-sring svg { width:30px; height:30px; color:var(--bm-green); }
.bm-stitle { font-family:'Instrument Serif',serif; font-size:clamp(22px,5vw,28px); color:var(--bm-ink); letter-spacing:-.025em; }
.bm-ssub { font-size:13.5px; color:var(--bm-muted); line-height:1.65; max-width:280px; }
.bm-sbox { background:var(--bm-surf); border:1px solid var(--bm-border); border-radius:13px; padding:16px 18px; width:100%; display:flex; flex-direction:column; gap:11px; }
.bm-si { display:flex; align-items:center; gap:10px; font-size:13px; text-align:left; }
.bm-si svg { width:14px; height:14px; color:var(--bm-blue); flex-shrink:0; }
.bm-si strong { color:var(--bm-ink); }
.bm-si span   { color:var(--bm-muted); }
.bm-sdiv { height:1px; background:var(--bm-border); }
.bm-sclose { display:flex; align-items:center; justify-content:center; gap:8px; width:100%; padding:15px; font-family:'Syne',sans-serif; font-size:13.5px; font-weight:700; color:white; background:var(--bm-ink); border:none; border-radius:12px; cursor:pointer; transition:background .2s, transform .22s var(--bm-spring); -webkit-tap-highlight-color:transparent; }
.bm-sclose:active { background:var(--bm-ink2); transform:scale(.97); }

/* ── FOOTER BUTTONS ── */
.bm-foot {
  display:flex; align-items:center; justify-content:space-between; gap:10px;
  padding:12px 20px calc(env(safe-area-inset-bottom,12px) + 12px);
  border-top:1px solid var(--bm-border);
  background:var(--bm-white);
  flex-shrink:0;
}
@media (min-width:700px) {
  .bm-foot { padding:14px 28px 18px; }
}
.bm-btn-bk {
  width:50px; height:50px; border-radius:12px;
  border:1.5px solid var(--bm-border); background:var(--bm-white);
  color:var(--bm-muted); cursor:pointer;
  display:flex; align-items:center; justify-content:center;
  flex-shrink:0; transition:all .2s var(--bm-spring);
  -webkit-tap-highlight-color:transparent;
}
.bm-btn-bk:active { background:var(--bm-surf); transform:scale(.93); }
.bm-btn-bk svg { width:18px; height:18px; }
.bm-btn-nx {
  flex:1; height:50px; width: 10px;
  display:flex; align-items:center; justify-content:center; gap:8px;
  font-family:'Syne',sans-serif; font-size:13.5px; font-weight:700;
  color:white; background:var(--bm-blue);
  border:none; border-radius:12px; cursor:pointer;
  transition:background .2s, transform .22s var(--bm-spring), box-shadow .2s;
  box-shadow:0 4px 16px rgba(14,165,233,.28);
  position:relative; overflow:hidden;
  -webkit-tap-highlight-color:transparent;
}
.bm-btn-nx:active { transform:scale(.97); background:var(--bm-blue-d); }
.bm-btn-nx:disabled { opacity:.55; pointer-events:none; }
.bm-btn-nx svg { width:15px; height:15px; }
.bm-spinner { width:15px; height:15px; border:2px solid rgba(255,255,255,.3); border-top-color:white; border-radius:50%; animation:bm-spin .7s linear infinite; display:none; flex-shrink:0; }
@keyframes bm-spin { to { transform:rotate(360deg); } }
.bm-rpl { position:absolute; border-radius:50%; background:rgba(255,255,255,.25); transform:scale(0); animation:bm-rpl .55s ease-out forwards; pointer-events:none; }
@keyframes bm-rpl { to { transform:scale(4); opacity:0; } }

/* ── API ERROR TOAST ── */
.bm-toast {
  position:fixed; bottom:90px; left:50%; transform:translateX(-50%);
  background:var(--bm-ink); color:white;
  padding:10px 20px; border-radius:30px;
  font-size:13px; font-weight:500; z-index:10001;
  white-space:nowrap;
  animation:bm-toast-in .3s var(--bm-ease) both;
  pointer-events:none;
}
@keyframes bm-toast-in { from{opacity:0;transform:translate(-50%,8px)} to{opacity:1;transform:translate(-50%,0)} }