    :root {
      --bg: radial-gradient(circle at center, #ffffff 0%, #f8f9fa 100%);
      --ink: #09090b;
      /* Zinc 950 */
      --muted: #71717a;
      /* Zinc 500 */
      --pill: #09090b;
      --accent: #2563eb;
      /* Clean Blue Accent */
      --accent-muted: #eff6ff;
      --border: rgba(0, 0, 0, 0.06);

      /* Dynamic Stage size based on vmin to scale perfectly on all screen resolutions.
         min() with vw guarantees the stage never exceeds the viewport width on very narrow phones. */
      --stage-size: clamp(240px, min(92vmin, 90vw), 1300px);
      --radius: calc(var(--stage-size) * 0.475);
    }

    * {
      box-sizing: border-box;
      margin: 0;
      padding: 0;
    }

    html {
      overflow-x: hidden;
      width: 100%;
    }

    body {
      margin: 0;
      padding-top: 80px;
      /* Offset for fixed header */
      background: var(--bg);
      background-attachment: fixed;
      font-family: 'Montserrat', -apple-system, BlinkMacSystemFont, sans-serif;
      color: var(--ink);
      min-height: 100vh;
      display: flex;
      flex-direction: column;
      justify-content: space-between;
      align-items: center;
      overflow-x: hidden;
      opacity: 0;
      transition: opacity 0.8s ease;
    }

    body.lock-scroll {
      overflow: hidden;
    }

    body.loaded {
      opacity: 1;
    }

    /* Subtle dot grid overlay for high-end SaaS aesthetic */
    body::before {
      content: '';
      position: fixed;
      inset: 0;
      background-image:
        linear-gradient(var(--border) 1px, transparent 1px),
        linear-gradient(90deg, var(--border) 1px, transparent 1px);
      background-size: clamp(30px, 6vw, 50px) clamp(30px, 6vw, 50px);
      background-position: center center;
      pointer-events: none;
      z-index: -1;
      opacity: 0;
      transition: opacity 1.5s ease 0.3s;
    }

    body.loaded::before {
      opacity: 0.7;
    }

    /* NAV */
    nav {
      position: fixed;
      top: 0;
      left: 0;
      right: 0;
      display: flex;
      align-items: center;
      justify-content: space-between;
      padding: 24px 32px;
      max-width: 100% !important;
      width: 100% !important;
      margin: 0 auto;
      opacity: 0;
      transform: translateY(-15px);
      transition: opacity 1.2s cubic-bezier(0.16, 1, 0.3, 1), transform 1.2s cubic-bezier(0.16, 1, 0.3, 1), padding 0.3s ease, background-color 0.3s ease, border-color 0.3s ease;
      z-index: 1000;
      background: transparent;
      border-bottom: 1px solid transparent;
    }

    nav.scrolled {
      padding: 14px 32px;
      background: rgba(255, 255, 255, 0.75);
      backdrop-filter: blur(20px);
      -webkit-backdrop-filter: blur(20px);
      border-bottom: 1px solid rgba(0, 0, 0, 0.06);
      box-shadow: 0 4px 30px rgba(0, 0, 0, 0.02);
    }

    .loaded nav {
      opacity: 1;
      transform: translateY(0);
    }

    .logo {
      display: flex;
      align-items: center;
      cursor: pointer;
    }

    .brand-logo-img {
      height: 36px;
      /* standard navbar logo height */
      width: auto;
      display: block;
      filter: brightness(0);
      /* force logo black */
      transition: opacity 0.2s ease;
    }

    .brand-logo-img:hover {
      opacity: 0.8;
    }

    .nav-links {
      display: flex;
      align-items: center;
      gap: 32px;
      font-size: 18px;
      font-weight: 500;
      color: #52525b;
      /* Zinc 600 */
    }

    .nav-links a {
      text-decoration: none;
      color: inherit;
      transition: color 0.3s;
      position: relative;
    }

    .nav-links a:hover {
      color: var(--ink);
    }

    /* MEGA DROPDOWN MENU */
    .has-dropdown {
      position: static;
    }



    /* Interactive Dropdown Arrow */
    .chevron {
      display: inline-block;
      width: 5px;
      height: 5px;
      border-right: 1.5px solid currentColor;
      border-bottom: 1.5px solid currentColor;
      transform: rotate(45deg);
      margin-left: 6px;
      margin-top: -2px;
      transition: transform 0.35s cubic-bezier(0.16, 1, 0.3, 1);
    }

    .has-dropdown.dropdown-open .chevron {
      transform: rotate(-135deg) translateY(1.5px) translateX(-1.5px);
    }

    .nav-link-dropdown {
      display: flex;
      align-items: center;
      cursor: pointer;
      position: relative;
    }

    /* Invisible hover bridge to prevent menu close */
    .nav-link-dropdown::after {
      content: '';
      position: absolute;
      top: 100%;
      left: 0;
      width: 100%;
      height: 30px;
    }

    .mega-menu {
      position: absolute;
      top: 100%;
      left: 0;
      right: 0;
      width: 100%;
      transform: translateY(12px);
      transform-origin: top center;
      background: rgba(255, 255, 255, 0.98);
      backdrop-filter: blur(24px);
      -webkit-backdrop-filter: blur(24px);
      border-radius: 0;
      border-top: 1px solid rgba(0, 0, 0, 0.06);
      border-bottom: 1px solid rgba(0, 0, 0, 0.08);
      border-left: none;
      border-right: none;
      box-shadow: 0 30px 60px -15px rgba(0, 0, 0, 0.08);
      display: flex;
      justify-content: center;
      align-items: flex-start;
      padding: 40px 10%;
      gap: 60px;
      opacity: 0;
      pointer-events: none;
      visibility: hidden;
      transition: opacity 0.35s cubic-bezier(0.16, 1, 0.3, 1), transform 0.35s cubic-bezier(0.16, 1, 0.3, 1), visibility 0.35s;
      z-index: 101;
    }

    .has-dropdown.dropdown-open .mega-menu {
      opacity: 1;
      pointer-events: auto;
      visibility: visible;
      transform: translateY(0);
    }

    /* Left Sidebar Categories */
    .mega-menu .menu-sidebar {
      width: 240px;
      display: flex;
      flex-direction: column;
      border-right: 1px solid rgba(0, 0, 0, 0.06);
      padding-right: 32px;
      gap: 16px;
      flex-shrink: 0;
    }

    .mega-menu .sidebar-item {
      font-size: 13px;
      font-weight: 600;
      color: #71717a;
      text-decoration: none;
      background: none;
      border: none;
      padding: 6px 0;
      text-align: left;
      cursor: pointer;
      letter-spacing: 0.05em;
      transition: color 0.25s, transform 0.25s;
      outline: none;
      display: flex;
      align-items: center;
      gap: 10px;
    }

    .mega-menu .sidebar-item:hover,
    .mega-menu .sidebar-item.active {
      color: var(--ink);
    }

    .mega-menu .sidebar-item.active {
      font-weight: 700;
      position: relative;
    }

    /* Content Area & Tabs */
    .mega-menu .menu-content-grid {
      flex: 1;
      max-width: 760px;
      position: relative;
    }

    .mega-menu .menu-tab-content {
      display: none;
      opacity: 0;
      transform: translateY(10px);
      transition: opacity 0.4s ease, transform 0.4s ease;
    }

    .mega-menu .menu-tab-content.active {
      display: block;
      opacity: 1;
      transform: translateY(0);
    }

    /* Horizontal Showcase Card (India Art Fair Design Format) */
    .mega-menu .showcase-card {
      display: flex;
      align-items: center;
      gap: 36px;
      width: 100%;
    }

    .mega-menu .card-image-wrapper {
      width: 330px;
      height: 220px;
      flex-shrink: 0;
      background: none;
      border: none;
      box-shadow: none;
      display: flex;
      align-items: center;
      justify-content: center;
    }

    .mega-menu .card-image-wrapper img {
      width: 100%;
      height: 100%;
      object-fit: contain;
      background: none;
      transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
    }

    .mega-menu .showcase-card:hover .card-image-wrapper img {
      transform: scale(1.04);
    }

    .mega-menu .card-text-content {
      display: flex;
      flex-direction: column;
      align-items: flex-start;
      gap: 8px;
    }

    .mega-menu .card-badge {
      font-size: 10px;
      font-weight: 700;
      letter-spacing: 0.08em;
      color: #71717a;
      text-transform: uppercase;
    }

    .mega-menu .card-title {
      font-size: 16px;
      font-weight: 700;
      line-height: 1.35;
      color: var(--ink);
      letter-spacing: -0.02em;
      margin: 4px 0;
      text-transform: uppercase;
    }

    .mega-menu .card-desc {
      font-size: 13px;
      color: var(--muted);
      line-height: 1.5;
      margin-bottom: 12px;
    }

    .mega-menu .card-btn {
      font-size: 11px;
      font-weight: 700;
      letter-spacing: 0.06em;
      color: var(--ink);
      text-decoration: none;
      padding: 10px 24px;
      border: 1.5px solid var(--ink);
      border-radius: 4px;
      transition: background 0.3s, color 0.3s, border-color 0.3s;
      text-transform: uppercase;
      display: inline-block;
    }

    .mega-menu .card-btn:hover {
      background: var(--ink);
      color: #fff;
    }

    .nav-product-icon {
      width: 18px;
      height: 18px;
      object-fit: contain;
      display: inline-block;
      vertical-align: middle;
      flex-shrink: 0;
    }

    .nav-cta-group {
      display: flex;
      align-items: center;
      gap: 12px;
    }

    .btn-demo {
      background: linear-gradient(145deg, #b08df2 10%, #7aa4f6 90%);
      color: #ffffff;
      border: 1px solid transparent;
      padding: 10px 20px;
      border-radius: 999px;
      font-size: 16px;
      font-weight: 500;
      cursor: pointer;
      box-shadow: 0 8px 20px -10px rgba(122, 164, 246, 0.6);
      transition: transform 0.2s ease, box-shadow 0.2s ease, filter 0.2s ease;
    }

    .btn-demo:hover {
      transform: translateY(-2px) scale(1.02);
      box-shadow: 0 14px 28px -10px rgba(122, 164, 246, 0.7);
      filter: brightness(1.06);
    }

    .btn-demo:active {
      transform: scale(0.98);
    }

    .btn-try {
      background: #18181b;
      /* Black/Zinc 900 */
      color: #fff;
      border: 1px solid #18181b;
      padding: 10px 22px;
      border-radius: 999px;
      font-size: 14px;
      font-weight: 500;
      cursor: pointer;
      box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
      transition: background 0.2s ease, transform 0.1s ease, box-shadow 0.2s ease;
      display: inline-flex;
      align-items: center;
      gap: 4px;
    }

    .btn-try:hover {
      background: #000000;
      /* Pure black on hover */
      border-color: #000000;
      box-shadow: 0 4px 16px rgba(0, 0, 0, 0.15);
      transform: scale(1.02);
    }

    .btn-try:active {
      transform: scale(0.98);
    }

    /* STAGE / ORBIT CONTAINER */
    .stage {
      position: relative;
      width: var(--stage-size);
      height: var(--stage-size);

      /* Explicit margins push the stage down to clear space for the header */
      margin: 50px auto 30px;

      display: flex;
      align-items: center;
      justify-content: center;
      perspective: 1200px;
    }

    /* Dashed orbital path ring in background for premium geometry look */
    .stage::before {
      content: '';
      position: absolute;
      width: calc(var(--radius) * 2);
      height: calc(var(--radius) * 2);
      border: 1px dashed rgba(0, 0, 0, 0.05);
      border-radius: 50%;
      pointer-events: none;
      z-index: 1;
    }

    .orbit-ring {
      position: absolute;
      width: 100%;
      height: 100%;
      pointer-events: none;
      /* Let hover events pass through container to child cards */
      animation: spin 48s linear infinite;
    }

    .orbit-item {
      position: absolute;
      left: 50%;
      top: 50%;

      /* Card dimensions scale fluidly, expanded (10% by 13.2%) for bolder presence */
      width: calc(var(--stage-size) * 0.10);
      height: calc(var(--stage-size) * 0.132);

      pointer-events: auto;
      /* Re-enable pointer events for the cards */
      transform-origin: center;

      /* Start state for intro animation (all stacked at center) */
      transform: translate(-50%, -50%) translate(0, 0) scale(0);
      opacity: 0;

      /* High performance transition when class is toggled */
      transition: transform 1.5s cubic-bezier(0.16, 1, 0.3, 1), opacity 1.5s cubic-bezier(0.16, 1, 0.3, 1);
      z-index: 2;
    }

    /* Active loaded state */
    .stage.loaded .orbit-item {
      transform: translate(-50%, -50%) translate(var(--tx), var(--ty)) scale(1);
      opacity: 1;
    }

    .orbit-item .counter {
      width: 100%;
      height: 100%;
      animation: counter-spin 48s linear infinite;
    }

    .orbit-item .card-inner {
      width: 100%;
      height: 100%;
      position: relative;
      background: transparent;
      cursor: pointer;

      /* 90 degree straight layout (no rotation on card-inner wrapper) */
      transform: rotate(0deg);
      transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);

      /* Establish 3D space context */
      perspective: 1000px;
    }

    .orbit-item .flip-card {
      width: 100%;
      height: 100%;
      position: relative;
      transform-style: preserve-3d;

      /* Flip animation cycles back and forth */
      animation: flip-all 10s ease-in-out infinite;
    }

    .orbit-item .card-face {
      position: absolute;
      width: 100%;
      height: 100%;
      backface-visibility: hidden;
      border-radius: 12%;
      /* Scales rounded corner relative to card size */
      overflow: hidden;
      background: #fff;
      box-shadow: 0 10px 25px -8px rgba(0, 0, 0, 0.14), 0 4px 10px -6px rgba(0, 0, 0, 0.06);
      border: 1px solid rgba(255, 255, 255, 0.7);
      transition: border-color 0.4s, box-shadow 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    }

    .orbit-item .card-front {
      transform: rotateY(0deg);
      z-index: 2;
    }

    .orbit-item .card-back {
      transform: rotateY(180deg);
    }

    .orbit-item img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      display: block;
      user-select: none;
      -webkit-user-drag: none;
    }

    /* Interactive Hover States */
    .orbit-item:hover {
      z-index: 12;
    }

    /* Scale up the element on hover */
    .orbit-item:hover .card-inner {
      transform: scale(1.26);
    }

    /* Deeper shadow and highlighted border on hover */
    .orbit-item:hover .card-face {
      box-shadow: 0 25px 45px -10px rgba(0, 0, 0, 0.18), 0 12px 20px -8px rgba(0, 0, 0, 0.1);
      border-color: rgba(255, 255, 255, 0.9);
    }

    /* Pause orbit rotation and card flipping on hover */
    .stage:hover .orbit-ring,
    .stage:hover .counter,
    .stage:hover .flip-card {
      animation-play-state: paused;
    }

    @keyframes spin {
      from {
        transform: rotate(0deg);
      }

      to {
        transform: rotate(360deg);
      }
    }

    @keyframes counter-spin {
      from {
        transform: rotate(0deg);
      }

      to {
        transform: rotate(-360deg);
      }
    }

    /* Card flip sequence (stays face up, flips over to back, and returns) */
    @keyframes flip-all {

      0%,
      70% {
        transform: rotateY(0deg);
      }

      75%,
      90% {
        transform: rotateY(180deg);
      }

      95%,
      100% {
        transform: rotateY(360deg);
      }
    }

    /* HERO COPY */
    .hero-copy {
      position: absolute;
      text-align: center;
      max-width: 460px;
      width: 75%;
      z-index: 5;
      pointer-events: none;
      /* Keep text transparent to pointer events during load */

      /* Slide-up / fade-in state */
      opacity: 0;
      transform: scale(0.96) translateY(20px);
      transition: opacity 1.6s cubic-bezier(0.16, 1, 0.3, 1), transform 1.6s cubic-bezier(0.16, 1, 0.3, 1);
    }

    .loaded .hero-copy {
      opacity: 1;
      transform: scale(1) translateY(0);
      pointer-events: auto;
      /* Enable buttons once loaded */
    }

    /* Premium announcement release badge layout */
    .badge-wrapper {
      display: inline-flex;
      align-items: center;
      gap: 8px;
      padding: 4px 10px;
      border-radius: 99px;
      background: rgba(0, 0, 0, 0.04);
      border: 1px solid rgba(0, 0, 0, 0.05);
      font-size: clamp(10px, calc(var(--stage-size) * 0.024), 11px);
      font-weight: 500;
      color: #3f3f46;
      /* Zinc 700 */
      margin-bottom: clamp(12px, calc(var(--stage-size) * 0.035), 24px);
      transition: background 0.3s;
      cursor: pointer;
    }

    .badge-wrapper:hover {
      background: rgba(0, 0, 0, 0.07);
    }

    .pill-badge {
      background: var(--ink);
      color: #fff;
      padding: 2px 6px;
      border-radius: 99px;
      font-weight: 600;
      font-size: 9.5px;
      text-transform: uppercase;
      letter-spacing: 0.05em;
    }

    .hero-copy h1 {
      font-size: clamp(20px, calc(var(--stage-size) * 0.052), 44px);
      font-weight: 500;
      letter-spacing: -0.02em;
      line-height: 1.25;
      color: #4b5563;
      /* Dark gray charcoal color matching the image */
      margin-bottom: 14px;
    }

    .gradient-text {
      background: linear-gradient(145deg, #b08df2 10%, #7aa4f6 90%);
      -webkit-background-clip: text;
      -webkit-text-fill-color: transparent;
      background-clip: text;
      font-weight: 600;
    }

    .hero-copy p {
      font-size: clamp(11.5px, calc(var(--stage-size) * 0.0175), 14px);
      color: var(--muted);
      line-height: 1.6;
      margin-bottom: clamp(20px, calc(var(--stage-size) * 0.045), 32px);
      padding: 0 12px;
    }

    /* Double CTA Buttons layout */
    .cta-group {
      display: inline-flex;
      align-items: center;
      gap: 12px;
      justify-content: center;
    }

    /* Primary button (Filled shadcn style) */
    .cta-primary {
      background: var(--pill);
      color: #fff;
      border: 1px solid #1e1e24;
      padding: clamp(8px, calc(var(--stage-size) * 0.016), 12px) clamp(16px, calc(var(--stage-size) * 0.038), 30px);
      border-radius: 999px;
      font-size: clamp(11px, calc(var(--stage-size) * 0.0175), 14px);
      font-weight: 500;
      cursor: pointer;
      box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1), 0 1px 2px rgba(0, 0, 0, 0.06);
      transition: background 0.3s, transform 0.2s, box-shadow 0.3s;
    }

    .cta-primary:hover {
      background: #000;
      transform: scale(1.03);
      box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
    }

    .cta-primary:active {
      transform: scale(0.98);
    }

    /* Secondary button (Outline style) */
    .cta-secondary {
      background: transparent;
      color: var(--ink);
      border: 1px solid rgba(0, 0, 0, 0.08);
      padding: clamp(8px, calc(var(--stage-size) * 0.016), 12px) clamp(16px, calc(var(--stage-size) * 0.038), 30px);
      border-radius: 999px;
      font-size: clamp(11px, calc(var(--stage-size) * 0.0175), 14px);
      font-weight: 500;
      cursor: pointer;
      box-shadow: 0 1px 2px rgba(0, 0, 0, 0.02);
      transition: background 0.3s, transform 0.2s, border-color 0.3s;
    }

    .cta-secondary:hover {
      background: rgba(0, 0, 0, 0.025);
      border-color: rgba(0, 0, 0, 0.16);
      transform: scale(1.03);
    }

    .cta-secondary:active {
      transform: scale(0.98);
    }



    /* CAPTION FOOTER */
    footer.caption {
      text-align: center;
      padding: 24px 20px 48px;
      opacity: 0;
      transform: translateY(15px);
      transition: opacity 1.4s cubic-bezier(0.16, 1, 0.3, 1), transform 1.4s cubic-bezier(0.16, 1, 0.3, 1);
      z-index: 10;
    }

    .loaded footer.caption {
      opacity: 1;
      transform: translateY(0);
    }

    footer.caption h3 {
      font-size: 16px;
      font-weight: 600;
      margin-bottom: 4px;
      color: var(--ink);
    }

    footer.caption p {
      font-size: 13px;
      color: var(--muted);
    }

    /* HAMBURGER TOGGLE STYLING */
    .hamburger-btn {
      display: none;
      flex-direction: column;
      justify-content: space-between;
      width: 24px;
      height: 18px;
      background: transparent;
      border: none;
      cursor: pointer;
      padding: 0;
      z-index: 1100;
      margin-left: auto;
    }

    .hamburger-btn span {
      display: block;
      width: 100%;
      height: 2px;
      background-color: var(--ink);
      border-radius: 2px;
      transition: transform 0.3s cubic-bezier(0.16, 1, 0.3, 1), opacity 0.3s ease;
    }

    .hamburger-btn.active span:nth-child(1) {
      transform: translateY(8px) rotate(45deg);
    }

    .hamburger-btn.active span:nth-child(2) {
      opacity: 0;
    }

    .hamburger-btn.active span:nth-child(3) {
      transform: translateY(-8px) rotate(-45deg);
    }

    /* MOBILE DRAWER STYLING */
    .mobile-drawer {
      position: fixed;
      top: 0;
      right: 0;
      left: auto;
      width: 82vw;
      max-width: 340px;
      height: 100vh;
      background: rgba(255, 255, 255, 0.98);
      backdrop-filter: blur(24px);
      -webkit-backdrop-filter: blur(24px);
      z-index: 1050;
      padding: 80px 24px 40px;
      display: flex;
      flex-direction: column;
      transform: translateX(100%);
      transition: transform 0.5s cubic-bezier(0.16, 1, 0.3, 1);
      box-shadow: -10px 0 30px rgba(0, 0, 0, 0.04);
      border-left: 1px solid rgba(0, 0, 0, 0.05);
    }

    .mobile-drawer-overlay {
      position: fixed;
      inset: 0;
      background: rgba(0, 0, 0, 0.25);
      backdrop-filter: blur(4px);
      -webkit-backdrop-filter: blur(4px);
      z-index: 1040;
      opacity: 0;
      pointer-events: none;
      transition: opacity 0.4s ease;
    }

    .mobile-drawer-overlay.active {
      opacity: 1;
      pointer-events: auto;
    }

    .drawer-close-btn {
      position: absolute;
      top: 20px;
      right: 20px;
      background: transparent;
      border: none;
      font-size: 28px;
      font-weight: 300;
      color: var(--ink);
      cursor: pointer;
      padding: 8px;
      line-height: 1;
      transition: transform 0.2s ease, opacity 0.2s ease;
    }

    .drawer-close-btn:hover {
      opacity: 0.7;
      transform: scale(1.1);
    }

    .mobile-drawer.active {
      transform: translateX(0);
    }

    .mobile-drawer-content {
      display: flex;
      flex-direction: column;
      justify-content: space-between;
      height: 100%;
      overflow-y: auto;
    }

    .mobile-nav-links {
      display: flex;
      flex-direction: column;
      gap: 24px;
      font-size: 20px;
      font-weight: 600;
    }

    .mobile-nav-links a {
      text-decoration: none;
      color: var(--ink);
      transition: opacity 0.2s;
    }

    .mobile-nav-links a:hover {
      opacity: 0.7;
    }

    .mobile-dropdown-toggle {
      display: flex;
      align-items: center;
      justify-content: space-between;
      width: 100%;
      background: transparent;
      border: none;
      font-size: 20px;
      font-weight: 600;
      color: var(--ink);
      padding: 0;
      cursor: pointer;
      text-align: left;
      font-family: inherit;
    }

    .mobile-dropdown-menu {
      max-height: 0;
      overflow: hidden;
      transition: max-height 0.4s cubic-bezier(0.16, 1, 0.3, 1), margin-top 0.4s ease;
      display: flex;
      flex-direction: column;
      gap: 12px;
    }

    .mobile-dropdown-menu.active {
      max-height: 400px;
      margin-top: 16px;
    }

    .mobile-product-item {
      display: flex;
      align-items: center;
      gap: 12px;
      padding: 12px;
      border-radius: 12px;
      background: rgba(0, 0, 0, 0.03);
      text-decoration: none;
    }

    .mobile-product-title {
      font-size: 15px;
      font-weight: 600;
      color: var(--ink);
      display: flex;
      align-items: center;
      gap: 8px;
    }

    .mobile-product-desc {
      font-size: 12px;
      color: var(--muted);
      font-weight: 400;
      margin-top: 2px;
    }

    .mobile-cta-group {
      display: flex;
      flex-direction: column;
      gap: 12px;
      margin-top: 30px;
    }

    .mobile-cta-group button {
      width: 100%;
      padding: 12px;
      border-radius: 99px;
      font-size: 15px;
      font-weight: 600;
      cursor: pointer;
    }

    /* RESPONSIVE LAYOUTS & MOBILE SPACING */
    @media (max-width: 768px) {
      body {
        padding-top: 70px;
      }

      nav {
        padding: 16px 24px;
        background: rgba(255, 255, 255, 0.7);
        backdrop-filter: blur(20px);
        -webkit-backdrop-filter: blur(20px);
        border-bottom: 1px solid rgba(0, 0, 0, 0.06);
      }

      nav.scrolled {
        padding: 12px 24px;
      }

      .nav-links {
        display: none;
      }

      .nav-cta-group {
        display: none;
      }

      .hamburger-btn {
        display: flex;
      }

      /* Stage responsiveness margin tweak */
      .stage {
        margin: 30px auto 10px;
      }

    }

    @media (max-width: 480px) {
      nav {
        padding: 12px 16px;
      }

      .brand-logo-img {
        height: 22px;
      }

      .stage {
        margin: 20px auto 10px;
      }





      footer.caption {
        padding: 16px 20px 24px;
      }

      footer.caption h3 {
        font-size: 14px;
      }

      footer.caption p {
        font-size: 12px;
      }
    }

    /* Extra-small phones (iPhone SE, Galaxy Fold, small Android) */
    @media (max-width: 380px) {
      nav {
        padding: 10px 14px;
      }

      .mobile-drawer {
        width: 88vw;
        padding: 70px 20px 32px;
      }

      .contact-card-wrapper {
        padding: 24px;
        border-radius: 16px;
      }

      .contact-container {
        padding: 0 16px;
        gap: 36px;
      }

      .footer-container {
        padding: 40px 16px 32px 16px;
      }

      .footer-bottom {
        padding: 20px 16px;
      }

      .showcase-row {
        padding: 0 16px;
      }
    }

    /* Short landscape mobile screen height handling */
    @media (max-height: 600px) {
      /* nav {
        padding: 12px 24px;
      } */

      .stage {
        margin: 20px auto 10px;
      }

      footer.caption {
        padding: 12px 20px 20px;
      }
    }

    /* ACCESSIBILITY: REDUCED MOTION PREFERENCE */
    @media (prefers-reduced-motion: reduce) {

      .orbit-ring,
      .orbit-item .counter,
      .orbit-item .flip-card,
      .mega-menu,
      .mega-menu .preview-image {
        animation: none !important;
        transition: none !important;
      }

      .orbit-item {
        transition: none !important;
      }

      .hero-copy,
      nav,
      footer.caption {
        transform: none !important;
        transition: none !important;
      }

      .products-showcase-section {
        opacity: 1 !important;
      }

      .showcase-row,
      .section-header {
        transform: none !important;
        transition: none !important;
        opacity: 1 !important;
      }
    }

    /* ALTERNATING PRODUCTS SHOWCASE SECTION */
    .products-showcase-section {
      background: linear-gradient(to bottom, rgba(255, 255, 255, 0) 0%, #ffffff 150px, #ffffff calc(100% - 150px), rgba(255, 255, 255, 0) 100%);
      width: 100%;
      padding: 100px 0;
      z-index: 10;
      position: relative;
    }

    .section-header {
      text-align: center;
      max-width: 800px;
      margin: 0 auto 80px auto;
      padding: 0 32px;
      opacity: 0;
      transform: translateY(20px);
      transition: opacity 1.5s cubic-bezier(0.16, 1, 0.3, 1), transform 1.5s cubic-bezier(0.16, 1, 0.3, 1);
    }

    .loaded .section-header {
      opacity: 1;
      transform: translateY(0);
    }

    .section-header-title {
      font-size: clamp(28px, calc(var(--stage-size) * 0.045), 44px);
      font-weight: 500;
      color: #4b5563;
      /* Charcoal gray matching our main header style */
      line-height: 1.25;
      letter-spacing: -0.03em;
    }

    .section-header-title span {
      background: linear-gradient(145deg, #b08df2 10%, #7aa4f6 90%);
      -webkit-background-clip: text;
      -webkit-text-fill-color: transparent;
      background-clip: text;
      font-weight: 600;
    }

    .showcase-row {
      max-width: 1200px;
      width: 100%;
      margin: 0 auto 80px auto;
      display: flex;
      align-items: center;
      gap: 80px;
      padding: 0 32px;
      opacity: 0;
      transform: translateY(40px);
      transition: opacity 1.2s cubic-bezier(0.16, 1, 0.3, 1), transform 1.2s cubic-bezier(0.16, 1, 0.3, 1);
    }

    .showcase-row:last-child {
      margin-bottom: 0;
    }

    .showcase-row.visible {
      opacity: 1;
      transform: translateY(0);
    }

    .showcase-row:nth-child(even) {
      flex-direction: row-reverse;
    }

    .showcase-content {
      flex: 1.1;
      display: flex;
      flex-direction: column;
      align-items: flex-start;
    }

    .showcase-overline {
      font-size: 11px;
      font-weight: 700;
      text-transform: uppercase;
      letter-spacing: 0.1em;
      margin-bottom: 12px;
    }

    .showcase-overline-logo {
      display: block;
      height: 40px;
      width: auto;
      margin-bottom: 12px;
    }

    .showcase-title {
      font-size: clamp(28px, calc(var(--stage-size) * 0.04), 38px);
      font-weight: 600;
      color: var(--ink);
      line-height: 1.22;
      margin-bottom: 16px;
      letter-spacing: -0.02em;
    }

    .showcase-desc {
      font-size: clamp(16px, calc(var(--stage-size) * 0.016), 17px);
      color: var(--muted);
      line-height: 1.6;
      margin-bottom: 0px;
    }

    .showcase-link {
      font-size: 16px;
      font-weight: 600;
      text-decoration: none;
      display: inline-flex;
      align-items: center;
      gap: 6px;
      padding: 10px 22px;
      border-radius: 999px;
      border: 1px solid currentColor;
      background: transparent;
      transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1), transform 0.2s ease;
      margin-top: 16px;
    }

    .showcase-link::after {
      content: ' →';
      transition: transform 0.2s ease;
    }

    .showcase-link:hover::after {
      transform: translateX(3px);
    }

    .showcase-link:active {
      transform: scale(0.97);
    }

    /* Product Theme Hover Enhancements — filled with each page's own gradient */
    .expohive .showcase-link:hover,
    html[data-product="expohive"] .showcase-link:hover {
      background-image: linear-gradient(211deg, #efbb38 40%, #d97706 100%);
      color: #fff !important;
      border-color: #d97706;
      box-shadow: 0 4px 12px rgba(217, 119, 6, 0.3);
    }

    .awardocado .showcase-link:hover,
    html[data-product="awardocado"] .showcase-link:hover {
      background-image: linear-gradient(19deg, #01471f 40%, #547f4b 100%);
      color: #fff !important;
      border-color: #01471f;
      box-shadow: 0 4px 12px rgba(1, 71, 31, 0.35);
    }

    .intel-suite .showcase-link:hover {
      /* background: linear-gradient(145deg, #b08df2 10%, #7aa4f6 90%); */
      color: #fff !important;
      border-color: #7aa4f6;
      box-shadow: 0 4px 12px rgba(122, 164, 246, 0.35);
    }

    .marketing .showcase-link:hover {
      /* background: linear-gradient(145deg, #b08df2 10%, #7aa4f6 90%); */
      color: #fff !important;
      border-color: #7aa4f6;
      box-shadow: 0 4px 12px rgba(122, 164, 246, 0.35);
    }

    .showcase-visual {
      flex: 0.9;
      position: relative;
      display: flex;
      justify-content: center;
      align-items: center;
      width: 100%;
    }

    .visual-card {
      position: relative;
      z-index: 2;
      width: 100%;

      /* Scroll animation state */
      transform: translateY(20px) scale(0.96);
      opacity: 0;
      transition: transform 1.2s cubic-bezier(0.16, 1, 0.3, 1), opacity 1.2s cubic-bezier(0.16, 1, 0.3, 1);
    }

    .showcase-row.visible .visual-card {
      transform: translateY(0) scale(1);
      opacity: 1;
    }

    .visual-card img {
      width: 100%;
      height: auto;
      object-fit: contain;
      display: block;
    }

    .launched-badge {
      position: absolute;
      top: -12px;
      right: -12px;
      z-index: 3;
      background: #fff;
      padding: 6px 14px;
      border-radius: 999px;
      border: 1px solid rgba(0, 0, 0, 0.05);
      box-shadow: 0 10px 25px -5px rgba(0, 0, 0, 0.08), 0 8px 16px -6px rgba(0, 0, 0, 0.04);
      display: flex;
      align-items: center;
      gap: 6px;

      /* Scroll animation state */
      transform: scale(0) rotate(-15deg);
      opacity: 0;
      transition: transform 0.8s cubic-bezier(0.34, 1.56, 0.64, 1), opacity 0.8s ease;
      transition-delay: 450ms;
    }

    .showcase-row.visible .launched-badge {
      transform: scale(1) rotate(0deg);
      opacity: 1;
    }

    .launched-badge .checkmark-circle {
      width: 16px;
      height: 16px;
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
    }

    .launched-badge .checkmark-circle svg {
      width: 10px;
      height: 10px;
      stroke-width: 3px;
    }

    .launched-badge span {
      font-size: 10.5px;
      font-weight: 700;
      letter-spacing: 0.05em;
    }

    .overlay-brand-icon {
      position: absolute;
      top: 20px;
      left: 20px;
      z-index: 3;
      width: 38px;
      height: 38px;
      background: #09090b;
      /* Zinc 950 */
      border-radius: 12px;
      overflow: hidden;
      display: flex;
      align-items: center;
      justify-content: center;
      box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);

      /* Scroll animation state */
      transform: scale(0) rotate(15deg);
      opacity: 0;
      transition: transform 0.8s cubic-bezier(0.34, 1.56, 0.64, 1), opacity 0.8s ease;
      transition-delay: 350ms;
    }

    .showcase-row.visible .overlay-brand-icon {
      transform: scale(1) rotate(0deg);
      opacity: 1;
    }

    .overlay-brand-icon svg {
      width: 20px;
      height: 20px;
    }

    .overlay-brand-icon img {
      width: 100%;
      height: 100%;
      object-fit: contain;
      padding: 6px;
      display: block;
    }

    .showcase-includes-label {
      font-size: 11px;
      font-weight: 700;
      color: #a1a1aa;
      /* Zinc 400 */
      text-transform: uppercase;
      letter-spacing: 0.05em;
      margin-top: 24px;
      margin-bottom: 12px;
      display: inline-block;
    }

    .showcase-features-row {
      display: grid;
      grid-template-columns: repeat(2, 1fr);
      gap: 16px 24px;
      margin-bottom: 32px;
      width: 100%;
    }

    .feature-badge {
      display: flex;
      align-items: center;
      gap: 8px;
    }

    .feature-icon-wrapper {
      width: 28px;
      height: 28px;
      border-radius: 6px;
      display: flex;
      align-items: center;
      justify-content: center;
      transition: transform 0.2s ease;
    }

    .feature-icon-wrapper svg {
      width: 14px;
      height: 14px;
    }

    .feature-badge-name {
      font-size: 13.5px;
      font-weight: 600;
      color: #4b5563;
      /* Zinc 600 */
    }

    /* Scroll animation for staggered features list */
    .showcase-row .feature-badge {
      opacity: 0;
      transform: translateY(12px);
      transition: opacity 0.6s cubic-bezier(0.16, 1, 0.3, 1), transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
    }

    .showcase-row.visible .feature-badge {
      opacity: 1;
      transform: translateY(0);
    }

    .showcase-row.visible .feature-badge:nth-child(1) {
      transition-delay: 200ms;
    }

    .showcase-row.visible .feature-badge:nth-child(2) {
      transition-delay: 300ms;
    }

    .showcase-row.visible .feature-badge:nth-child(3) {
      transition-delay: 400ms;
    }

    .showcase-row.visible .feature-badge:nth-child(4) {
      transition-delay: 500ms;
    }

    /* Header fade-in animation */
    .products-showcase-section .section-header {
      opacity: 0;
      transform: translateY(25px);
      transition: opacity 1.2s cubic-bezier(0.16, 1, 0.3, 1), transform 1.2s cubic-bezier(0.16, 1, 0.3, 1);
    }

    .products-showcase-section .section-header.visible {
      opacity: 1;
      transform: translateY(0);
    }

    /* Feature Badge Brand Tinting — matches each product page's own gradient */
    .expohive .feature-icon-wrapper {
      background-image: linear-gradient(211deg, #efbb38 40%, #d97706 100%);
      color: #ffffff;
    }

    .awardocado .feature-icon-wrapper {
      background-image: linear-gradient(19deg, #01471f 40%, #547f4b 100%);
      color: #ffffff;
    }

    .intel-suite .feature-icon-wrapper {
      background: linear-gradient(145deg, #b08df2 10%, #7aa4f6 90%);
      color: #ffffff;
    }

    .marketing .feature-icon-wrapper {
      background: linear-gradient(145deg, #b08df2 10%, #7aa4f6 90%);
      color: #ffffff;
    }

    /* Brand/Product Specific Colors — text/border use a solid fallback (currentColor for borders),
       overlaid with each page's exact gradient via background-clip:text */

    /* ExpoHive: linear-gradient(211deg, #efbb38 40%, #d97706 100%) */
    .expohive .showcase-overline,
    .expohive .showcase-link,
    html[data-product="expohive"] .showcase-link {
      color: #d97706;
      background-image: linear-gradient(211deg, #efbb38 40%, #d97706 100%);
      -webkit-background-clip: text;
      background-clip: text;
      -webkit-text-fill-color: transparent;
    }

    /* .expohive .showcase-link:hover {
      -webkit-text-fill-color: initial;
    } */

    .expohive .launched-badge .checkmark-circle {
      background-image: linear-gradient(211deg, #efbb38 40%, #d97706 100%);
      color: #fff;
    }

    .expohive .launched-badge span {
      color: #d97706;
    }

    .expohive .overlay-brand-icon {
      color: #fbbf24;
    }

    /* Awardocado: linear-gradient(19deg, #01471f 40%, #547f4b 100%) */
    .awardocado .showcase-overline,
    .awardocado .showcase-link,
    html[data-product="awardocado"] .showcase-link {
      color: #01471f;
      background-image: linear-gradient(19deg, #01471f 40%, #547f4b 100%);
      -webkit-background-clip: text;
      background-clip: text;
      -webkit-text-fill-color: transparent;
    }

    /* .awardocado .showcase-link:hover {
      -webkit-text-fill-color: initial;
    } */

    .awardocado .launched-badge .checkmark-circle {
      background-image: linear-gradient(19deg, #01471f 40%, #547f4b 100%);
      color: #fff;
    }

    .awardocado .launched-badge span {
      color: #01471f;
    }

    .awardocado .overlay-brand-icon {
      color: #547f4b;
    }

    /* Event Intelligence Suite: linear-gradient(145deg, #b08df2 10%, #7aa4f6 90%) */
    .intel-suite .showcase-overline,
    .intel-suite .showcase-link {
      color: #7aa4f6;
      background: linear-gradient(145deg, #b08df2 10%, #7aa4f6 90%);
      -webkit-background-clip: text;
      background-clip: text;
      -webkit-text-fill-color: transparent;
    }

    /* .intel-suite .showcase-link:hover {
      -webkit-text-fill-color: initial;
    } */

    .intel-suite .launched-badge .checkmark-circle {
      background: linear-gradient(145deg, #b08df2 10%, #7aa4f6 90%);
      color: #fff;
    }

    .intel-suite .launched-badge span {
      color: #7aa4f6;
    }

    .intel-suite .overlay-brand-icon {
      color: #7aa4f6;
    }

    /* Event Marketing: linear-gradient(145deg, #b08df2 10%, #7aa4f6 90%) */
    .marketing .showcase-overline,
    .marketing .showcase-link {
      color: #7aa4f6;
      background: linear-gradient(145deg, #b08df2 10%, #7aa4f6 90%);
      -webkit-background-clip: text;
      background-clip: text;
      -webkit-text-fill-color: transparent;
    }

    /* .marketing .showcase-link:hover {
      -webkit-text-fill-color: initial;
    } */

    .marketing .launched-badge .checkmark-circle {
      background: linear-gradient(145deg, #b08df2 10%, #7aa4f6 90%);
      color: #fff;
    }

    .marketing .launched-badge span {
      color: #7aa4f6;
    }

    .marketing .overlay-brand-icon {
      color: #b08df2;
    }

    /* RESPONSIVE LAYOUT FOR SECTION */
    @media (max-width: 900px) {
      .products-showcase-section {
        padding: 60px 0;
      }

      .showcase-row {
        flex-direction: column-reverse !important;
        gap: 48px;
        margin-bottom: 80px;
      }

      .showcase-visual {
        max-width: 600px;
      }
    }

    @media (max-width: 480px) {
      .showcase-row {
        padding: 0 20px;
        margin-bottom: 60px;
      }
    }

    /* PARTNERS ORBIT SECTION */
    .partners-section {
      background: #ffffff;
      width: 100%;
      padding: 50px 0 0 0;
      position: relative;
      z-index: 10;
      overflow: hidden;
      display: flex;
      flex-direction: column;
      align-items: center;
      border-bottom: none;
      /* Seamless merge with white footer */
    }

    .partners-section .section-header {
      margin-bottom: 30px;
      text-align: center;
    }

    .partners-overline {
      font-size: 11px;
      font-weight: 700;
      color: #8b5cf6;
      /* Violet overline matching the mockup theme */
      text-transform: uppercase;
      letter-spacing: 0.1em;
      margin-bottom: 12px;
      display: inline-block;
    }

    .partners-title {
      font-size: clamp(28px, calc(var(--stage-size) * 0.045), 44px);
      font-weight: 600;
      color: var(--ink);
      line-height: 1.25;
      letter-spacing: -0.03em;
      margin-bottom: 20px;
      text-align: center;
    }

    .partners-subtitle {
      font-size: clamp(13.5px, calc(var(--stage-size) * 0.016), 15px);
      color: var(--muted);
      line-height: 1.6;
      max-width: 800px;
      margin: 0 auto;
      text-align: center;
      padding: 0 24px;
    }

    /* ORBIT STAGE */
    .orbit-stage {
      position: relative;
      width: 100%;
      height: 400px;
      /* Provides space for concentric arcs extending upward */
      margin-top: 50px;
    }

    /* Base concentric orbit rings */
    .partner-ring {
      position: absolute;
      border: 1px solid rgba(139, 92, 246, 0.2);
      /* Soft violet purple border */
      border-radius: 50%;
      bottom: -30px;
      /* Aligned center of orbits with center hub */
      left: 50%;
      transform: translate(-50%, 50%);
      pointer-events: none;
      backface-visibility: hidden;
      -webkit-backface-visibility: hidden;
      /* Force hardware acceleration & correct subpixel antialiasing to prevent black rendering glitch */
    }

    /* Set exact dimensions relative to the bottom center (concentric equal spacing of 110px) */
    .partner-ring.ring-1 {
      width: 280px;
      height: 280px;
      z-index: 4;
    }

    .partner-ring.ring-2 {
      width: 500px;
      height: 500px;
      z-index: 3;
    }

    .partner-ring.ring-3 {
      width: 720px;
      height: 720px;
      z-index: 2;
    }

    .partner-ring.ring-4 {
      width: 940px;
      height: 940px;
      z-index: 1;
    }

    /* Center Hub */
    .partner-center-hub {
      position: absolute;
      bottom: -30px;
      /* Overlaps bottom center */
      left: 50%;
      transform: translate(-50%, 50%);
      /* Concentric center alignment matching translate(50%) ring shift */
      width: 60px;
      height: 60px;
      background: #f5f3ff;
      /* Very soft violet */
      border: 2px solid rgba(139, 92, 246, 0.25);
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
      color: #8b5cf6;
      box-shadow: 0 10px 25px rgba(139, 92, 246, 0.15);
      z-index: 10;
    }

    .partner-center-hub svg {
      width: 28px;
      height: 28px;
      display: block;
    }

    /* Rotating partner logo badges (wrappers) - Enlarged to 90px */
    .partner-logo-badge {
      position: absolute;
      width: 90px;
      height: 90px;
      pointer-events: none;
      /* Let clicks pass to inner badge */

      /* Center alignment anchor inside the ring container */
      left: 50%;
      top: 50%;
      margin-left: -45px;
      /* Half of width */
      margin-top: -45px;
      /* Half of height */
    }

    /* Inner visual card that actually handles animation and styling */
    .partner-badge-inner {
      width: 100%;
      height: 100%;
      background: #ffffff;
      border-radius: 50%;
      border: 1px solid rgba(0, 0, 0, 0.05);
      box-shadow: 0 10px 25px -5px rgba(0, 0, 0, 0.08), 0 4px 10px -4px rgba(0, 0, 0, 0.04);
      display: flex;
      flex-direction: column;
      align-items: center;
      justify-content: center;
      pointer-events: auto;
      /* Clickable */
      cursor: pointer;
      user-select: none;
      transition: box-shadow 0.3s;
    }

    .partner-badge-inner:hover {
      box-shadow: 0 20px 35px -5px rgba(139, 92, 246, 0.2), 0 10px 20px -8px rgba(139, 92, 246, 0.1);
    }

    /* Target badge content inner wrapper to scale on hover without breaking animations */
    .partner-badge-content {
      width: 100%;
      height: 100%;
      display: flex;
      flex-direction: column;
      align-items: center;
      justify-content: center;
      transition: transform 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    }

    .partner-badge-inner:hover .partner-badge-content {
      transform: scale(1.15);
    }

    .partner-badge-content img {
      max-width: 78%;
      max-height: 78%;
      object-fit: contain;
      display: block;
      transition: transform 0.3s ease;
    }

    /* Static positioning of wrappers on rings */
    /* Ring 1 logos (Radius = 140px, Slide period = 24s, Clockwise) */
    .partner-logo-badge.google {
      --radius: 140px;
      animation: orbit-clockwise-half 24s linear infinite;
      animation-delay: 0s;
    }

    .partner-logo-badge.microsoft {
      --radius: 140px;
      animation: orbit-clockwise-half 24s linear infinite;
      animation-delay: -8s;
    }

    .partner-logo-badge.meta {
      --radius: 140px;
      animation: orbit-clockwise-half 24s linear infinite;
      animation-delay: -16s;
    }

    /* Ring 2 logos (Radius = 250px, Slide period = 30s, Counter-Clockwise) */
    .partner-logo-badge.intel {
      --radius: 250px;
      animation: orbit-counter-half 30s linear infinite;
      animation-delay: 0s;
    }

    .partner-logo-badge.rz {
      --radius: 250px;
      animation: orbit-counter-half 30s linear infinite;
      animation-delay: -10s;
    }

    .partner-logo-badge.hotellerie {
      --radius: 250px;
      animation: orbit-counter-half 30s linear infinite;
      animation-delay: -20s;
    }

    /* Ring 3 logos (Radius = 360px, Slide period = 36s, Clockwise) */
    .partner-logo-badge.anydesk {
      --radius: 360px;
      animation: orbit-clockwise-half 36s linear infinite;
      animation-delay: 0s;
    }

    .partner-logo-badge.sipcall {
      --radius: 360px;
      animation: orbit-clockwise-half 36s linear infinite;
      animation-delay: -9s;
    }

    .partner-logo-badge.wirtio {
      --radius: 360px;
      animation: orbit-clockwise-half 36s linear infinite;
      animation-delay: -18s;
    }

    .partner-logo-badge.asus {
      --radius: 360px;
      animation: orbit-clockwise-half 36s linear infinite;
      animation-delay: -27s;
    }

    /* Ring 4 logos (Radius = 470px, Slide period = 42s, Counter-Clockwise, Staggered offset of -4s) */
    .partner-logo-badge.adn {
      --radius: 470px;
      animation: orbit-counter-half 42s linear infinite;
      animation-delay: -4s;
    }

    .partner-logo-badge.idc {
      --radius: 470px;
      animation: orbit-counter-half 42s linear infinite;
      animation-delay: -14.5s;
    }

    .partner-logo-badge.ingram {
      --radius: 470px;
      animation: orbit-counter-half 42s linear infinite;
      animation-delay: -25s;
    }

    .partner-logo-badge.swissict {
      --radius: 470px;
      animation: orbit-counter-half 42s linear infinite;
      animation-delay: -35.5s;
    }

    /* Stylized Logos text & icons */


    /* Semi-Circle Sliding Orbit Animations with Integrated Upright Counter-Rotation */
    @keyframes orbit-clockwise-half {
      from {
        transform: rotate(180deg) translate(var(--radius)) rotate(-180deg);
      }

      to {
        transform: rotate(360deg) translate(var(--radius)) rotate(-360deg);
      }
    }

    @keyframes orbit-counter-half {
      from {
        transform: rotate(360deg) translate(var(--radius)) rotate(-360deg);
      }

      to {
        transform: rotate(180deg) translate(var(--radius)) rotate(-180deg);
      }
    }

    /* Pause orbit slide movement only when hovering on a logo badge */
    .orbit-stage:has(.partner-badge-inner:hover) .partner-logo-badge {
      animation-play-state: paused;
    }

    /* RESPONSIVE LAYOUT FOR PARTNERS */
    @media (max-width: 900px) {
      .orbit-stage {
        height: 400px;
      }

      .partner-ring.ring-4 {
        width: 700px;
        height: 700px;
      }

      .partner-ring.ring-3 {
        width: 540px;
        height: 540px;
      }

      .partner-ring.ring-2 {
        width: 380px;
        height: 380px;
      }

      .partner-ring.ring-1 {
        width: 220px;
        height: 220px;
      }

      /* Update radii for dynamic animation scaling to keep equal spacing of 80px */
      .partner-logo-badge.google {
        --radius: 110px;
      }

      .partner-logo-badge.microsoft {
        --radius: 110px;
      }

      .partner-logo-badge.meta {
        --radius: 110px;
      }

      .partner-logo-badge.intel {
        --radius: 190px;
      }

      .partner-logo-badge.rz {
        --radius: 190px;
      }

      .partner-logo-badge.hotellerie {
        --radius: 190px;
      }

      .partner-logo-badge.anydesk {
        --radius: 270px;
      }

      .partner-logo-badge.asus {
        --radius: 270px;
      }

      .partner-logo-badge.wirtio {
        --radius: 270px;
      }

      .partner-logo-badge.sipcall {
        --radius: 270px;
      }

      /* Ring 4 badges kept visible with the same 80px equal spacing as rings 1-3 */
      .partner-logo-badge.adn {
        --radius: 350px;
      }

      .partner-logo-badge.idc {
        --radius: 350px;
      }

      .partner-logo-badge.ingram {
        --radius: 350px;
      }

      .partner-logo-badge.swissict {
        --radius: 350px;
      }
    }

    @media (max-width: 640px) {
      .orbit-stage {
        height: 260px;
        margin-top: 30px;
      }

      .partner-ring.ring-2 {
        width: 380px;
        height: 380px;
      }

      .partner-ring.ring-1 {
        width: 220px;
        height: 220px;
      }

      .partner-logo-badge {
        width: 50px;
        height: 50px;
        margin-left: -25px;
        margin-top: -25px;
      }

      .partner-logo-badge.google {
        --radius: 110px;
      }

      .partner-logo-badge.microsoft {
        --radius: 110px;
      }

      .partner-logo-badge.meta {
        --radius: 110px;
      }

      .partner-logo-badge.intel {
        --radius: 190px;
      }

      .partner-logo-badge.rz {
        --radius: 190px;
      }

      .partner-logo-badge.hotellerie {
        --radius: 190px;
      }

      .partner-logo-badge svg {
        width: 14px;
        height: 14px;
      }

      .microsoft-grid {
        width: 10px;
        height: 10px;
        gap: 1px;
      }

      .microsoft-grid span {
        width: 4px;
        height: 4px;
      }

      .logo-badge-text {
        display: none;
      }

      /* Hide labels on very small screens to keep badges clean */
    }

    @media (max-width: 480px) {

      /* Concentric rings scaling for narrow mobile screens (equal 60px spacing across all 4 rings) */
      .partner-ring.ring-4 {
        width: 540px;
        height: 540px;
      }

      .partner-ring.ring-3 {
        width: 420px;
        height: 420px;
      }

      .partner-ring.ring-2 {
        width: 300px;
        height: 300px;
      }

      .partner-ring.ring-1 {
        width: 180px;
        height: 180px;
      }

      .partner-logo-badge.google {
        --radius: 90px;
      }

      .partner-logo-badge.microsoft {
        --radius: 90px;
      }

      .partner-logo-badge.meta {
        --radius: 90px;
      }

      .partner-logo-badge.intel {
        --radius: 150px;
      }

      .partner-logo-badge.rz {
        --radius: 150px;
      }

      .partner-logo-badge.hotellerie {
        --radius: 150px;
      }

      .partner-logo-badge.anydesk {
        --radius: 210px;
      }

      .partner-logo-badge.asus {
        --radius: 210px;
      }

      .partner-logo-badge.wirtio {
        --radius: 210px;
      }

      .partner-logo-badge.sipcall {
        --radius: 210px;
      }

      .partner-logo-badge.adn {
        --radius: 270px;
      }

      .partner-logo-badge.idc {
        --radius: 270px;
      }

      .partner-logo-badge.ingram {
        --radius: 270px;
      }

      .partner-logo-badge.swissict {
        --radius: 270px;
      }
    }

    /* FOOTER STYLING */
    .footer {
      background: #ffffff;
      width: 100%;
      border-top: 1px solid rgba(0, 0, 0, 0.05);
      position: relative;
      z-index: 10;
    }

    .footer-container {
      display: grid;
      grid-template-columns: repeat(4, 1fr);
      gap: 48px;
      max-width: 1400px;
      width: 100%;
      margin: 0 auto;
      padding: 40px 32px 20px 32px;
    }

    .footer-column h4 {
      font-size: 15px;
      font-weight: 700;
      color: #18181b;
      /* Zinc 900 */
      margin-bottom: 24px;
      padding-bottom: 10px;
      border-bottom: 1.5px solid rgba(0, 0, 0, 0.06);
      display: block;
      width: 100%;
      letter-spacing: -0.01em;
      text-transform: capitalize;
    }

    .footer-column ul {
      list-style: none;
      padding: 0;
      margin: 0;
    }

    .footer-column li {
      margin-bottom: 12px;
    }

    .footer-column a {
      text-decoration: none;
      color: #71717a;
      /* Zinc 500 */
      font-size: 13.5px;
      font-weight: 500;
      transition: color 0.2s ease, padding-left 0.2s ease;
      display: inline-block;
    }

    .footer-column a:hover {
      color: #18181b;
      /* Zinc 900 */
      padding-left: 3px;
    }

    .footer-column p {
      color: #71717a;
      /* Zinc 500 */
      font-size: 13.5px;
      line-height: 1.6;
      font-weight: 500;
      margin-bottom: 16px;
    }

    .footer-social-links {
      display: flex;
      gap: 14px;
      margin-top: 20px;
    }

    .social-item {
      position: relative;
      display: inline-block;
      width: 38px;
      height: 38px;
      border-radius: 50%;
      border: 1px solid rgba(0, 0, 0, 0.08);
      background: #fafafa;
      text-decoration: none;
      color: #71717a;
      transition: all 0.25s cubic-bezier(0.4, 0, 0.2, 1);
      box-sizing: border-box;
    }

    .social-item:hover {
      color: #8b5cf6;
      /* Violet highlight */
      border-color: rgba(139, 92, 246, 0.2);
      background: #f5f3ff;
      transform: translateY(-3px);
      box-shadow: 0 4px 12px rgba(139, 92, 246, 0.1);
    }

    .social-item svg {
      position: absolute;
      top: 50%;
      left: 50%;
      transform: translate(-50%, -50%);
      width: 18px;
      height: 18px;
      stroke-width: 2.2;
      display: block;
    }

    .footer-bottom {
      border-top: 1px solid rgba(0, 0, 0, 0.05);
      padding: 28px 32px;
      width: 100%;
      max-width: 1400px;
      margin: 0 auto;
      display: flex;
      flex-direction: column;
      align-items: center;
      gap: 12px;
    }

    .footer-bottom-links {
      display: flex;
      justify-content: center;
      flex-wrap: wrap;
      gap: 12px 16px;
      font-size: 12px;
      color: #71717a;
      /* Zinc 500 */
      font-weight: 500;
    }

    .footer-bottom-links a {
      text-decoration: none;
      color: inherit;
      transition: color 0.2s ease;
    }

    .footer-bottom-links a:hover {
      color: #18181b;
      /* Zinc 900 */
    }

    .footer-copyright {
      font-size: 12px;
      color: #a1a1aa;
      /* Zinc 400 */
      font-weight: 500;
    }

    @media (max-width: 900px) {
      .footer-container {
        grid-template-columns: repeat(2, 1fr);
        gap: 32px;
        padding: 60px 24px 40px 24px;
      }
    }

    @media (max-width: 640px) {
      .footer-container {
        grid-template-columns: 1fr;
        gap: 28px;
        padding: 50px 20px 40px 20px;
      }

      .footer-bottom {
        padding: 24px 20px;
      }
    }

    /* CONTACT SECTION STYLING */
    .contact-section {
      background: #ffffff;
      width: 100%;
      padding: 50px 0;
      position: relative;
      z-index: 10;
      overflow: hidden;
      border-bottom: 1px solid rgba(0, 0, 0, 0.05);
    }

    .contact-container {
      display: grid;
      grid-template-columns: 1fr 1.1fr;
      gap: 80px;
      max-width: 1200px;
      width: 100%;
      margin: 0 auto;
      padding: 0 32px;
      align-items: center;
    }

    /* Left column info styling */
    .contact-info {
      display: flex;
      flex-direction: column;
      align-items: flex-start;
    }

    .contact-overline {
      font-size: 12px;
      font-weight: 700;
      color: #7aa4f6;
      background: linear-gradient(145deg, #b08df2 10%, #7aa4f6 90%);
      -webkit-background-clip: text;
      background-clip: text;
      -webkit-text-fill-color: transparent;
      text-transform: uppercase;
      letter-spacing: 0.12em;
      margin-bottom: 20px;
      display: inline-block;
    }

    .contact-title {
      font-size: clamp(34px, calc(var(--stage-size) * 0.045), 44px);
      font-weight: 800;
      color: #0f172a;
      /* Navy blue */
      line-height: 1.15;
      letter-spacing: -0.03em;
      margin-bottom: 24px;
    }

    .contact-desc {
      font-size: 15px;
      color: #64748b;
      /* Slate 500 */
      line-height: 1.6;
      margin-bottom: 36px;
      max-width: 480px;
      font-weight: 400;
    }

    .contact-details {
      display: flex;
      flex-direction: column;
      gap: 16px;
      width: 100%;
    }

    .contact-detail-item {
      display: flex;
      align-items: center;
      gap: 16px;
      font-size: 15px;
      font-weight: 500;
      color: #334155;
      background: transparent;
      border: none;
      padding: 4px 0;
      border-radius: 0;
      box-shadow: none;
      transition: none;
      width: 100%;
      max-width: 100%;
    }

    .contact-detail-item a {
      text-decoration: none;
      color: #475569;
      /* Slate 600 */
      font-size: 15px;
      font-weight: 500;
      transition: color 0.2s ease;
    }

    .contact-detail-item a:hover {
      color: #7aa4f6;
    }

    .contact-icon-wrapper {
      display: flex;
      align-items: center;
      justify-content: center;
      width: 38px;
      height: 38px;
      border-radius: 10px;
      background: linear-gradient(145deg, #b08df2 10%, #7aa4f6 90%);
      color: #ffffff;
      transition: all 0.2s ease;
      flex-shrink: 0;
    }

    .contact-detail-item:hover .contact-icon-wrapper {
      box-shadow: 0 6px 16px -4px rgba(122, 164, 246, 0.5);
      transform: scale(1.05);
    }

    .contact-icon {
      width: 18px;
      height: 18px;
      display: block;
    }

    /* Right column card form - Modern SaaS Light */
    .contact-card-wrapper {
      background: #ffffff;
      border-radius: 20px;
      padding: 40px;
      box-shadow: 0 20px 40px -10px rgba(0, 0, 0, 0.05), 0 1px 3px rgba(0, 0, 0, 0.02);
      border: 1px solid #f1f5f9;
      width: 100%;
    }

    .contact-form {
      display: flex;
      flex-direction: column;
      gap: 24px;
    }

    .form-grid {
      display: grid;
      grid-template-columns: repeat(2, 1fr);
      gap: 20px 24px;
    }

    .form-group {
      display: flex;
      flex-direction: column;
      gap: 8px;
    }

    .form-group.full-width {
      grid-column: span 2;
    }

    .form-group label {
      font-size: 13.5px;
      font-weight: 600;
      color: #334155;
      margin-bottom: 6px;
    }

    .form-group input,
    .form-group select,
    .form-group textarea {
      background: #ffffff;
      border: 1px solid #e2e8f0;
      border-radius: 8px;
      padding: 12px 16px;
      font-size: 14px;
      color: #1e293b;
      outline: none;
      width: 100%;
      font-family: inherit;
      transition: border-color 0.2s ease, box-shadow 0.2s ease;
    }

    .form-group input::placeholder,
    .form-group textarea::placeholder {
      color: #94a3b8;
    }

    .form-group input:focus,
    .form-group select:focus,
    .form-group textarea:focus {
      border-color: #7aa4f6;
      box-shadow: 0 0 0 3px rgba(122, 164, 246, 0.15);
    }

    /* Styled select dropdown styling */
    .form-group select {
      appearance: none;
      background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='none' viewBox='0 0 24 24' stroke='%23475569' stroke-width='2.5'%3E%3Cpath stroke-linecap='round' stroke-linejoin='round' d='M19.5 8.25l-7.5 7.5-7.5-7.5' /%3E%3C/svg%3E");
      background-repeat: no-repeat;
      background-position: right 16px center;
      background-size: 14px;
      padding-right: 40px;
    }

    .form-group select option {
      background: #ffffff;
      color: #1e293b;
    }

    .form-submit-btn {
      background: #18181b;
      /* Dark Zinc 900 */
      border: 1px solid #18181b;
      color: #ffffff;
      padding: 14px;
      border-radius: 99px;
      font-size: 15px;
      font-weight: 700;
      cursor: pointer;
      width: 100%;
      text-align: center;
      box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
      transition: all 0.25s ease;
      display: flex;
      align-items: center;
      justify-content: center;
      gap: 6px;
    }

    .form-submit-btn:hover {
      background: #000000;
      /* Pure black on hover */
      border-color: #000000;
      transform: translateY(-2px);
      box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
    }

    .form-submit-btn:active {
      transform: translateY(0);
    }

    .field-error {
      display: block;
      font-size: 12px;
      color: #dc2626;
      font-weight: 500;
      line-height: 1.4;
      margin-top: 2px;
    }

    .field-error:empty {
      display: none;
      margin-top: 0;
    }

    .form-group input.form-input--invalid,
    .form-group select.form-input--invalid,
    .form-group textarea.form-input--invalid {
      border-color: #dc2626;
      box-shadow: 0 0 0 3px rgba(220, 38, 38, 0.12);
    }

    .form-status {
      font-size: 13.5px;
      font-weight: 500;
      text-align: center;
      min-height: 18px;
    }

    .form-status--ok {
      color: #059669;
    }

    .form-status--err {
      color: #dc2626;
    }

    /* CONTACT FORM THANK-YOU POPUP */
    body.no-scroll {
      overflow: hidden;
    }

    .thankyou-overlay {
      position: fixed;
      inset: 0;
      z-index: 1400;
      display: flex;
      align-items: center;
      justify-content: center;
      padding: 20px;
      background: rgba(15, 23, 42, 0.55);
      backdrop-filter: blur(4px);
      opacity: 0;
      visibility: hidden;
      transition: opacity 0.25s ease, visibility 0.25s ease;
    }

    .thankyou-overlay.active {
      opacity: 1;
      visibility: visible;
    }

    .thankyou-modal {
      position: relative;
      width: 100%;
      max-width: 420px;
      background: #ffffff;
      border-radius: 20px;
      padding: 44px 36px 36px;
      text-align: center;
      box-shadow: 0 30px 60px -15px rgba(0, 0, 0, 0.25), 0 1px 3px rgba(0, 0, 0, 0.05);
      transform: translateY(16px) scale(0.97);
      transition: transform 0.25s ease;
    }

    .thankyou-overlay.active .thankyou-modal {
      transform: translateY(0) scale(1);
    }

    .thankyou-close {
      position: absolute;
      top: 16px;
      right: 16px;
      width: 32px;
      height: 32px;
      border: none;
      background: #f1f5f9;
      color: #64748b;
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
      cursor: pointer;
      transition: background 0.2s ease, color 0.2s ease;
    }

    .thankyou-close:hover {
      background: #e2e8f0;
      color: #18181b;
    }

    .thankyou-close svg {
      width: 16px;
      height: 16px;
    }

    .thankyou-icon {
      width: 64px;
      height: 64px;
      margin: 0 auto 20px;
      border-radius: 50%;
      background: rgba(5, 150, 105, 0.1);
      color: #059669;
      display: flex;
      align-items: center;
      justify-content: center;
    }

    .thankyou-icon svg {
      width: 30px;
      height: 30px;
    }

    .thankyou-title {
      font-size: 22px;
      font-weight: 700;
      color: #18181b;
      margin: 0 0 10px;
    }

    .thankyou-message {
      font-size: 14.5px;
      line-height: 1.6;
      color: #64748b;
      margin: 0 0 28px;
    }

    .thankyou-done {
      display: inline-flex;
      width: auto;
      margin: 0 auto;
      padding: 12px 32px;
    }

    /* COOKIE CONSENT BANNER */
    .cookie-banner {
      position: fixed;
      right: 24px;
      bottom: 24px;
      z-index: 1200;
      display: flex;
      align-items: flex-start;
      gap: 14px;
      width: 428px;
      max-width: calc(100vw - 32px);
      background: #ffffff;
      border: 1px solid rgba(0, 0, 0, 0.08);
      border-radius: 16px;
      box-shadow: 0 24px 60px -20px rgba(0, 0, 0, 0.25);
      padding: 20px;
      opacity: 0;
      transform: translateY(24px);
      pointer-events: none;
      transition: opacity 0.35s ease, transform 0.35s ease;
    }

    .cookie-banner--visible {
      opacity: 1;
      transform: translateY(0);
      pointer-events: auto;
    }

    .cookie-banner-icon {
      font-size: 22px;
      line-height: 1;
      flex-shrink: 0;
    }

    .cookie-banner-text {
      margin: 0 0 14px 0;
      font-size: 13.5px;
      line-height: 1.55;
      color: var(--muted);
    }

    .cookie-banner-link {
      color: var(--accent);
      font-weight: 600;
      text-decoration: underline;
    }

    .cookie-banner-link:hover {
      color: #1d4ed8;
    }

    .cookie-banner-actions {
      display: flex;
      gap: 10px;
    }

    .cookie-btn {
      font-family: inherit;
      font-size: 13px;
      font-weight: 600;
      padding: 10px 18px;
      border-radius: 999px;
      cursor: pointer;
      transition: opacity 0.15s, transform 0.15s;
      white-space: nowrap;
    }

    .cookie-btn:hover {
      opacity: 0.85;
      transform: translateY(-1px);
    }

    .cookie-btn-decline {
      background: #ffffff;
      color: var(--muted);
      border: 1px solid rgba(0, 0, 0, 0.1);
    }

    .cookie-btn-accept {
      background: var(--pill);
      color: #fff;
      border: 1px solid var(--pill);
    }

    @media (max-width: 480px) {
      .cookie-banner {
        left: 16px;
        right: 16px;
        bottom: 16px;
        width: auto;
      }
    }

    /* Scroll animation styles */
    .contact-section .contact-info {
      opacity: 0;
      transform: translateX(-40px);
      transition: opacity 1.2s cubic-bezier(0.16, 1, 0.3, 1), transform 1.2s cubic-bezier(0.16, 1, 0.3, 1);
    }

    .contact-section.visible .contact-info {
      opacity: 1;
      transform: translateX(0);
    }

    .contact-section .contact-card-wrapper {
      opacity: 0;
      transform: translateX(40px) scale(0.97);
      transition: opacity 1.2s cubic-bezier(0.16, 1, 0.3, 1), transform 1.2s cubic-bezier(0.16, 1, 0.3, 1);
    }

    .contact-section.visible .contact-card-wrapper {
      opacity: 1;
      transform: translateX(0) scale(1);
    }

    @media (max-width: 900px) {
      .contact-container {
        grid-template-columns: 1fr;
        gap: 50px;
        padding: 0 24px;
      }

      .form-group.full-width {
        grid-column: span 1;
      }

      .form-grid {
        grid-template-columns: 1fr;
        gap: 16px;
      }
    }

    /* TESTIMONIALS SECTION */
    .testimonials-section {
      padding: 70px 0;
      position: relative;
      background: #ffffff;
      background-image: radial-gradient(circle at 80% 20%, rgba(176, 141, 242, 0.05) 0%, transparent 45%),
                        radial-gradient(circle at 15% 80%, rgba(122, 164, 246, 0.05) 0%, transparent 45%);
      overflow: hidden;
      width: 100%;
      box-sizing: border-box;
    }

    .testimonials-section::after {
      content: "";
      position: absolute;
      width: 400px;
      height: 400px;
      background: radial-gradient(circle, rgba(122, 164, 246, 0.06) 0%, transparent 70%);
      bottom: -100px;
      right: -100px;
      pointer-events: none;
      z-index: 1;
    }

    .testimonials-section::before {
      content: "";
      position: absolute;
      width: 400px;
      height: 400px;
      background: radial-gradient(circle, rgba(176, 141, 242, 0.06) 0%, transparent 70%);
      top: -100px;
      left: -100px;
      pointer-events: none;
      z-index: 1;
    }

    .testimonials-section .container {
      width: 100%;
      box-sizing: border-box;
    }

    .testimonials-section .section-header {
      text-align: center;
      max-width: 650px;
      margin: 0 auto 40px;
      padding: 0 24px;
      position: relative;
      z-index: 2;
      box-sizing: border-box;
    }

    .testimonials-section .section-subtitle {
      font-size: 11px;
      font-weight: 700;
      letter-spacing: 2px;
      color: #7a5fc9;
      text-transform: uppercase;
      margin-bottom: 16px;
      display: inline-block;
      padding: 6px 16px;
      background: rgba(176, 141, 242, 0.08);
      border-radius: 100px;
      border: 1px solid rgba(176, 141, 242, 0.15);
    }

    .testimonials-section .section-title {
      font-size: clamp(28px, calc(var(--stage-size) * 0.045), 44px);
      font-weight: 500;
      color: #4b5563;
      line-height: 1.25;
      margin-bottom: 20px;
      letter-spacing: -0.03em;
    }

    .testimonials-section .section-title span {
      background: linear-gradient(145deg, #b08df2 10%, #7aa4f6 90%);
      -webkit-background-clip: text;
      -webkit-text-fill-color: transparent;
      background-clip: text;
      font-weight: 600;
    }

    .testimonials-section .section-desc {
      font-size: 16px;
      color: #64748b;
      line-height: 1.65;
      overflow-wrap: break-word;
      word-wrap: break-word;
    }

    .testimonial-grid {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 32px;
      max-width: 1200px;
      margin: 0 auto;
      padding: 0 24px;
      position: relative;
      z-index: 2;
    }

    .testimonial-card {
      background: rgba(255, 255, 255, 0.85);
      backdrop-filter: blur(20px) saturate(180%);
      -webkit-backdrop-filter: blur(20px) saturate(180%);
      border: 1px solid rgba(0, 0, 0, 0.06);
      border-radius: 28px;
      padding: 28px;
      display: flex;
      flex-direction: column;
      justify-content: space-between;
      box-shadow: 0 30px 60px -25px rgba(0, 0, 0, 0.03), 
                  inset 0 1px 0 0 rgba(255, 255, 255, 0.6);
      transition: all 0.5s cubic-bezier(0.16, 1, 0.3, 1);
      position: relative;
    }

    .testimonial-card::before {
      content: "";
      position: absolute;
      top: -1px;
      left: -1px;
      right: -1px;
      bottom: -1px;
      border-radius: 28px;
      padding: 1.5px;
      background: linear-gradient(145deg, #b08df2 10%, #7aa4f6 90%);
      -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
      -webkit-mask-composite: xor;
      mask-composite: exclude;
      opacity: 0;
      transition: opacity 0.4s ease;
    }

    .testimonial-card:hover {
      transform: translateY(-10px) scale(1.01);
      box-shadow: 0 45px 85px -25px rgba(176, 141, 242, 0.15),
                  0 4px 20px -5px rgba(122, 164, 246, 0.08);
      border-color: rgba(122, 164, 246, 0.25);
    }

    .testimonial-card:hover::before {
      opacity: 1;
    }

    .testimonial-quote-icon {
      width: 44px;
      height: 44px;
      background: linear-gradient(145deg, rgba(176, 141, 242, 0.1) 10%, rgba(122, 164, 246, 0.1) 90%);
      border-radius: 12px;
      display: flex;
      align-items: center;
      justify-content: center;
      margin-bottom: 16px;
      color: #7a5fc9;
      font-size: 26px;
      font-family: Georgia, serif;
      font-weight: bold;
    }

    .testimonial-quote-text {
      font-size: 15px;
      line-height: 1.8;
      color: #334155;
      margin-bottom: 20px;
      font-weight: 450;
    }

    .testimonial-author {
      display: flex;
      align-items: center;
      gap: 16px;
      border-top: 1px solid rgba(0, 0, 0, 0.05);
      padding-top: 16px;
    }

    .testimonial-author-avatar {
      width: 50px;
      height: 50px;
      border-radius: 50%;
      object-fit: cover;
      border: 2px solid rgba(122, 164, 246, 0.25);
      transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1), border-color 0.4s ease;
    }

    .testimonial-card:hover .testimonial-author-avatar {
      transform: scale(1.1);
      border-color: #7aa4f6;
    }

    .testimonial-author-info h6 {
      font-size: 15px;
      font-weight: 700;
      color: #0f172a;
      margin: 0 0 3px 0;
      letter-spacing: -0.2px;
    }

    .testimonial-author-info span {
      font-size: 12px;
      color: #64748b;
      display: block;
      font-weight: 500;
    }

    .testimonial-badge {
      font-size: 9px;
      font-weight: 700;
      color: #7a5fc9;
      background: rgba(176, 141, 242, 0.1);
      padding: 3px 8px;
      border-radius: 100px;
      display: inline-block;
      margin-top: 6px;
      letter-spacing: 0.5px;
      text-transform: uppercase;
    }

    @media (max-width: 991px) {
      .testimonial-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 24px;
        padding: 0 20px;
      }
    }

    /* ===== MOBILE TESTIMONIALS: Full-width swipeable slider ===== */
    @media (max-width: 991px) {
      .testimonials-section {
        padding: 50px 0 60px;
      }
      .testimonials-section .section-header {
        margin-bottom: 36px;
      }
      .testimonials-section .section-title {
        font-size: 28px;
      }
      .testimonials-section .section-desc {
        font-size: 14px;
      }

      /* Clip visible overflow from scrolling cards */
      .testimonials-section {
        overflow-x: hidden;
      }

      /* Turn the grid into a horizontal scroll track */
      .testimonial-grid {
        display: flex !important;
        flex-direction: row !important;
        flex-wrap: nowrap !important;
        align-items: stretch !important;
        overflow-x: scroll !important;
        scroll-snap-type: x mandatory !important;
        -webkit-overflow-scrolling: touch !important;
        scrollbar-width: none !important;
        gap: 0 !important;
        padding: 12px 0 28px !important;
        max-width: none !important;
        width: 100% !important;
        margin: 0 !important;
        box-sizing: border-box !important;
        position: static !important;
      }
      .testimonial-grid::-webkit-scrollbar {
        display: none !important;
      }

      /* Cards: 85vw wide, 16px gutters via margins */
      .testimonial-card {
        flex: 0 0 85vw !important;
        width: 85vw !important;
        min-width: 85vw !important;
        max-width: none !important;
        scroll-snap-align: center !important;
        box-sizing: border-box !important;
        margin-left: 16px !important;
        margin-right: 0 !important;
        margin-top: 0 !important;
        margin-bottom: 0 !important;
        padding: 22px !important;
        border-radius: 20px !important;
        transform: none !important;
      }
      .testimonial-card:last-child {
        margin-right: 16px !important;
      }
    }