
    *,
    *::before,
    *::after {
      box-sizing: border-box;
      margin: 0;
      padding: 0;
    }

    :root {
      /* â”€â”€ Brand palette (from Cloudspillar logo) â”€â”€ */
      --brand-sky:  #5baeff;   /* logo cloud gradient start */
      --brand-blue: #1a6fd4;   /* logo cloud gradient end / Pillar text */
      --brand-navy: #1a2a4a;   /* logo Clouds text */

      --bg:  #f4f8ff;          /* sky-tinted page background */
      --bg2: #ffffff;
      --bg3: #edf4ff;          /* sky-tinted panel background */
      --border:  rgba(26, 111, 212, 0.10);
      --border2: rgba(26, 111, 212, 0.18);
      --text:  #0f172a;
      --text2: #475569;
      --text3: #94a3b8;

      --blue:        #1a6fd4;              /* brand primary */
      --blue-dark:   #1254a8;              /* deeper brand */
      --blue-light:  #5baeff;              /* brand sky blue */
      --blue-xlight: #d4ebff;              /* very light sky */
      --blue-dim:    rgba(26, 111, 212, 0.08);
      --blue-mid:    rgba(26, 111, 212, 0.14);

      --dark:  #1a1a1a;
      --dark2: #111111;

      --green: #16a34a;
      --red:   #dc2626;

      --font: 'DM Sans', sans-serif;
      --mono: 'DM Mono', monospace;

      /* Standardized type scale */
      --fs-xs:  11px;
      --fs-sm:  13px;
      --fs-base:15px;
      --fs-md:  17px;
      --fs-lg:  22px;
      --fs-xl:  28px;
      --fs-2xl: 36px;
      --fs-3xl: 48px;

      /* Standardized spacing */
      --space-section: 100px;
      --space-gutter:  52px;

      /* Standardized border-radius */
      --radius-sm: 10px;
      --radius-md: 16px;
      --radius-lg: 20px;

      --shadow-sm: 0 1px 4px rgba(26, 111, 212, 0.06), 0 1px 2px rgba(0, 0, 0, 0.04);
      --shadow-md: 0 4px 16px rgba(26, 111, 212, 0.10), 0 2px 6px rgba(0, 0, 0, 0.04);
      --shadow-lg: 0 16px 48px rgba(26, 111, 212, 0.12), 0 4px 16px rgba(0, 0, 0, 0.06);

      /* Standardized transition */
      --ease-out:    cubic-bezier(0.16, 1, 0.3, 1);
      --ease-smooth: cubic-bezier(0.4, 0, 0.2, 1);
      --transition-base: 0.3s var(--ease-out);
    }

    html {
      scroll-behavior: smooth;
    }

    /* Page load animation */
    @keyframes pageLoad {
      from {
        opacity: 0;
      }

      to {
        opacity: 1;
      }
    }

    body {
      font-family: var(--font);
      background: var(--bg);
      color: var(--text);
      font-size: 16px;
      line-height: 1.6;
      overflow-x: hidden;
      -webkit-font-smoothing: antialiased;
      -moz-osx-font-smoothing: grayscale;
      animation: pageLoad 0.6s ease both;
    }

    /* Focus visible for accessibility */
    :focus-visible {
      outline: 2px solid var(--blue);
      outline-offset: 2px;
      border-radius: 4px;
    }
    .btn {
      display: inline-flex;
      align-items: center;
      gap: 5px;
      padding: 8px 16px;
      border-radius: 100px;
      font-family: var(--font);
      font-size: 12px;
      font-weight: 600;
      letter-spacing: -0.01em;
      text-decoration: none;
      cursor: pointer;
      border: none;
      transition: all 0.25s var(--ease-out);
      will-change: transform;
    }

    .btn:active {
      transform: scale(0.97);
    }

    .btn-ghost {
      background: transparent;
      color: var(--text2);
      border: 1px solid transparent;
    }

    .btn-ghost:hover {
      color: var(--text);
    }

    .btn-primary {
      background: linear-gradient(135deg, var(--brand-sky) 0%, var(--brand-blue) 100%);
      color: #fff;
      border: 1px solid var(--brand-blue);
      box-shadow: 0 2px 10px rgba(26, 111, 212, 0.30);
    }

    .btn-primary:hover {
      background: linear-gradient(135deg, #6bbfff 0%, #1560c0 100%);
      border-color: #1560c0;
      box-shadow: 0 6px 20px rgba(26, 111, 212, 0.38);
      transform: translateY(-2px);
    }

    .btn-outline {
      background: #fff;
      color: var(--brand-blue);
      border: 1.5px solid rgba(26, 111, 212, 0.28);
      box-shadow: var(--shadow-sm);
    }

    .btn-outline:hover {
      border-color: var(--brand-blue);
      background: var(--blue-dim);
      transform: translateY(-2px);
      box-shadow: var(--shadow-md);
    }

    .btn-large {
      padding: 8px 16px;
      font-size: 12px;
      font-weight: 600;
      border-radius: 100px;
      letter-spacing: -0.01em;
    }

    .btn-arrow {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      font-size: 16px;
      transition: transform 0.25s var(--ease-out);
      line-height: 1;
    }

    .btn:hover .btn-arrow {
      transform: translateX(4px);
    }

    /* â”€â”€â”€ HERO â”€â”€â”€ */
    .hero {
      min-height: 100vh;
      display: flex;
      flex-direction: column;
      align-items: center;
      justify-content: center;
      padding: calc(var(--nav-h) + 106px) var(--space-gutter) 80px;
      text-align: center;
      position: relative;
      overflow: hidden;
      background: linear-gradient(180deg, #f2f8ff 0%, #ffffff 38%, #f6faff 100%);
    }

    /* Hero stagger entrance animation */
    @keyframes heroFadeUp {
      from {
        opacity: 0;
        transform: translateY(30px);
      }

      to {
        opacity: 1;
        transform: translateY(0);
      }
    }

    .hero-stagger {
      opacity: 0;
      animation: heroFadeUp 0.8s var(--ease-out) both;
    }

    .hero-stagger-1 {
      animation-delay: 0.1s;
    }

    .hero-stagger-2 {
      animation-delay: 0.25s;
    }

    .hero-stagger-3 {
      animation-delay: 0.4s;
    }

    .hero-stagger-4 {
      animation-delay: 0.55s;
    }

    .hero-stagger-5 {
      animation-delay: 0.7s;
    }

    .hero-stagger-6 {
      animation-delay: 0.9s;
    }

    .hero-bg {
      position: absolute;
      inset: 0;
      background: #ffffff;
      pointer-events: none;
      z-index: -1;
    }

    .hero-grid {
      display: none;
    }

    /* Decorative cloud blobs â€” subtle float */
    @keyframes blobFloat {

      0%,
      100% {
        transform: translate(0, 0);
      }

      33% {
        transform: translate(8px, -6px);
      }

      66% {
        transform: translate(-5px, 4px);
      }
    }

    .hero-blob-wrapper {
      position: absolute;
      pointer-events: none;
      z-index: 0;
      will-change: transform;
    }

    .hb-w-1 {
      bottom: 8%;
      left: 2%;
    }

    .hb-w-2 {
      bottom: 14%;
      left: 12%;
    }

    .hb-w-3 {
      bottom: 6%;
      right: 5%;
    }

    .hero-blob {
      border-radius: 50%;
      pointer-events: none;
      animation: blobFloat 12s ease-in-out infinite;
    }

    .hero-blob-1 {
      width: 200px;
      height: 130px;
      background: radial-gradient(ellipse, rgba(91, 174, 255, 0.42) 0%, rgba(91, 174, 255, 0.10) 70%);
      filter: blur(18px);
      animation-delay: 0s;
    }

    .hero-blob-2 {
      width: 110px;
      height: 85px;
      background: radial-gradient(ellipse, rgba(91, 174, 255, 0.30) 0%, rgba(26, 111, 212, 0.08) 70%);
      filter: blur(14px);
      animation-delay: -4s;
    }

    .hero-blob-3 {
      width: 155px;
      height: 110px;
      background: radial-gradient(ellipse, rgba(26, 111, 212, 0.22) 0%, rgba(91, 174, 255, 0.06) 70%);
      filter: blur(20px);
      animation-delay: -8s;
    }

    .hero-badge {
      display: inline-flex;
      align-items: center;
      gap: 8px;
      padding: 0;
      border: none;
      background: transparent;
      font-size: 12px;
      font-weight: 500;
      letter-spacing: 0.14em;
      color: var(--text2);
      text-transform: uppercase;
      margin-bottom: 32px;
    }

    .hero-badge-dot {
      width: 7px;
      height: 7px;
      border-radius: 50%;
      background: var(--blue);
    }

    @keyframes pulse {

      0%,
      100% {
        opacity: 1;
        transform: scale(1);
      }

      50% {
        opacity: 0.4;
        transform: scale(0.75);
      }
    }

    .hero h1 {
      font-size: clamp(31px, 3.2vw, 40px);
      font-weight: 300;
      letter-spacing: -2px;
      line-height: 1.12;
      color: var(--text);
      max-width: 920px;
      margin-bottom: 8px;
      font-family: var(--font);
    }

    .hero h1 em {
      font-style: italic;
      color: var(--text3);
      font-weight: 300;
    }

    .hero-subtitle-line {
      display: flex;
      align-items: baseline;
      justify-content: center;
      gap: 8px;
      margin-bottom: 30px;
      flex-wrap: wrap;
      font-size: clamp(31px, 3.2vw, 40px);
      font-weight: 300;
      letter-spacing: -2px;
      line-height: 1.15;
    }

    .hero-subtitle-static {
      color: var(--text);
      font-size: inherit;
      font-weight: inherit;
      letter-spacing: inherit;
      line-height: inherit;
    }

    /* ─── ROTATING WORD ─── */
    .hero-rotating-word {
      display: inline-block;
      position: relative;
      overflow: visible;
      font-style: normal;
      font-size: inherit;
      font-weight: inherit;
      letter-spacing: inherit;
      line-height: inherit;
      vertical-align: baseline;
      /* width animated by JS */
      transition: width 0.75s cubic-bezier(0.22, 1, 0.36, 1);
      will-change: width;
    }

    .hero-rotating-word .rw {
      display: inline-block;
      position: absolute;
      left: 50%;
      top: 0;
      white-space: nowrap;
      padding: 0 4px;
      /* default: hidden, translated down — no blur (incompatible with background-clip:text) */
      transform: translate(-50%, 14px);
      opacity: 0;
      visibility: hidden;
      will-change: transform, opacity;
      transition:
        transform 0.72s cubic-bezier(0.22, 1, 0.36, 1),
        opacity   0.72s cubic-bezier(0.22, 1, 0.36, 1),
        visibility 0s   0.72s;
      /* Brand gradient — logo sky → pillar blue */
      background: linear-gradient(118deg, var(--brand-sky) 0%, var(--brand-blue) 58%, #1a4fa0 100%);
      -webkit-background-clip: text;
      background-clip: text;
      -webkit-text-fill-color: transparent;
    }

    /* Entering word: slide up + fade in */
    .hero-rotating-word .rw.active {
      transform: translate(-50%, 0);
      opacity: 1;
      visibility: visible;
      transition:
        transform 0.72s cubic-bezier(0.22, 1, 0.36, 1),
        opacity   0.72s cubic-bezier(0.22, 1, 0.36, 1),
        visibility 0s 0s;
    }

    /* Exiting word: slide up + fade out — faster so it's gone before new one arrives */
    .hero-rotating-word .rw.exit {
      transform: translate(-50%, -14px);
      opacity: 0;
      visibility: visible;
      transition:
        transform 0.45s cubic-bezier(0.4, 0, 1, 1),
        opacity   0.45s cubic-bezier(0.4, 0, 1, 1),
        visibility 0s   0.45s;
    }

    .hero-subtitle-end {
      color: var(--text);
      font-size: inherit;
      font-weight: inherit;
      letter-spacing: inherit;
      line-height: inherit;
    }

    .hero p {
      font-size: 14.5px;
      font-weight: 400;
      color: var(--text2);
      max-width: 540px;
      margin: 0 auto 40px;
      line-height: 1.8;
    }

    .hero-actions {
      display: flex;
      gap: 14px;
      flex-wrap: wrap;
      justify-content: center;
      align-items: center;
    }


    /* ─── HERO COLLAGE ─── */
    .hero-collage {
      margin-top: 44px;
      width: 100%;
      max-width: 1120px;
      height: 590px;
      position: relative;
      z-index: 10;
    }

    /* Entrance animation */
    @keyframes float-in {
      from { opacity: 0; transform: translateY(28px); }
      to   { opacity: 1; transform: translateY(0);    }
    }

    .hc-item {
      position: absolute;
      z-index: 1;
    }

    /* Inner: handles visual styling and overflow */
    .hc-inner {
      width: 100%;
      height: 100%;
      border-radius: 18px;
      overflow: hidden;
      position: relative;
      box-shadow:
        0 14px 40px rgba(26,111,212,0.13),
        0 3px 10px rgba(0,0,0,0.07);
    }

    .hc-item:hover .hc-inner {
      transform: scale(1.035) translateY(-7px);
      box-shadow:
        0 24px 60px rgba(26,111,212,0.18),
        0 6px 18px rgba(0,0,0,0.09);
    }

    .hc-inner img {
      object-fit: cover;
      width: 100%;
      height: 100%;
      display: block;
    }

    .hc-item:hover .hc-inner img {
      transform: scale(1.07);
    }

    /* Overlay: sky tint at top + depth vignette at bottom */
    .hc-inner::after {
      content: '';
      position: absolute;
      inset: 0;
      background: linear-gradient(
        180deg,
        rgba(91,174,255,0.09) 0%,
        transparent 30%,
        transparent 54%,
        rgba(16,38,76,0.30) 100%
      );
      z-index: 1;
      pointer-events: none;
      border-radius: inherit;
      transition: opacity 0.4s ease;
    }

    .hc-item:hover .hc-inner::after {
      opacity: 0.7;
    }

    /* Glassmorphic badge — floating chip */
    .hc-badge {
      position: absolute;
      background: rgba(255,255,255,0.92);
      backdrop-filter: blur(14px);
      -webkit-backdrop-filter: blur(14px);
      border: 1px solid rgba(255,255,255,0.78);
      box-shadow:
        0 4px 18px rgba(26,111,212,0.12),
        0 1px 5px rgba(0,0,0,0.06);
      color: var(--text);
      font-size: 12px;
      font-weight: 650;
      padding: 8px 16px 8px 11px;
      border-radius: 100px;
      display: flex;
      align-items: center;
      gap: 8px;
      white-space: nowrap;
      z-index: 12;
      letter-spacing: 0.01em;
      transition: box-shadow 0.35s ease;
    }

    .hc-badge-dot {
      width: 8px;
      height: 8px;
      border-radius: 50%;
      background: linear-gradient(135deg, var(--brand-sky) 0%, var(--brand-blue) 100%);
      flex-shrink: 0;
      box-shadow: 0 0 0 2.5px rgba(91,174,255,0.28);
    }

    /* ── Card coordinates + entrance animations ── */
    .hc-1 {
      width: 248px; height: 172px;
      top: 14px; left: 2%;
      animation: float-in 0.9s var(--ease-smooth) 0.10s backwards;
    }
    .hc-2 {
      width: 360px; height: 218px;
      top: 44px; left: 28.5%;
      z-index: 2;
      animation: float-in 0.9s var(--ease-smooth) 0.22s backwards;
    }
    .hc-3 {
      width: 218px; height: 190px;
      top: 10px; right: 3%;
      animation: float-in 0.9s var(--ease-smooth) 0.34s backwards;
    }
    .hc-4 {
      width: 204px; height: 262px;
      bottom: 14px; left: 4%;
      animation: float-in 0.9s var(--ease-smooth) 0.44s backwards;
    }
    .hc-5 {
      width: 182px; height: 232px;
      bottom: -18px; left: 40%;
      z-index: 3;
      animation: float-in 0.9s var(--ease-smooth) 0.54s backwards;
    }
    .hc-6 {
      width: 276px; height: 190px;
      bottom: 22px; right: 2%;
      animation: float-in 0.9s var(--ease-smooth) 0.64s backwards;
    }

    /* Badge positions (relative to .hc-item, outside .hc-inner) */
    .hc-1 .hc-badge {
      bottom: -20px; left: 50%;
      transform: translateX(-50%);
    }
    .hc-1:hover .hc-badge {
      transform: translateX(-50%) translateY(-4px);
      box-shadow: 0 8px 24px rgba(26,111,212,0.18), 0 2px 8px rgba(0,0,0,0.08);
    }
    .hc-3 .hc-badge {
      top: 50%; left: -10px;
      transform: translate(-100%, -50%);
    }
    .hc-3:hover .hc-badge {
      transform: translate(-100%, calc(-50% - 4px));
      box-shadow: 0 8px 24px rgba(26,111,212,0.18), 0 2px 8px rgba(0,0,0,0.08);
    }
    .hc-5 .hc-badge {
      top: -20px; left: 50%;
      transform: translateX(-50%);
    }
    .hc-5:hover .hc-badge {
      transform: translateX(-50%) translateY(-4px);
      box-shadow: 0 8px 24px rgba(26,111,212,0.18), 0 2px 8px rgba(0,0,0,0.08);
    }

    /* Floating metric cards inside collage */
    .hc-stat {
      position: absolute;
      background: rgba(255,255,255,0.93);
      backdrop-filter: blur(16px);
      -webkit-backdrop-filter: blur(16px);
      border: 1px solid rgba(255,255,255,0.82);
      box-shadow:
        0 6px 26px rgba(26,111,212,0.13),
        0 2px 8px rgba(0,0,0,0.06);
      border-radius: 14px;
      padding: 10px 15px;
      display: flex;
      align-items: center;
      gap: 10px;
      z-index: 15;
      min-width: 130px;
      transition: transform 0.4s ease, box-shadow 0.4s ease;
    }
    .hc-stat:hover {
      transform: translateY(-3px) scale(1.02);
      box-shadow: 0 10px 32px rgba(26,111,212,0.18), 0 3px 10px rgba(0,0,0,0.08);
    }
    .hc-stat-icon {
      width: 34px; height: 34px;
      border-radius: 10px;
      background: linear-gradient(135deg, var(--brand-sky) 0%, var(--brand-blue) 100%);
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 16px;
      flex-shrink: 0;
      color: #fff;
      box-shadow: 0 3px 10px rgba(26,111,212,0.30);
    }
    .hc-stat-val {
      font-size: 16px;
      font-weight: 800;
      color: var(--text);
      line-height: 1.1;
      letter-spacing: -0.5px;
    }
    .hc-stat-label {
      font-size: 10.5px;
      color: var(--text3);
      font-weight: 500;
      margin-top: 1px;
      letter-spacing: 0.01em;
    }
    .hc-stat-1 {
      top: 10px; left: 21%;
      animation: float-in 0.9s var(--ease-smooth) 0.70s backwards;
    }
    .hc-stat-2 {
      bottom: 10px; right: 19.5%;
      animation: float-in 0.9s var(--ease-smooth) 0.78s backwards;
    }

    .float-label {
      color: var(--text3);
      font-size: 10px;
      text-transform: uppercase;
      letter-spacing: 0.08em;
      margin-bottom: 4px;
      font-weight: 600;
    }

    .float-val {
      font-weight: 600;
      color: var(--text);
    }

    .float-sub {
      color: var(--text3);
      font-size: 11px;
      margin-top: 2px;
    }

    /* â”€â”€â”€ LOGOS â”€â”€â”€ */
    .logos-section {
      padding: 48px var(--space-gutter) 64px;
      border-top: 1px solid var(--border);
      background: var(--bg2);
    }

    .logos-label {
      text-align: center;
      font-size: 11px;
      color: var(--text3);
      font-weight: 700;
      letter-spacing: 0.10em;
      text-transform: uppercase;
      margin-bottom: 28px;
    }

    .logos-track-wrapper {
      overflow: hidden;
      position: relative;
    }

    .logos-track-wrapper::before,
    .logos-track-wrapper::after {
      content: '';
      position: absolute;
      top: 0;
      bottom: 0;
      width: 120px;
      z-index: 2;
      pointer-events: none;
    }

    .logos-track-wrapper::before {
      left: 0;
      background: linear-gradient(90deg, var(--bg2), transparent);
    }

    .logos-track-wrapper::after {
      right: 0;
      background: linear-gradient(-90deg, var(--bg2), transparent);
    }

    .logos-track {
      display: flex;
      align-items: center;
      gap: 48px;
      animation: scroll 28s linear infinite;
      width: max-content;
    }

    @keyframes scroll {
      from {
        transform: translateX(0);
      }

      to {
        transform: translateX(-50%);
      }
    }

    .logo-pill {
      display: flex;
      align-items: center;
      justify-content: center;
      padding: 10px 22px;
      border: 1px solid var(--border);
      border-radius: var(--radius-sm);
      font-size: 13px;
      font-weight: 600;
      color: var(--text3);
      white-space: nowrap;
      background: var(--bg3);
      min-width: 110px;
      letter-spacing: 0.01em;
      transition: all 0.2s;
    }

    /* â”€â”€â”€ GENERIC SECTION â”€â”€â”€ */
    .section-eyebrow {
      display: inline-flex;
      align-items: center;
      gap: 8px;
      font-size: var(--fs-xs);
      font-weight: 700;
      letter-spacing: 0.12em;
      text-transform: uppercase;
      color: var(--blue);
      margin-bottom: 18px;
    }

    .section-eyebrow::before {
      content: '';
      width: 18px;
      height: 2px;
      background: var(--blue);
      border-radius: 2px;
      flex-shrink: 0;
    }

    .section-eyebrow.center::before {
      display: none;
    }

    h2 {
      font-size: var(--type-h2);
      font-weight: var(--weight-light);
      letter-spacing: var(--ls-h2);
      line-height: var(--lh-heading);
      color: var(--text);
      max-width: 680px;
    }

    h2 span {
      color: var(--text2);
    }

    .section-desc {
      font-size: var(--type-body);
      color: var(--text2);
      font-weight: var(--weight-regular);
      max-width: 540px;
      margin-top: 14px;
      line-height: var(--lh-body);
    }

    /* â”€â”€â”€ COMPARISON â”€â”€â”€ */
    .comparison-section {
      padding: var(--space-section) var(--space-gutter);
      max-width: 1200px;
      margin: 0 auto;
    }

    .comparison-grid {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 16px;
      margin-top: 48px;
    }

    .comparison-card {
      background: var(--bg2);
      border: 1px solid var(--border);
      border-radius: var(--radius-md);
      padding: 32px;
      box-shadow: var(--shadow-sm);
      transition: box-shadow 0.3s ease, transform 0.3s var(--ease-out);
    }

    .comparison-card:hover {
      box-shadow: var(--shadow-md);
      transform: translateY(-2px);
    }

    .comparison-card.featured {
      border-color: var(--blue);
      background: linear-gradient(145deg, rgba(26, 111, 212, 0.04), var(--bg2));
      box-shadow: 0 0 0 1px var(--blue), var(--shadow-md);
    }

    .comparison-card-label {
      font-size: 10px;
      font-weight: 700;
      letter-spacing: 0.10em;
      text-transform: uppercase;
      color: var(--text3);
      margin-bottom: 14px;
    }

    .comparison-card.featured .comparison-card-label {
      color: var(--blue);
    }

    .comparison-card h3 {
      font-size: 22px;
      font-weight: 500;
      margin-bottom: 24px;
      letter-spacing: -0.4px;
    }

    .comparison-items {
      list-style: none;
      display: flex;
      flex-direction: column;
      gap: 11px;
    }

    .comparison-item {
      display: flex;
      align-items: flex-start;
      gap: 10px;
      font-size: 14px;
      color: var(--text2);
      line-height: 1.5;
    }

    .ci-icon {
      width: 17px;
      height: 17px;
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
      flex-shrink: 0;
      margin-top: 1px;
      font-size: 9px;
      font-weight: 700;
    }

    .ci-no {
      background: rgba(220, 38, 38, 0.10);
      color: var(--red);
    }

    .ci-yes {
      background: rgba(22, 163, 74, 0.12);
      color: var(--green);
    }

    /* â”€â”€â”€ PLATFORM â”€â”€â”€ */
    .platform-section {
      padding: var(--space-section) var(--space-gutter);
      background: var(--bg3);
      border-top: 1px solid var(--border);
      border-bottom: 1px solid var(--border);
    }

    .platform-inner {
      max-width: 1200px;
      margin: 0 auto;
    }

    .channel-pills {
      display: flex;
      gap: 8px;
      flex-wrap: wrap;
      margin-top: 28px;
    }

    .ch-pill {
      padding: 7px 15px;
      border-radius: var(--radius-sm);
      border: 1px solid var(--border2);
      font-size: 13px;
      font-weight: 500;
      color: var(--text2);
      background: var(--bg2);
      cursor: pointer;
      transition: all 0.18s;
      display: flex;
      align-items: center;
      gap: 6px;
      box-shadow: var(--shadow-sm);
    }

    .ch-pill:hover,
    .ch-pill.active {
      border-color: var(--blue);
      color: var(--blue);
      background: var(--blue-xlight);
      box-shadow: 0 2px 8px rgba(26, 111, 212, 0.12);
    }

    .ch-dot {
      width: 6px;
      height: 6px;
      border-radius: 50%;
      background: currentColor;
    }

    .platform-tabs {
      display: flex;
      gap: 4px;
      margin-top: 28px;
      border: 1px solid var(--border);
      border-radius: var(--radius-sm);
      padding: 4px;
      background: var(--bg2);
      width: fit-content;
      box-shadow: var(--shadow-sm);
    }

    .platform-tab {
      padding: 8px 18px;
      border-radius: var(--radius-sm);
      font-size: 13px;
      font-weight: 500;
      cursor: pointer;
      color: var(--text3);
      transition: all 0.18s;
      border: none;
      background: none;
      font-family: var(--font);
    }

    .platform-tab.active {
      background: var(--blue);
      color: #fff;
      box-shadow: 0 2px 8px rgba(26, 111, 212, 0.25);
    }

    .platform-content {
      margin-top: 40px;
      display: grid;
      grid-template-columns: 1fr 1.55fr;
      gap: 48px;
      align-items: center;
    }

    .platform-text h3 {
      font-size: 26px;
      font-weight: 400;
      letter-spacing: -0.6px;
      margin-bottom: 14px;
    }

    .platform-text p {
      font-size: 14px;
      color: var(--text2);
      line-height: 1.75;
      margin-bottom: 22px;
    }

    .feature-list {
      list-style: none;
      display: flex;
      flex-direction: column;
      gap: 9px;
    }

    .feature-list li {
      display: flex;
      align-items: center;
      gap: 10px;
      font-size: 14px;
      color: var(--text2);
    }

    .feat-dot {
      width: 5px;
      height: 5px;
      border-radius: 50%;
      background: var(--blue);
      flex-shrink: 0;
    }

    .platform-visual {
      background: var(--bg2);
      border: 1px solid var(--border2);
      border-radius: var(--radius-md);
      overflow: hidden;
      min-height: 360px;
      box-shadow: var(--shadow-md);
    }

    .pv-header {
      padding: 13px 18px;
      border-bottom: 1px solid var(--border);
      display: flex;
      align-items: center;
      gap: 9px;
      font-size: 12px;
      color: var(--text3);
      font-weight: 500;
      background: var(--bg3);
    }

    .pv-dot {
      width: 8px;
      height: 8px;
      border-radius: 50%;
      background: var(--blue);
    }

    .pv-body {
      padding: 20px;
    }

    .chat-msg {
      display: flex;
      gap: 10px;
      margin-bottom: 15px;
    }

    .chat-avatar {
      width: 28px;
      height: 28px;
      border-radius: 50%;
      flex-shrink: 0;
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 10px;
      font-weight: 700;
    }

    .avatar-user {
      background: var(--bg3);
      color: var(--text2);
      border: 1px solid var(--border);
    }

    .avatar-ai {
      background: var(--blue);
      color: #fff;
    }

    .chat-bubble {
      background: var(--bg3);
      border: 1px solid var(--border);
      border-radius: var(--radius-sm);
      padding: 10px 14px;
      font-size: 13px;
      line-height: 1.55;
      color: var(--text);
      max-width: 320px;
    }

    .user-bubble {
      background: var(--blue-xlight);
      border-color: rgba(26, 111, 212, 0.15);
    }

    .chat-action {
      display: flex;
      align-items: center;
      gap: 8px;
      border-radius: var(--radius-sm);
      padding: 7px 11px;
      font-size: 12px;
      margin-top: 6px;
      font-weight: 500;
    }

    .chat-action.done {
      background: rgba(22, 163, 74, 0.08);
      border: 1px solid rgba(22, 163, 74, 0.2);
      color: var(--green);
    }

    .chat-action.run {
      background: var(--blue-dim);
      border: 1px solid var(--border2);
      color: var(--blue);
    }

    .action-dot {
      width: 6px;
      height: 6px;
      border-radius: 50%;
      background: currentColor;
      flex-shrink: 0;
    }

    /* â”€â”€â”€ INTEGRATIONS â”€â”€â”€ */
    .integrations-grid {
      display: flex;
      flex-wrap: wrap;
      gap: 8px;
      margin-top: 20px;
    }

    .int-chip {
      padding: 5px 13px;
      border-radius: var(--radius-sm);
      border: 1px solid var(--border);
      font-size: 12px;
      font-weight: 500;
      color: var(--text2);
      background: var(--bg2);
      box-shadow: var(--shadow-sm);
    }

    /* â”€â”€â”€ METRICS â”€â”€â”€ */
    .metrics-section {
      padding: var(--space-section) var(--space-gutter);
      max-width: 1200px;
      margin: 0 auto;
    }

    .metrics-grid {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 20px;
      margin-top: 48px;
    }

    .metric-card {
      background: var(--bg2);
      border: 1px solid var(--border);
      border-radius: var(--radius-md);
      padding: 32px;
      box-shadow: var(--shadow-sm);
      position: relative;
      overflow: hidden;
      transition: box-shadow 0.3s ease, transform 0.3s var(--ease-out);
    }

    .metric-card:hover {
      box-shadow: var(--shadow-md);
      transform: translateY(-3px);
    }

    .metric-card::before {
      content: '';
      position: absolute;
      top: 0;
      left: 0;
      right: 0;
      height: 3px;
      background: linear-gradient(90deg, var(--blue), var(--blue-light), transparent);
    }

    .metric-num {
      font-size: 52px;
      font-weight: 300;
      letter-spacing: -2px;
      line-height: 1;
      color: var(--blue);
      margin-bottom: 8px;
    }

    .metric-label {
      font-size: 14px;
      color: var(--text2);
      line-height: 1.5;
      margin-bottom: 20px;
    }

    .metric-quote {
      font-size: 13px;
      color: var(--text3);
      font-style: italic;
      line-height: 1.6;
      border-top: 1px solid var(--border);
      padding-top: 16px;
      margin-top: 16px;
    }

    .metric-attr {
      font-size: 11px;
      color: var(--text3);
      margin-top: 8px;
      font-style: normal;
      font-weight: 600;
    }

    /* â”€â”€â”€ SECURITY â”€â”€â”€ */
    .security-section {
      padding: var(--space-section) var(--space-gutter);
      background: var(--bg3);
      border-top: 1px solid var(--border);
      border-bottom: 1px solid var(--border);
    }

    .security-inner {
      max-width: 1200px;
      margin: 0 auto;
    }

    .security-grid {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 20px;
      margin-top: 48px;
    }

    .security-card {
      border: 1px solid var(--border);
      border-radius: var(--radius-md);
      padding: 28px;
      background: var(--bg2);
      box-shadow: var(--shadow-sm);
      transition: box-shadow 0.3s ease, border-color 0.3s ease, transform 0.3s var(--ease-out);
    }

    .security-card:hover {
      box-shadow: var(--shadow-md);
      border-color: var(--blue-light);
      transform: translateY(-3px);
    }

    .security-icon {
      width: 42px;
      height: 42px;
      border-radius: var(--radius-sm);
      background: var(--blue-dim);
      border: 1px solid var(--border2);
      display: flex;
      align-items: center;
      justify-content: center;
      margin-bottom: 16px;
      font-size: 20px;
    }

    .security-card h4 {
      font-size: 15px;
      font-weight: 600;
      margin-bottom: 8px;
    }

    .security-card p {
      font-size: 13px;
      color: var(--text2);
      line-height: 1.65;
    }

    .trust-badges {
      margin-top: 32px;
      display: flex;
      align-items: center;
      gap: 14px;
      flex-wrap: wrap;
    }

    .trust-badge {
      display: flex;
      align-items: center;
      gap: 10px;
      padding: 14px 20px;
      border: 1px solid var(--border);
      border-radius: var(--radius-sm);
      background: var(--bg2);
      box-shadow: var(--shadow-sm);
    }

    .trust-badge-icon {
      font-size: 20px;
    }


    .trust-badge-text .tbt-label {
      font-size: 10px;
      color: var(--text3);
      font-weight: 700;
      letter-spacing: 0.08em;
      text-transform: uppercase;
    }

    .trust-badge-text .tbt-val {
      font-size: 13px;
      color: var(--text2);
      margin-top: 2px;
      font-weight: 500;
    }


    /* ─── CTA / CONTACT SECTION ─── */
    .cta-section {
      padding: 88px var(--space-gutter) 96px;
      position: relative;
      overflow: hidden;
      background: linear-gradient(175deg, #f4f8ff 0%, #ffffff 45%, #eef5ff 100%);
      border-top: 1px solid rgba(26,111,212,0.07);
    }

    /* subtle "bottom of page" horizon gradient */
    .cta-section::after {
      content: '';
      position: absolute;
      inset: 0;
      background:
        radial-gradient(ellipse 70% 40% at 50% 110%, rgba(91,174,255,0.09) 0%, transparent 65%);
      pointer-events: none;
    }

    .cta-bg {
      position: absolute;
      inset: 0;
      background:
        radial-gradient(ellipse 55% 70% at 6% 50%, rgba(91,174,255,0.09) 0%, transparent 60%),
        radial-gradient(ellipse 40% 50% at 94% 48%, rgba(26,111,212,0.06) 0%, transparent 55%);
      pointer-events: none;
    }

    /* bottom-section label pill above the whole section */
    .cta-section-label {
      display: flex;
      justify-content: center;
      margin-bottom: 44px;
      position: relative;
      z-index: 3;
    }

    .cta-section-pill {
      display: inline-flex;
      align-items: center;
      gap: 6px;
      font-size: 11px;
      font-weight: 600;
      letter-spacing: 0.09em;
      text-transform: uppercase;
      color: var(--brand-blue);
      background: rgba(26,111,212,0.06);
      border: 1px solid rgba(26,111,212,0.14);
      border-radius: 100px;
      padding: 5px 14px 5px 10px;
    }

    .cta-section-pill svg {
      flex-shrink: 0;
      opacity: 0.75;
    }

    .cta-layout {
      max-width: 1120px;
      margin: 0 auto;
      display: grid;
      grid-template-columns: 1fr 0.92fr;
      gap: 56px;
      align-items: start;
      position: relative;
      z-index: 2;
    }

    /* ── Left column ── */
    .cta-left {
      padding-top: 8px;
      display: flex;
      flex-direction: column;
    }

    .cta-eyebrow {
      display: inline-flex;
      align-items: center;
      gap: 7px;
      font-size: 11px;
      font-weight: 700;
      text-transform: uppercase;
      letter-spacing: 0.10em;
      color: var(--brand-blue);
      margin-bottom: 20px;
      background: var(--blue-dim);
      border: 1px solid var(--border2);
      padding: 5px 13px;
      border-radius: 100px;
      width: fit-content;
    }

    .cta-eyebrow-dot {
      width: 6px;
      height: 6px;
      border-radius: 50%;
      background: var(--brand-blue);
      flex-shrink: 0;
      display: block;
    }

    .cta-left h2 {
      font-size: clamp(24px, 3vw, 40px);
      font-weight: 700;
      letter-spacing: -1.4px;
      line-height: 1.14;
      margin: 0 0 16px;
      color: var(--text);
      text-align: left;
    }

    .cta-left > p {
      font-size: 15px;
      color: var(--text2);
      line-height: 1.70;
      font-weight: 400;
      margin: 0 0 28px;
      max-width: 420px;
      text-align: left;
    }

    .cta-bullets {
      list-style: none;
      padding: 0;
      margin: 0 0 36px;
      display: flex;
      flex-direction: column;
      gap: 12px;
    }

    .cta-bullet {
      display: flex;
      align-items: center;
      gap: 12px;
      font-size: 14px;
      color: var(--text2);
      font-weight: 500;
      line-height: 1.4;
    }

    .cta-bullet-icon {
      width: 22px;
      height: 22px;
      min-width: 22px;
      border-radius: 50%;
      background: linear-gradient(135deg, var(--brand-sky) 0%, var(--brand-blue) 100%);
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 10px;
      color: #fff;
      font-weight: 800;
      flex-shrink: 0;
    }

    .cta-trust {
      display: flex;
      align-items: center;
      gap: 28px;
      padding-top: 28px;
      border-top: 1px solid var(--border);
    }

    .cta-trust-item {
      display: flex;
      flex-direction: column;
      align-items: flex-start;
      gap: 3px;
    }

    .cta-trust-val {
      font-size: 24px;
      font-weight: 800;
      line-height: 1;
      letter-spacing: -0.8px;
      background: linear-gradient(135deg, var(--brand-sky), var(--brand-blue));
      -webkit-background-clip: text;
      background-clip: text;
      -webkit-text-fill-color: transparent;
    }

    .cta-trust-label {
      font-size: 12px;
      color: var(--text3);
      font-weight: 500;
      letter-spacing: 0.01em;
    }

    .cta-trust-divider {
      width: 1px;
      height: 36px;
      background: var(--border);
      flex-shrink: 0;
    }

    /* ── Form Card ── */
    .cta-form-card {
      background: #ffffff;
      border-radius: 20px;
      padding: 26px 26px 22px;
      box-shadow:
        0 1px 2px rgba(0,0,0,0.03),
        0 6px 20px rgba(26,111,212,0.07),
        0 20px 52px rgba(26,111,212,0.06);
      border: 1px solid rgba(26,111,212,0.08);
      position: relative;
      overflow: hidden;
    }

    .cta-form-card::before {
      content: '';
      position: absolute;
      top: 0; left: 0; right: 0;
      height: 2.5px;
      background: linear-gradient(90deg, var(--brand-sky) 0%, var(--brand-blue) 60%, #8b5cf6 100%);
      border-radius: 20px 20px 0 0;
    }

    /* response-time badge inside form header */
    .cta-form-badge {
      display: inline-flex;
      align-items: center;
      gap: 5px;
      font-size: 10.5px;
      font-weight: 600;
      letter-spacing: 0.06em;
      text-transform: uppercase;
      color: #16a34a;
      background: rgba(22,163,74,0.08);
      border: 1px solid rgba(22,163,74,0.18);
      border-radius: 100px;
      padding: 3px 9px;
      margin-bottom: 10px;
    }

    .cta-form-badge-dot {
      width: 5px;
      height: 5px;
      border-radius: 50%;
      background: #16a34a;
      flex-shrink: 0;
      animation: pulse-green 2s ease-in-out infinite;
    }

    @keyframes pulse-green {
      0%, 100% { opacity: 1; transform: scale(1); }
      50%       { opacity: 0.55; transform: scale(0.8); }
    }

    .cta-form-header {
      margin-bottom: 18px;
      padding-bottom: 15px;
      border-bottom: 1px solid rgba(26,111,212,0.06);
    }

    .cta-form-header h3 {
      font-family: var(--font);
      font-size: 16px;
      font-weight: 700;
      color: var(--text);
      letter-spacing: -0.35px;
      margin: 0 0 4px;
      line-height: 1.2;
    }

    .cta-form-header > p {
      font-family: var(--font);
      font-size: 12px;
      color: var(--text3);
      margin: 0;
      font-weight: 400;
      line-height: 1.5;
      max-width: none;
    }

    /* ── Form grid ── */
    .cta-form {
      display: flex;
      flex-direction: column;
      gap: 11px;
    }

    .form-row {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 10px;
    }

    .form-field {
      display: flex;
      flex-direction: column;
      gap: 5px;
      width: 100%;
      min-width: 0;
    }

    .form-field label {
      font-family: var(--font);
      font-size: 11.5px;
      font-weight: 600;
      color: #4b5563;
      letter-spacing: 0.02em;
      display: block;
      user-select: none;
      margin: 0;
    }

    /* ── Inputs ── */
    .form-field input {
      display: block;
      width: 100%;
      height: 38px;
      padding: 0 12px;
      font-family: var(--font);
      font-size: 13px;
      font-weight: 400;
      color: var(--text);
      background: #f7f9fd;
      border: 1.5px solid #e2eaf5;
      border-radius: 9px;
      outline: none;
      -webkit-appearance: none;
      appearance: none;
      box-sizing: border-box;
      transition: border-color 0.16s ease, box-shadow 0.16s ease, background 0.16s ease;
      line-height: normal;
    }

    .form-field input::placeholder {
      color: #b0bccf;
      font-size: 12.5px;
    }

    .form-field input:hover {
      border-color: #c4d3e8;
      background: #f0f5fb;
    }

    .form-field input:focus {
      border-color: var(--brand-blue);
      box-shadow: 0 0 0 3px rgba(26,111,212,0.10);
      background: #ffffff;
    }

    /* ── Select wrapper ── */
    .form-select-wrap {
      position: relative;
      display: block;
      width: 100%;
      min-width: 0;
    }

    .form-select-wrap select {
      display: block;
      width: 100%;
      height: 38px;
      padding: 0 32px 0 12px;
      font-family: var(--font);
      font-size: 13px;
      font-weight: 400;
      color: var(--text);
      background: #f7f9fd;
      border: 1.5px solid #e2eaf5;
      border-radius: 9px;
      outline: none;
      -webkit-appearance: none;
      appearance: none;
      box-sizing: border-box;
      cursor: pointer;
      transition: border-color 0.16s ease, box-shadow 0.16s ease, background 0.16s ease;
      line-height: normal;
    }

    .form-select-wrap select:hover {
      border-color: #c4d3e8;
      background: #f0f5fb;
    }

    .form-select-wrap select:focus {
      border-color: var(--brand-blue);
      box-shadow: 0 0 0 3px rgba(26,111,212,0.10);
      background: #ffffff;
    }

    .form-select-wrap select option { background: #fff; color: var(--text); }

    .form-select-wrap::after {
      content: '';
      position: absolute;
      right: 12px;
      top: 50%;
      transform: translateY(-50%);
      pointer-events: none;
      width: 9px;
      height: 5px;
      background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 10 6'%3E%3Cpath d='M1 1l4 4 4-4' stroke='%2394a3b8' stroke-width='1.5' fill='none' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
      background-repeat: no-repeat;
      background-size: contain;
    }

    /* ── Submit area ── */
    .form-submit {
      display: flex;
      flex-direction: column;
      gap: 9px;
      margin-top: 5px;
    }

    .btn-form-submit {
      display: flex !important;
      align-items: center;
      justify-content: center;
      gap: 7px;
      width: 100%;
      height: 42px;
      padding: 0 24px;
      font-family: var(--font);
      font-size: 14px;
      font-weight: 600;
      letter-spacing: 0.01em;
      color: #ffffff !important;
      background: linear-gradient(135deg, var(--brand-sky) 0%, var(--brand-blue) 100%) !important;
      border: none !important;
      border-radius: 10px;
      cursor: pointer;
      box-shadow: 0 3px 12px rgba(26,111,212,0.28);
      transition: transform 0.16s ease, box-shadow 0.16s ease;
      text-decoration: none;
      box-sizing: border-box;
      outline: none;
      -webkit-appearance: none;
      appearance: none;
    }

    .btn-form-submit:hover {
      transform: translateY(-1.5px);
      box-shadow: 0 6px 22px rgba(26,111,212,0.38);
    }

    .btn-form-submit:active {
      transform: translateY(0);
      box-shadow: 0 2px 7px rgba(26,111,212,0.25);
    }

    .btn-form-submit:focus-visible {
      outline: 2px solid var(--brand-blue);
      outline-offset: 3px;
    }

    .form-privacy {
      font-family: var(--font) !important;
      font-size: 11px !important;
      color: var(--text3) !important;
      line-height: 1.55;
      text-align: center !important;
      margin: 0 !important;
      padding: 0;
      max-width: none !important;
      font-weight: 400 !important;
    }

    .form-privacy a {
      color: var(--brand-blue);
      text-decoration: none;
      font-weight: 500;
    }

    .form-privacy a:hover { text-decoration: underline; }

    .cta-actions {
      display: flex;
      gap: 12px;
      justify-content: center;
      flex-wrap: wrap;
    }


    /* â”€â”€â”€ CAPABILITIES SECTION â”€â”€â”€ */
    .capabilities-section {
      padding: var(--space-section) var(--space-gutter);
      background: var(--bg);
      display: flex;
      justify-content: center;
    }

    .capabilities-container {
      max-width: 1200px;
      width: 100%;
      display: grid;
      grid-template-columns: 1fr 1fr;
      grid-template-rows: 60px auto;
      gap: 0 40px;
    }

    .cap-left-title {
      grid-column: 1;
      grid-row: 1;
      display: flex;
      align-items: center;
      justify-content: center;
    }

    .cap-left-title h2 {
      font-size: clamp(26px, 3.2vw, 38px);
      font-weight: 300;
      color: var(--text);
      margin: 0;
      text-align: center;
      letter-spacing: -1.5px;
      line-height: 1.12;
    }

    .cap-left-frame-wrapper {
      grid-column: 1;
      grid-row: 2;
      display: flex;
      justify-content: center;
      align-items: flex-start;
    }

    /* Right Side Container */
    .cap-right {
      grid-column: 2;
      grid-row: 1 / span 2;
      background: linear-gradient(135deg, #eaf4fd 0%, #f4f9ff 100%);
      border-radius: 20px;
      padding: 60px;
      /* Top padding precisely matches row 1 height */
      display: flex;
      justify-content: center;
      align-items: flex-start;
    }

    /* Browser frame container - Shared Styles */
    .cap-browser-frame,
    .carousel-frame {
      width: 100%;
      max-width: 400px;
      aspect-ratio: 3/4;
      /* Guarantee identical sizing */
      background: #ffffff;
      border: 1px solid var(--border2);
      border-radius: var(--radius-md);
      box-shadow: 0 24px 60px -12px rgba(0, 0, 0, 0.08);
      /* Subtle soft shadow */
      overflow: hidden;
      display: flex;
      flex-direction: column;
    }

    .cap-browser-header {
      height: 32px;
      background: #fafafa;
      border-bottom: 1px solid var(--border);
      display: flex;
      align-items: center;
      padding: 0 16px;
      gap: 6px;
    }

    .cap-dot {
      width: 8px;
      height: 8px;
      border-radius: 50%;
      background: #e2e8f0;
    }

    .cap-list-container {
      padding: 24px 32px;
    }

    .cap-list {
      list-style: none;
      padding: 0;
      margin: 0;
    }

    .cap-list li {
      font-size: 13px;
      color: var(--text2);
      padding: 14px 0;
      display: flex;
      align-items: center;
      gap: 12px;
      border-bottom: 1px solid var(--border);
    }

    .cap-list li:last-child {
      border-bottom: none;
      padding-bottom: 0;
    }

    .cap-list li:first-child {
      padding-top: 0;
    }

    .cap-list li::before {
      content: "";
      display: block;
      width: 4px;
      height: 4px;
      background: var(--text3);
      border-radius: 50%;
    }

    /* Right frame specific adjustments */
    .carousel-frame {
      position: relative;
      border: 1px solid rgba(255, 255, 255, 0.6);
    }

    .carousel-content {
      flex: 1;
      position: relative;
      overflow: hidden;
    }

    .carousel-slide {
      position: absolute;
      top: 0;
      left: 0;
      right: 0;
      bottom: 0;
      visibility: hidden;
      transform: translateY(100%);
      z-index: 1;
      will-change: transform;
    }

    .carousel-slide.active {
      visibility: visible;
      transform: translateY(0);
      z-index: 3;
      transition: transform 1.2s cubic-bezier(0.8, 0, 0.2, 1);
    }

    .carousel-slide.exit {
      visibility: visible;
      transform: translateY(-100%);
      z-index: 2;
      transition: transform 1.2s cubic-bezier(0.8, 0, 0.2, 1);
    }

    .carousel-slide img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      object-position: top;
    }

    .carousel-fade {
      position: absolute;
      bottom: 0;
      left: 0;
      right: 0;
      height: 40%;
      background: linear-gradient(to top, rgba(255, 255, 255, 1) 0%, rgba(255, 255, 255, 0) 100%);
      pointer-events: none;
      z-index: 10;
    }

    /* Reveal Animations */
    .reveal-up {
      opacity: 0;
      transform: translateY(40px);
      transition: opacity 1s cubic-bezier(0.25, 1, 0.5, 1), transform 1s cubic-bezier(0.25, 1, 0.5, 1);
      will-change: opacity, transform;
    }

    .reveal-up.is-visible {
      opacity: 1;
      transform: translateY(0);
    }

    @media (max-width: 900px) {
      .capabilities-container {
        grid-template-columns: 1fr;
        grid-template-rows: auto;
      }

      .cap-left-title {
        grid-column: 1;
        grid-row: 1;
        margin-bottom: 20px;
      }

      .cap-left-frame-wrapper {
        grid-column: 1;
        grid-row: 2;
        margin-bottom: 40px;
      }

      .cap-right {
        grid-column: 1;
        grid-row: 3;
        padding: 40px 20px;
      }
    }

    /* â”€â”€â”€ SERVICES MARQUEE SECTION â”€â”€â”€ */
    .services-marquee-section {
      padding: var(--space-section) 0;
      background: var(--bg2);
      border-top: 1px solid var(--border);
      border-bottom: 1px solid var(--border);
      overflow: hidden;
    }

    .services-marquee-header {
      max-width: 1200px;
      margin: 0 auto 48px;
      padding: 0 52px;
    }

    .services-marquee-container {
      width: 100%;
      overflow: hidden;
      position: relative;
      padding: 16px 0;
      cursor: grab;
    }

    .services-marquee-container:active {
      cursor: grabbing;
    }

    /* Gradient overlays for smooth fading edges */
    .services-marquee-container::before,
    .services-marquee-container::after {
      content: '';
      position: absolute;
      top: 0;
      bottom: 0;
      width: 150px;
      z-index: 10;
      pointer-events: none;
    }

    .services-marquee-container::before {
      left: 0;
      background: linear-gradient(90deg, var(--bg2) 0%, rgba(255, 255, 255, 0) 100%);
    }

    .services-marquee-container::after {
      right: 0;
      background: linear-gradient(-90deg, var(--bg2) 0%, rgba(255, 255, 255, 0) 100%);
    }

    .services-marquee-track {
      display: flex;
      gap: 28px;
      width: max-content;
      will-change: transform;
      user-select: none;
    }

    .service-card {
      width: 256px;
      height: 310px;
      background: linear-gradient(180deg, #dceeff 0%, #f2f8ff 100%);
      border: 1px solid rgba(26, 111, 212, 0.04);
      border-radius: var(--radius-lg);
      display: flex;
      flex-direction: column;
      align-items: center;
      justify-content: flex-start;
      text-align: center;
      overflow: hidden;
      padding: 30px 18px 18px 18px;
      transition: all 0.4s var(--ease-out);
      cursor: pointer;
      box-shadow: 0 4px 20px rgba(26, 111, 212, 0.02), 0 2px 6px rgba(0, 0, 0, 0.01);
      flex-shrink: 0;
      position: relative;
    }

    .service-card:hover {
      transform: translateY(-6px);
      border-color: rgba(26, 111, 212, 0.15);
      box-shadow: 0 12px 28px rgba(26, 111, 212, 0.05);
    }

    .service-card-body {
      padding: 0;
      display: flex;
      flex-direction: column;
      align-items: center;
    }

    .service-card-title {
      font-size: var(--type-body);
      font-weight: var(--weight-semi);
      color: var(--text);
      line-height: var(--lh-subhead);
      margin: 0 0 8px 0;
      letter-spacing: var(--ls-h3);
    }

    .service-card-desc {
      font-size: var(--type-xs);
      line-height: var(--lh-body);
      color: var(--text2);
      margin: 0;
    }

    .service-card-img-wrapper {
      width: 100%;
      margin-top: auto;
      display: flex;
      justify-content: center;
      align-items: center;
      height: 85px;
      padding: 8px 0 4px;
      border-top: 1px solid rgba(26, 111, 212, 0.07);
    }

    .service-card-img {
      width: 100px;
      height: 65px;
      border-radius: 10px;
      object-fit: contain;
      background: linear-gradient(145deg, #f8faff 0%, #edf2ff 100%);
      padding: 6px;
      border: 1px solid rgba(26, 111, 212, 0.12);
      box-shadow: 0 6px 16px rgba(26, 111, 212, 0.09), 0 2px 4px rgba(0, 0, 0, 0.04), inset 0 1px 0 rgba(255, 255, 255, 0.9);
      display: block;
      transition: transform 0.4s ease, box-shadow 0.4s ease;
    }

    .service-card:hover .service-card-img {
      transform: scale(1.08);
      box-shadow: 0 8px 20px rgba(26, 111, 212, 0.14), 0 2px 6px rgba(0, 0, 0, 0.05);
    }

    /* Centered black button at the bottom */
    .btn-learn-more {
      display: inline-flex;
      align-items: center;
      gap: 12px;
      padding: 10px 24px;
      background: #111111;
      color: #ffffff;
      border-radius: 100px;
      font-size: 14px;
      font-weight: 600;
      text-decoration: none;
      transition: all 0.2s ease;
      border: none;
      cursor: pointer;
    }

    .btn-learn-more:hover {
      background: #000000;
      transform: translateY(-2px);
      box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
    }

    .btn-learn-more-icon {
      width: 20px;
      height: 20px;
      background: rgba(255, 255, 255, 0.15);
      border-radius: 50%;
      display: inline-flex;
      align-items: center;
      justify-content: center;
      font-size: 11px;
      transition: transform 0.2s ease;
      line-height: 1;
    }

    .btn-learn-more:hover .btn-learn-more-icon {
      transform: translateX(3px);
    }

    @media (max-width: 900px) {
      .services-marquee-header {
        padding: 0 24px;
      }

      .service-card {
        width: 220px;
        height: 275px;
        padding: 24px 14px 14px 14px;
      }

      .service-card-img-wrapper {
        height: 75px;
        padding: 6px 0 3px;
      }

      .service-card-img {
        width: 80px;
        height: 52px;
        border-radius: 8px;
        padding: 4px;
      }

      .service-card-title {
        font-size: 14.5px;
      }

      .service-card-desc {
        font-size: 11px;
        line-height: 1.45;
      }
    }

    /* â”€â”€â”€ ENTERPRISE SOLUTIONS SECTION â”€â”€â”€ */
    .enterprise-solutions-section {
      padding: 88px 0;
      background: #ffffff;
      border-top: 1px solid var(--border);
    }

    .solutions-container {
      width: 100%;
      max-width: 1200px;
      margin: 0 auto;
      padding: 0 var(--space-gutter);
    }

    .solutions-title {
      font-size: var(--type-h2);
      font-weight: var(--weight-light);
      color: var(--text);
      text-align: center;
      margin: 0 auto 12px;
      letter-spacing: var(--ls-h2);
      line-height: var(--lh-heading);
    }

    .solutions-subtitle {
      font-size: var(--type-body);
      color: var(--text2);
      text-align: center;
      max-width: 540px;
      margin: 0 auto 36px auto;
      line-height: var(--lh-body);
      font-weight: var(--weight-regular);
    }

    .solutions-grid {
      display: grid;
      grid-template-columns: repeat(12, 1fr);
      gap: 14px;
    }

    .solution-card {
      border-radius: var(--radius-md);
      border: 1px solid rgba(0, 0, 0, 0.05);
      padding: 20px;
      display: flex;
      flex-direction: column;
      justify-content: flex-start;
      transition: all 0.28s var(--ease-out);
      box-shadow: 0 2px 8px rgba(0, 0, 0, 0.025);
    }

    .solution-card:hover {
      transform: translateY(-2px);
      box-shadow: 0 8px 20px rgba(0, 0, 0, 0.055), 0 0 0 1px rgba(26, 111, 212, 0.07);
      border-color: rgba(26, 111, 212, 0.10);
    }

    .solution-card.blue-tint {
      background: linear-gradient(160deg, #eaf3fd 0%, #f8fbff 55%, #ffffff 100%);
    }

    .solution-card.grey-tint {
      background: linear-gradient(160deg, #f4f7fb 0%, #f9fafc 100%);
    }

    .solution-card.cream-tint {
      background: linear-gradient(160deg, #fef4e8 0%, #fffdf9 100%);
    }

    .solution-card.card-wide {
      grid-column: span 7;
    }

    .solution-card.card-narrow {
      grid-column: span 5;
    }

    /* Content block grows to push image to the card bottom */
    .solution-card-content {
      display: flex;
      flex-direction: column;
      text-align: left;
      flex: 1;
    }

    .solution-card-text {
      font-size: var(--type-xs);
      font-weight: var(--weight-medium);
      color: var(--text);
      line-height: var(--lh-tight);
      margin: 0;
    }

    .solution-card-text.font-medium {
      font-weight: var(--weight-medium);
    }

    .solution-card-number {
      font-size: clamp(20px, 2.2vw, 28px);
      font-weight: var(--weight-light);
      color: var(--text);
      margin: 0 0 4px 0;
      letter-spacing: -1px;
      line-height: var(--lh-heading);
    }

    .solution-card-heading {
      font-size: var(--type-body);
      font-weight: var(--weight-semi);
      color: var(--text);
      line-height: var(--lh-subhead);
      margin: 0 0 4px 0;
      letter-spacing: var(--ls-h3);
    }

    .solution-card-desc {
      font-size: var(--type-xs);
      color: var(--text2);
      line-height: var(--lh-tight);
      margin: 0;
    }

    /* Image container anchored to card bottom with tighter gap */
    .solution-card-img-container {
      display: flex;
      align-items: center;
      gap: 10px;
      margin-top: 14px;
      flex-shrink: 0;
    }

    .solution-card-img-container.align-left {
      justify-content: flex-start;
    }

    .solution-card-img-container.align-right {
      justify-content: flex-end;
    }

    .solution-card-img {
      height: 23px;
      width: auto;
      object-fit: contain;
      display: block;
    }

    @media (max-width: 900px) {
      .solutions-container {
        padding: 0 20px;
      }

      .solutions-title {
        font-size: clamp(21px, 4.5vw, 28px);
        letter-spacing: -1px;
      }

      .solutions-subtitle {
        font-size: 15px;
        margin-bottom: 28px;
      }

      .solutions-grid {
        gap: 10px;
      }

      .solution-card.card-wide,
      .solution-card.card-narrow {
        grid-column: span 12;
        padding: 17px;
      }

      .solution-card-number {
        font-size: 22px;
      }

      .solution-card-heading {
        font-size: 13.5px;
      }

      .solution-card-text {
        font-size: 12px;
      }

      .solution-card-img-container {
        margin-top: 10px;
      }

      .solution-card-img {
        height: 20px;
      }
    }

    /* â”€â”€â”€ INDUSTRIES WE SERVE â”€â”€â”€ */
    .industries-section {
      padding: var(--space-section) 0;
      background: linear-gradient(180deg, #ffffff 0%, #f4f8fe 100%);
      border-top: 1px solid var(--border);
    }

    .industries-grid {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      max-width: 1020px;
      margin: 40px auto 0;
      gap: 26px;
    }

    .industry-card {
      background: rgba(255, 255, 255, 0.7);
      backdrop-filter: blur(12px);
      -webkit-backdrop-filter: blur(12px);
      border: 1px solid rgba(255, 255, 255, 0.8);
      border-radius: var(--radius-lg);
      overflow: hidden;
      display: flex;
      flex-direction: column;
      box-shadow: 0 8px 32px rgba(31, 38, 135, 0.04);
      transition: all 0.4s var(--ease-out);
    }

    .industry-card-img-wrapper {
      position: relative;
      width: 100%;
      aspect-ratio: 16 / 10;
      overflow: hidden;
      background: #eef1f8;
    }

    .industry-card-img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
    }

    .industry-card-content {
      padding: 20px;
      display: flex;
      flex-direction: column;
      flex-grow: 1;
    }

    .industry-card-title {
      font-size: var(--fs-base);
      font-weight: 600;
      color: var(--text);
      margin-bottom: 8px;
      letter-spacing: -0.3px;
    }

    .industry-card-text {
      font-size: var(--fs-xs);
      color: var(--text2);
      line-height: 1.6;
      margin: 0;
    }

    /* Hover micro-interactions */
    .industry-card:hover {
      transform: translateY(-6px);
      background: rgba(255, 255, 255, 0.9);
      border-color: rgba(26, 111, 212, 0.25);
      box-shadow: 0 20px 38px rgba(26, 111, 212, 0.08), 0 0 16px rgba(26, 111, 212, 0.04);
    }

    .industry-card:hover .industry-card-img {
      transform: scale(1.05);
    }

    /* Responsive breakpoints */
    @media (max-width: 992px) {
      .industries-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
      }
    }

    @media (max-width: 600px) {
      .industries-section {
        padding: 60px 0;
      }

      .industries-grid {
        grid-template-columns: 1fr;
        gap: 16px;
      }

      .industry-card {
        border-radius: 12px;
      }

      .industry-card-content {
        padding: 16px;
      }
    }

    /* â”€â”€â”€ OUR PROCESS TIMELINE â”€â”€â”€ */
    .process-section {
      position: relative;
      padding: var(--space-section) 0;
      background: linear-gradient(180deg, #f4f8fe 0%, #ffffff 100%);
      border-top: 1px solid var(--border);
      overflow: hidden;
    }

    .process-bg-glow {
      position: absolute;
      width: 450px;
      height: 450px;
      border-radius: 50%;
      background: radial-gradient(circle, rgba(26, 111, 212, 0.05) 0%, rgba(255, 255, 255, 0) 70%);
      pointer-events: none;
      z-index: 0;
      filter: blur(40px);
    }

    .process-bg-glow.g1 {
      top: 10%;
      left: -100px;
    }

    .process-bg-glow.g2 {
      bottom: 10%;
      right: -100px;
    }

    .process-grid {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 36px;
      align-items: start;
      margin-top: 44px;
      z-index: 1;
      position: relative;
    }

    .process-timeline {
      position: relative;
      padding: 0;
    }

    .timeline-line {
      position: absolute;
      left: 17px;
      top: 22px;
      bottom: 22px;
      width: 3px;
      background: linear-gradient(to bottom, var(--blue-xlight), var(--blue), var(--blue-xlight));
      border-radius: 1.5px;
    }

    .timeline-item {
      position: relative;
      width: 100%;
      margin-bottom: 16px;
      display: flex;
      justify-content: flex-start;
      padding-left: 44px;
    }

    .timeline-item:last-child {
      margin-bottom: 0;
    }

    .timeline-badge {
      position: absolute;
      left: 17px;
      top: 22px;
      width: 14px;
      height: 14px;
      border-radius: 50%;
      background: #ffffff;
      border: 2px solid var(--blue);
      transform: translateX(-50%);
      z-index: 2;
      transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
      box-shadow: 0 0 0 3px rgba(26, 111, 212, 0.08);
    }

    .timeline-item:hover .timeline-badge {
      background: var(--blue);
      box-shadow: 0 0 0 5px rgba(26, 111, 212, 0.2), 0 0 12px var(--blue);
      transform: translateX(-50%) scale(1.15);
    }

    .process-card {
      width: 100%;
      background: rgba(255, 255, 255, 0.75);
      backdrop-filter: blur(12px);
      -webkit-backdrop-filter: blur(12px);
      border: 1px solid rgba(255, 255, 255, 0.85);
      border-radius: var(--radius-md);
      padding: 12px 18px;
      box-shadow: 0 6px 20px rgba(31, 38, 135, 0.02);
      transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
      position: relative;
    }

    .process-card:hover {
      transform: translateY(-3px);
      border-color: rgba(26, 111, 212, 0.22);
      box-shadow: 0 15px 30px rgba(26, 111, 212, 0.06), 0 0 15px rgba(26, 111, 212, 0.01);
    }

    .process-card-header {
      display: flex;
      align-items: center;
      justify-content: space-between;
      margin-bottom: 8px;
      gap: 12px;
    }

    .process-step-num {
      font-size: 9.5px;
      font-weight: 800;
      color: var(--blue);
      background: var(--blue-dim);
      padding: 3px 8px;
      border-radius: 100px;
      letter-spacing: 0.5px;
    }

    .process-icon-container {
      display: flex;
      align-items: center;
      justify-content: center;
      width: 32px;
      height: 32px;
      border-radius: var(--radius-sm);
      background: linear-gradient(135deg, var(--blue-xlight), rgba(26, 111, 212, 0.05));
      border: 1px solid rgba(26, 111, 212, 0.08);
      color: var(--blue);
      transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    }

    .process-icon-container svg {
      width: 15px;
      height: 15px;
      fill: currentColor;
    }

    .process-card:hover .process-icon-container {
      transform: scale(1.08) rotate(3deg);
      background: var(--blue);
      color: #ffffff;
      border-color: var(--blue);
    }

    .process-card-title {
      font-size: 14px;
      font-weight: 700;
      color: var(--text);
      margin: 0 0 4px 0;
      letter-spacing: -0.2px;
    }

    .process-card-desc {
      font-size: 11.5px;
      color: var(--text2);
      line-height: 1.5;
      margin: 0;
    }

    /* â”€â”€â”€ REFINED SALESFORCE LIGHT DASHBOARD & ARCHITECTURE â”€â”€â”€ */
    .sf-panel-wrap {
      position: relative;
      border-radius: 26px;
      overflow: hidden;
      background: rgba(255, 255, 255, 0.4);
      backdrop-filter: blur(12px);
      -webkit-backdrop-filter: blur(12px);
      border: 1px solid rgba(26, 111, 212, 0.08);
      box-shadow: 0 20px 50px rgba(26, 111, 212, 0.04), 0 8px 24px rgba(0, 0, 0, 0.01);
      transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
      width: 100%;
      margin-top: 0;
    }

    .sf-panel-wrap:hover {
      box-shadow: 0 30px 60px rgba(26, 111, 212, 0.08), 0 0 25px rgba(26, 111, 212, 0.02);
      transform: translateY(-4px) scale(1.005);
    }

    .live-chip {
      position: absolute;
      top: 15px;
      right: 15px;
      z-index: 10;
      background: rgba(255, 255, 255, 0.85);
      backdrop-filter: blur(8px);
      -webkit-backdrop-filter: blur(8px);
      border: 1px solid rgba(26, 111, 212, 0.08);
      border-radius: 50px;
      padding: 6px 13px;
      display: flex;
      align-items: center;
      gap: 7px;
    }

    .live-chip .ldot {
      width: 7px;
      height: 7px;
      border-radius: 50%;
      background: #22c55e;
      animation: livePulse 1.9s ease-in-out infinite;
    }

    .live-chip span {
      font-size: 11px;
      font-weight: 600;
      color: var(--text);
      letter-spacing: 0.04em;
    }

    .sf-inner {
      width: 100%;
      overflow: hidden;
    }

    .sf-inner .page {
      background: transparent;
      padding: 24px 20px 20px 20px;
      display: flex;
      flex-direction: column;
      align-items: center;
      gap: 16px;
      overflow: hidden;
    }

    .sf-inner .dash {
      background: rgba(255, 255, 255, 0.65);
      border-radius: var(--radius-md);
      border: 1px solid rgba(26, 111, 212, 0.08);
      width: 100%;
      overflow: hidden;
      display: flex;
      box-shadow: 0 4px 20px rgba(0, 0, 0, 0.01);
      animation: fadeSlideUp .8s ease both;
    }

    .sf-inner .sidebar {
      background: rgba(244, 248, 254, 0.65);
      width: 50px;
      flex-shrink: 0;
      display: flex;
      flex-direction: column;
      align-items: center;
      padding: 14px 0;
      gap: 12px;
      border-right: 1px solid rgba(26, 111, 212, 0.08);
    }

    .sf-inner .sf-avatar {
      width: 30px;
      height: 30px;
      border-radius: 50%;
      background: var(--blue);
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 10px;
      font-weight: 700;
      color: #fff;
      animation: avatarPulse 3s ease-in-out infinite;
    }

    .sf-inner .sb-item {
      display: flex;
      align-items: center;
      gap: 6px;
      width: 34px;
    }

    .sf-inner .sb-dot {
      width: 4px;
      height: 4px;
      border-radius: 50%;
      background: rgba(26, 111, 212, 0.15);
      flex-shrink: 0;
    }

    .sf-inner .sb-dot.on {
      background: var(--blue);
    }

    .sf-inner .sb-line {
      height: 2px;
      flex: 1;
      background: rgba(26, 111, 212, 0.1);
      border-radius: 1px;
    }

    .sf-inner .sb-line.on {
      background: var(--blue);
    }

    .sf-inner .dash-main {
      flex: 1;
      padding: 16px;
    }

    .sf-inner .search {
      display: flex;
      align-items: center;
      gap: 7px;
      background: rgba(255, 255, 255, 0.9);
      border: 1px solid rgba(26, 111, 212, 0.06);
      border-radius: 8px;
      padding: 6px 10px;
      margin-bottom: 14px;
      color: var(--text2);
      font-size: 11px;
    }

    .sf-inner .search-icons {
      margin-left: auto;
      display: flex;
      gap: 8px;
      opacity: .4;
    }

    .sf-inner .dash-title {
      font-size: 14px;
      font-weight: 700;
      color: var(--text);
      margin-bottom: 12px;
      letter-spacing: -.2px;
    }

    .sf-inner .metrics {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 7px;
      margin-bottom: 12px;
    }

    .sf-inner .metric {
      background: rgba(255, 255, 255, 0.95);
      border: 1px solid rgba(26, 111, 212, 0.06);
      border-radius: var(--radius-sm);
      padding: 10px;
      position: relative;
      overflow: hidden;
    }

    .sf-inner .metric::after {
      content: '';
      position: absolute;
      inset: 0;
      background: linear-gradient(90deg, transparent, rgba(26, 111, 212, 0.04), transparent);
      transform: translateX(-100%);
      animation: shimmerCard 4s ease-in-out infinite;
    }

    .sf-inner .metric:nth-child(2)::after {
      animation-delay: 1.3s;
    }

    .sf-inner .metric:nth-child(3)::after {
      animation-delay: 2.6s;
    }

    .sf-inner .metric-lbl {
      font-size: 9px;
      color: var(--text2);
      margin-bottom: 3px;
      font-weight: 500;
    }

    .sf-inner .metric-val {
      font-size: 18px;
      font-weight: 700;
      color: var(--text);
      line-height: 1;
    }

    .sf-inner .metric-chg {
      font-size: 9px;
      color: #22c55e;
      margin-top: 2px;
      font-weight: 600;
    }

    .sf-inner .charts {
      display: grid;
      grid-template-columns: 1.3fr 1fr;
      gap: 7px;
    }

    .sf-inner .chart-card {
      background: rgba(255, 255, 255, 0.95);
      border: 1px solid rgba(26, 111, 212, 0.06);
      border-radius: var(--radius-sm);
      padding: 10px;
    }

    .sf-inner .chart-lbl {
      font-size: 9px;
      color: var(--text2);
      margin-bottom: 8px;
      font-weight: 500;
    }

    .sf-inner .bars {
      display: flex;
      align-items: flex-end;
      gap: 3px;
      height: 50px;
    }

    .sf-inner .bar {
      background: rgba(26, 111, 212, 0.15);
      border-radius: 2px 2px 0 0;
      flex: 1;
      transition: background .3s;
    }

    .sf-inner .bar.lit {
      background: var(--blue);
    }

    .sf-inner .donut-wrap {
      display: flex;
      align-items: center;
      gap: 9px;
    }

    .sf-inner .donut {
      position: relative;
      width: 52px;
      height: 52px;
      flex-shrink: 0;
    }

    .sf-inner .donut svg {
      width: 52px;
      height: 52px;
    }

    .sf-inner .donut-pct {
      position: absolute;
      inset: 0;
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 10px;
      font-weight: 700;
      color: var(--text);
    }

    .sf-inner .legend {
      display: flex;
      flex-direction: column;
      gap: 3px;
    }

    .sf-inner .leg {
      display: flex;
      align-items: center;
      gap: 4px;
      font-size: 8.5px;
      color: var(--text2);
    }

    .sf-inner .leg-dot {
      width: 6px;
      height: 6px;
      border-radius: 50%;
      flex-shrink: 0;
    }

    .sf-inner .section-conn {
      display: block;
      margin: -4px auto;
      overflow: visible;
    }

    .sf-inner .arch {
      width: 100%;
      border: 1px solid rgba(26, 111, 212, 0.08);
      border-radius: 14px;
      padding: 18px 14px;
      background: rgba(255, 255, 255, 0.65);
      backdrop-filter: blur(6px);
      position: relative;
      overflow: hidden;
      box-shadow: 0 4px 20px rgba(0, 0, 0, 0.015);
      animation: fadeSlideUp .8s ease .5s both;
    }

    .sf-inner .arch-outer-row {
      display: flex;
      align-items: center;
      justify-content: center;
      gap: 0;
    }

    .sf-inner .ext-box {
      border: 1px solid rgba(26, 111, 212, 0.06);
      border-radius: var(--radius-sm);
      background: rgba(255, 255, 255, 0.95);
      padding: 8px 10px;
      display: flex;
      flex-direction: column;
      align-items: center;
      gap: 7px;
      min-width: 80px;
      transition: border-color .3s, box-shadow .3s;
    }

    .sf-inner .ext-box:hover {
      border-color: var(--blue);
      box-shadow: 0 0 16px rgba(26, 111, 212, 0.10);
    }

    .sf-inner .ext-title {
      font-size: 9px;
      font-weight: 700;
      color: var(--text);
      text-align: center;
      line-height: 1.3;
    }

    .sf-inner .sf-cloud-center {
      padding: 0 8px;
    }

    .sf-inner .cloud-anim {
      animation: floatCloud 5s ease-in-out infinite;
    }

    .sf-inner .cloud-glow {
      filter: drop-shadow(0 4px 12px rgba(26, 111, 212, 0.25));
    }

    .sf-inner .apis-box {
      border: 1px solid rgba(26, 111, 212, 0.06);
      border-radius: var(--radius-sm);
      background: rgba(255, 255, 255, 0.95);
      padding: 10px 16px;
      display: flex;
      align-items: center;
      gap: 9px;
      margin: 0 auto;
      transition: border-color .3s, box-shadow .3s;
    }

    .sf-inner .apis-box:hover {
      border-color: var(--blue);
      box-shadow: 0 0 16px rgba(26, 111, 212, 0.10);
    }

    .sf-inner .apis-icon {
      width: 28px;
      height: 28px;
      border: 1px solid rgba(26, 111, 212, 0.06);
      border-radius: var(--radius-sm);
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 11px;
      font-weight: 700;
      color: var(--blue);
      font-family: monospace;
      background: rgba(244, 248, 254, 0.9);
    }

    .sf-inner .apis-lbl {
      font-size: 11.5px;
      font-weight: 700;
      color: var(--text);
      line-height: 1.3;
    }

    .sf-inner .bot-row {
      display: flex;
      gap: 7px;
      width: 100%;
    }

    .sf-inner .bot-box {
      flex: 1;
      border: 1px solid rgba(26, 111, 212, 0.06);
      border-radius: var(--radius-sm);
      background: rgba(255, 255, 255, 0.95);
      padding: 10px 4px;
      display: flex;
      flex-direction: column;
      align-items: center;
      gap: 7px;
      transition: border-color .3s, box-shadow .3s;
    }

    .sf-inner .bot-box:hover {
      border-color: var(--blue);
      box-shadow: 0 0 16px rgba(26, 111, 212, 0.10);
    }

    .sf-inner .bot-lbl {
      font-size: 9px;
      font-weight: 700;
      color: var(--text);
      text-align: center;
      line-height: 1.3;
    }

    /* Animations & Keyframes */
    @keyframes livePulse {

      0%,
      100% {
        opacity: 1;
        transform: scale(1);
      }

      50% {
        opacity: .45;
        transform: scale(1.3);
      }
    }

    @keyframes avatarPulse {

      0%,
      100% {
        box-shadow: 0 0 0 0 rgba(26, 111, 212, 0);
      }

      50% {
        box-shadow: 0 0 0 5px rgba(26, 111, 212, 0.15);
      }
    }

    @keyframes shimmerCard {
      0% {
        transform: translateX(-100%);
      }

      40%,
      100% {
        transform: translateX(200%);
      }
    }

    @keyframes floatCloud {

      0%,
      100% {
        transform: translateY(0);
      }

      50% {
        transform: translateY(-5px);
      }
    }

    @keyframes countPulse {

      0%,
      100% {
        transform: scale(1);
      }

      50% {
        transform: scale(1.02);
      }
    }

    @keyframes fadeSlideUp {
      from {
        opacity: 0;
        transform: translateY(14px);
      }

      to {
        opacity: 1;
        transform: translateY(0);
      }
    }

    /* Responsive Process 2-Column Grid */
    @media (max-width: 991px) {
      .process-grid {
        grid-template-columns: 1fr;
        gap: 48px;
      }

      .sf-panel-wrap {
        max-width: 650px;
        margin: 0 auto;
      }
    }

    /* â”€â”€â”€ SEO BENEFITS SECTION â”€â”€â”€ */
    .seo-section {
      padding: var(--space-section) 0;
      position: relative;
      overflow: hidden;
      background: #0f172a;
      /* Fallback deep slate */
      border-top: 1px solid rgba(255, 255, 255, 0.06);
      border-bottom: 1px solid rgba(255, 255, 255, 0.06);
    }

    .seo-section .solutions-container {
      position: relative;
      z-index: 3;
    }

    .seo-video-bg-container {
      position: absolute;
      inset: 0;
      width: 100%;
      height: 100%;
      z-index: 1;
      pointer-events: none;
      overflow: hidden;
    }

    .seo-video-bg {
      width: 100%;
      height: 100%;
      object-fit: cover;
    }

    .seo-video-overlay {
      position: absolute;
      inset: 0;
      background: linear-gradient(135deg, rgba(15, 23, 42, 0.94) 0%, rgba(15, 32, 67, 0.92) 50%, rgba(26, 111, 212, 0.45) 100%);
      backdrop-filter: blur(2px);
      z-index: 2;
    }

    .seo-grid {
      display: grid;
      grid-template-columns: 1fr 1.15fr;
      gap: 52px;
      align-items: center;
    }

    .seo-highlights-wrap {
      display: flex;
      flex-direction: column;
      gap: 18px;
      justify-content: center;
      height: 100%;
    }

    .seo-highlight-card {
      background: rgba(255, 255, 255, 0.03);
      backdrop-filter: blur(16px);
      -webkit-backdrop-filter: blur(16px);
      border: 1px solid rgba(255, 255, 255, 0.07);
      border-radius: var(--radius-md);
      padding: 22px 26px;
      display: flex;
      align-items: center;
      gap: 18px;
      box-shadow: 0 10px 30px -10px rgba(0, 0, 0, 0.3);
      transition: all 0.35s cubic-bezier(0.16, 1, 0.3, 1);
    }

    .seo-highlight-card:hover {
      background: rgba(255, 255, 255, 0.06);
      border-color: rgba(26, 111, 212, 0.35);
      transform: translateY(-3px);
      box-shadow: 0 16px 40px -10px rgba(26, 111, 212, 0.25);
    }

    .seo-highlight-icon {
      font-size: 24px;
      display: flex;
      align-items: center;
      justify-content: center;
      width: 52px;
      height: 52px;
      background: rgba(26, 111, 212, 0.15);
      border-radius: var(--radius-md);
      border: 1px solid rgba(26, 111, 212, 0.25);
      color: var(--brand-sky);
      flex-shrink: 0;
    }

    .seo-highlight-text {
      display: flex;
      flex-direction: column;
    }

    .seo-highlight-val {
      font-size: 22px;
      font-weight: 700;
      color: #ffffff;
      line-height: 1.1;
      margin-bottom: 3px;
      letter-spacing: -0.5px;
    }

    .seo-highlight-lbl {
      font-size: 11.5px;
      color: #94a3b8;
      font-weight: 500;
      line-height: 1.3;
    }

    .seo-content {
      display: flex;
      flex-direction: column;
      justify-content: center;
      height: 100%;
    }

    .seo-heading {
      font-size: clamp(26px, 3.2vw, 40px);
      font-weight: 300;
      color: #ffffff;
      line-height: 1.15;
      margin: 0 0 22px 0;
      letter-spacing: -1.5px;
    }

    .seo-text {
      font-size: 13.5px;
      color: #cbd5e1;
      line-height: 1.7;
      margin: 0 0 16px 0;
    }

    .seo-text:last-child {
      margin-bottom: 0;
    }

    @media (max-width: 991px) {
      .seo-section {
        padding: 70px 0;
      }

      .seo-grid {
        grid-template-columns: 1fr;
        gap: 36px;
        align-items: start;
      }

      .seo-heading {
        font-size: 22px;
      }
    }

    /* â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â• */
    /* â•â•â•  COMPREHENSIVE RESPONSIVE SYSTEM  â•â•â• */
    /* â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â• */

    /* â”€â”€â”€ Tablet Landscape (â‰¤ 1024px) â”€â”€â”€ */
    @media (max-width: 1024px) {
      :root {
        --space-gutter: 36px;
        --space-section: 80px;
      }

      .hero {
        padding: 122px 36px 60px;
      }

      .hero-collage {
        height: 460px;
      }

      .hc-1 {
        width: 220px;
        height: 154px;
      }

      .hc-2 {
        width: 304px;
        height: 178px;
      }

      .hc-3 {
        width: 188px;
        height: 166px;
      }

      .hc-4 {
        width: 178px;
        height: 222px;
      }

      .hc-5 {
        width: 156px;
        height: 190px;
      }

      .hc-6 {
        width: 234px;
        height: 166px;
      }

      .comparison-grid {
        gap: 12px;
      }

      .metrics-grid {
        grid-template-columns: repeat(2, 1fr);
      }

      .security-grid {
        grid-template-columns: repeat(2, 1fr);
      }
    }
    /* â”€â”€â”€ Tablet Portrait / Large Mobile (â‰¤ 768px) â”€â”€â”€ */
    @media (max-width: 768px) {
      :root {
        --space-gutter: 24px;
        --space-section: 64px;
      }

      /* Nav: show hamburger, hide desktop links/actions */
      .nav-links {
        display: none;
      }

      .nav-actions {
        display: none;
      }

      .nav-hamburger {
        display: flex;
      }

      .mobile-menu {
        display: flex;
      }

      nav {
        padding: 0 20px;
      }

      .hero {
        padding: 76px 24px 48px;
        min-height: auto;
      }

      .hero h1 {
        font-size: clamp(26px, 6vw, 34px);
        letter-spacing: -1px;
      }

      .hero-subtitle-line {
        font-size: clamp(26px, 6vw, 34px);
        letter-spacing: -1px;
      }

      .hero p {
        font-size: 14px;
        max-width: 420px;
        margin-bottom: 32px;
      }

      .hero-actions {
        flex-direction: row;
        align-items: center;
        justify-content: center;
        gap: 10px;
        flex-wrap: nowrap;
        width: auto;
      }

      .hero-actions .btn-large {
        width: auto;
        max-width: none;
        padding: 8px 16px;
        font-size: 12px;
      }

      /* Hero collage: 2-column grid on mobile — no overlap */
      .hero-collage {
        display: grid !important;
        grid-template-columns: 1fr 1fr;
        grid-auto-rows: 140px;
        gap: 10px;
        height: auto !important;
        margin-top: 36px;
      }

      /* Reset absolute positioning for all collage items */
      .hero-collage .hc-item {
        position: relative !important;
        top: auto !important;
        left: auto !important;
        right: auto !important;
        bottom: auto !important;
        width: 100% !important;
        height: 100% !important;
      }

      .hc-3, .hc-5 { display: none !important; }
      .hc-stat { display: none !important; }
      .hc-1 .hc-badge, .hc-3 .hc-badge, .hc-5 .hc-badge { display: none; }

      .comparison-grid {
        grid-template-columns: 1fr;
      }

      .metrics-grid {
        grid-template-columns: 1fr;
      }

      .security-grid {
        grid-template-columns: 1fr;
      }

      .platform-content {
        grid-template-columns: 1fr;
        gap: 32px;
      }



      .cta-layout {
        grid-template-columns: 1fr;
        gap: 36px;
      }

      .cta-left h2 {
        font-size: clamp(22px, 6vw, 34px);
        max-width: 100%;
      }

      .cta-left > p { max-width: 100%; }

      .cta-form-card { padding: 28px 26px 24px; }

      .form-row { gap: 12px; }

      .cta-actions {
        flex-direction: column;
        align-items: center;
      }

      .cta-actions .btn-large {
        width: 100%;
        max-width: 340px;
        justify-content: center;
      }

      .sticky-banner {
        padding: 10px 16px;
        gap: 10px;
        font-size: var(--fs-xs);
        bottom: 12px;
        flex-wrap: wrap;
        justify-content: center;
        text-align: center;
      }

      .sticky-banner .banner-text {
        display: none;
      }

      /* Logos */
      .logos-section {
        padding: 36px 24px 48px;
      }

      .logos-track {
        gap: 32px;
      }

      /* Blog / resource cards: horizontal scroll carousel on mobile */
      .blog-preview-section .reveal-stagger {
        display: flex !important;
        grid-template-columns: unset !important;
        overflow-x: auto !important;
        scroll-snap-type: x mandatory;
        -webkit-overflow-scrolling: touch;
        padding-bottom: 16px !important;
        gap: 16px !important;
        margin-bottom: 32px !important;
        scrollbar-width: none;
      }
      .blog-preview-section .reveal-stagger::-webkit-scrollbar {
        display: none;
      }
      .blog-preview-section .reveal-stagger > article {
        flex: 0 0 82vw !important;
        max-width: 82vw !important;
        scroll-snap-align: start;
        min-width: 0;
      }
      /* Hide Salesforce Dashboard panel on mobile */
      .sf-panel-wrap { display: none !important; }
    }

    /* â”€â”€â”€ Small Mobile (â‰¤ 480px) â”€â”€â”€ */
    @media (max-width: 480px) {
      :root {
        --space-gutter: 16px;
        --space-section: 56px;
      }

      nav {
        height: 56px;
      }

      .mobile-menu {
        top: 56px;
        padding: 24px var(--space-gutter);
      }

      .hero {
        padding: 74px 16px 40px;
      }

      .hero h1 {
        font-size: 24px;
        letter-spacing: -0.8px;
        margin-bottom: 6px;
      }

      .hero-subtitle-line {
        font-size: 24px;
        letter-spacing: -0.8px;
      }

      .hero-badge {
        font-size: 10px;
        margin-bottom: 24px;
      }

      .hero p {
        font-size: 13px;
        line-height: 1.7;
      }

      /* Collage grid: slightly shorter rows on small phones */
      .hero-collage {
        grid-auto-rows: 115px !important;
        gap: 8px !important;
        margin-top: 28px;
      }

      .hc-badge {
        font-size: 11px;
        padding: 6px 12px 6px 9px;
        gap: 6px;
      }
      .hc-stat { display: none; }

      .btn-large {
        padding: 8px 16px;
        font-size: 12px;
      }


      .footer-bottom {
        flex-direction: column;
        text-align: center;
      }

      .footer-links {
        justify-content: center;
      }

      footer {
        padding: 48px var(--space-gutter) 24px;
      }

      .solutions-title {
        font-size: 20px;
        letter-spacing: -0.8px;
      }

      .solutions-subtitle {
        font-size: 14px;
      }

      .seo-highlight-card {
        padding: 16px 18px;
        gap: 14px;
      }

      .seo-highlight-icon {
        width: 42px;
        height: 42px;
        font-size: 20px;
      }

      .seo-highlight-val {
        font-size: 18px;
      }

      .cta-section {
        padding: 56px var(--space-gutter) 60px;
      }
      .cta-section-label { margin-bottom: 32px; }
      .cta-layout {
        grid-template-columns: 1fr;
        gap: 36px;
      }
      .form-row {
        grid-template-columns: 1fr;
      }
      .cta-trust { gap: 16px; }

      /* Blog cards: slightly wider snap on small phones */
      .blog-preview-section .reveal-stagger > article {
        flex: 0 0 88vw !important;
        max-width: 88vw !important;
      }
    }

    /* â”€â”€â”€ Reveal animation stagger for grids â”€â”€â”€ */
    .reveal-stagger>* {
      opacity: 0;
      transform: translateY(30px);
      transition: opacity 0.6s var(--ease-out), transform 0.6s var(--ease-out);
    }

    .reveal-stagger.is-visible>*:nth-child(1) {
      transition-delay: 0.05s;
    }

    .reveal-stagger.is-visible>*:nth-child(2) {
      transition-delay: 0.10s;
    }

    .reveal-stagger.is-visible>*:nth-child(3) {
      transition-delay: 0.15s;
    }

    .reveal-stagger.is-visible>*:nth-child(4) {
      transition-delay: 0.20s;
    }

    .reveal-stagger.is-visible>*:nth-child(5) {
      transition-delay: 0.25s;
    }

    .reveal-stagger.is-visible>*:nth-child(6) {
      transition-delay: 0.30s;
    }

    .reveal-stagger.is-visible>* {
      opacity: 1;
      transform: translateY(0);
    }

    /* Prefers reduced motion */
    @media (prefers-reduced-motion: reduce) {

      *,
      *::before,
      *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
        scroll-behavior: auto !important;
      }

      .hero-stagger {
        opacity: 1;
        animation: none;
      }

      .reveal-up {
        opacity: 1;
        transform: none;
      }

      .reveal-stagger>* {
        opacity: 1;
        transform: none;
      }
    }

    /* Spotlight Card Hover Effect */
    .service-card,
    .solution-card,
    .industry-card,
    .process-card,
    .metric-card,
    .security-card,
    .comparison-card {
      position: relative;
      overflow: hidden;
    }

    .service-card::after,
    .solution-card::after,
    .industry-card::after,
    .process-card::after,
    .metric-card::after,
    .security-card::after,
    .comparison-card::after {
      content: '';
      position: absolute;
      inset: 0;
      border-radius: inherit;
      background: radial-gradient(300px circle at var(--x, 0px) var(--y, 0px), rgba(26, 111, 212, 0.08), transparent 80%);
      opacity: 0;
      transition: opacity 0.4s var(--ease-out);
      pointer-events: none;
      z-index: 1;
    }

    .service-card:hover::after,
    .solution-card:hover::after,
    .industry-card:hover::after,
    .process-card:hover::after,
    .metric-card:hover::after,
    .security-card:hover::after,
    .comparison-card:hover::after {
      opacity: 1;
    }

    /* Ensure children are above the spotlight glow layer */
    .service-card>*,
    .solution-card>*,
    .industry-card>*,
    .process-card>*,
    .metric-card>*,
    .security-card>*,
    .comparison-card>* {
      position: relative;
      z-index: 2;
    }

    /* â”€â”€â”€ PREMIUM POLISH â”€â”€â”€ */

    /* Custom scrollbar */
    ::-webkit-scrollbar { width: 5px; }
    ::-webkit-scrollbar-track { background: transparent; }
    ::-webkit-scrollbar-thumb {
      background: rgba(26, 111, 212, 0.28);
      border-radius: 10px;
    }
    ::-webkit-scrollbar-thumb:hover {
      background: rgba(26, 111, 212, 0.5);
    }

    /* Selection highlight */
    ::selection {
      background: rgba(26, 111, 212, 0.14);
      color: var(--text);
    }

    /* Scroll padding for in-page anchor links */
    html {
      scroll-padding-top: 72px;
    }

    /* Better text rendering */
    body {
      font-feature-settings: "kern" 1, "liga" 1;
      text-rendering: optimizeLegibility;
    }

    /* Smooth image loading */
    img {
      max-width: 100%;
      transition: opacity 0.4s ease;
    }

    /* Scroll progress bar */
    .scroll-progress {
      position: fixed;
      top: 0;
      left: 0;
      height: 2px;
      background: linear-gradient(90deg, var(--brand-blue), var(--brand-sky));
      z-index: 999;
      width: 0%;
      transition: width 0.08s linear;
      will-change: width;
    }

    /* â”€â”€â”€ SECTION HEADER CENTERED PATTERN â”€â”€â”€ */
    .section-header-centered {
      text-align: center;
      max-width: 720px;
      margin-left: auto;
      margin-right: auto;
    }

    .section-eyebrow.center {
      justify-content: center;
    }

    /* â”€â”€â”€ HERO BADGE DOT PULSE â”€â”€â”€ */
    @keyframes badgeDotPulse {
      0%, 100% { opacity: 1; transform: scale(1); box-shadow: 0 0 0 0 rgba(91, 174, 255, 0.5); }
      50% { opacity: 0.7; transform: scale(0.85); box-shadow: 0 0 0 5px rgba(91, 174, 255, 0); }
    }
    .hero-badge-dot {
      animation: badgeDotPulse 2.4s ease-in-out infinite;
    }

    /* â”€â”€â”€ TRUST STRIP (Salesforce cloud product chips) â”€â”€â”€ */
    .trust-strip {
      padding: 28px var(--space-gutter) 36px;
      background: var(--bg2);
      border-top: 1px solid var(--border);
      border-bottom: 1px solid var(--border);
    }
    /* â”€â”€â”€ TRUST STRIP ANIMATED LABEL â”€â”€â”€ */
    .trust-strip-label-anim {
      position: relative;
      height: 18px;
      overflow: hidden;
      margin-bottom: 22px;
    }
    .trust-strip-label-anim .tl-word {
      position: absolute;
      left: 0;
      right: 0;
      text-align: center;
      font-size: 11px;
      font-weight: 700;
      letter-spacing: 0.13em;
      text-transform: uppercase;
      color: var(--text3);
      opacity: 0;
      transform: translateY(14px);
      transition: opacity 0.55s cubic-bezier(0.22, 1, 0.36, 1),
                  transform 0.55s cubic-bezier(0.22, 1, 0.36, 1);
      white-space: nowrap;
    }
    .trust-strip-label-anim .tl-word.active {
      opacity: 1;
      transform: translateY(0);
    }
    .trust-strip-label-anim .tl-word.exit {
      opacity: 0;
      transform: translateY(-14px);
    }
    /* â”€â”€â”€ TRUST CHIP MARQUEE â”€â”€â”€ */
    .trust-marquee-wrapper {
      overflow: hidden;
      position: relative;
      padding: 6px 0;
      /* Soft edge fade â€” Apple/SaaS style */
      -webkit-mask-image: linear-gradient(
        90deg,
        transparent 0%,
        rgba(0,0,0,0.15) 3%,
        rgba(0,0,0,0.6) 6%,
        black 10%,
        black 90%,
        rgba(0,0,0,0.6) 94%,
        rgba(0,0,0,0.15) 97%,
        transparent 100%
      );
      mask-image: linear-gradient(
        90deg,
        transparent 0%,
        rgba(0,0,0,0.15) 3%,
        rgba(0,0,0,0.6) 6%,
        black 10%,
        black 90%,
        rgba(0,0,0,0.6) 94%,
        rgba(0,0,0,0.15) 97%,
        transparent 100%
      );
    }
    .trust-marquee-track {
      display: flex;
      align-items: center;
      gap: 10px;
      width: max-content;
      animation: trust-marquee-scroll 36s linear infinite;
      will-change: transform;
    }
    /* Pause on hover for readability */
    .trust-marquee-wrapper:hover .trust-marquee-track {
      animation-play-state: paused;
    }
    @keyframes trust-marquee-scroll {
      0%   { transform: translateX(0); }
      100% { transform: translateX(-50%); }
    }
    .trust-chip {
      display: inline-flex;
      align-items: center;
      gap: 8px;
      padding: 8px 18px;
      border: 1px solid var(--border);
      border-radius: 100px;
      font-size: 12.5px;
      font-weight: 500;
      color: var(--text2);
      background: var(--bg3);
      white-space: nowrap;
      flex-shrink: 0;
      transition: border-color 0.25s var(--ease-out),
                  color 0.25s var(--ease-out),
                  background 0.25s var(--ease-out),
                  box-shadow 0.25s var(--ease-out);
      cursor: default;
      letter-spacing: 0.01em;
    }
    .trust-chip:hover {
      border-color: rgba(26, 111, 212, 0.28);
      color: var(--blue);
      background: var(--blue-xlight);
      box-shadow: 0 2px 10px rgba(26, 111, 212, 0.1);
    }
    .trust-chip-dot {
      width: 5px;
      height: 5px;
      border-radius: 50%;
      background: #00a1e0;
      flex-shrink: 0;
      opacity: 0.8;
    }


    /* â”€â”€â”€ IMPROVED BUTTONS â”€â”€â”€ */
    .btn {
      position: relative;
      overflow: hidden;
    }
    .btn::before {
      content: '';
      position: absolute;
      inset: 0;
      background: linear-gradient(135deg, rgba(255,255,255,0.08), transparent);
      opacity: 0;
      transition: opacity 0.2s ease;
      pointer-events: none;
    }
    .btn:hover::before { opacity: 1; }

    /* â”€â”€â”€ SECTION SEPARATOR IMPROVEMENTS â”€â”€â”€ */
    .capabilities-section,
    .metrics-section {
      padding-top: var(--space-section);
      padding-bottom: var(--space-section);
    }

    /* â”€â”€â”€ IMPROVED INDUSTRY CARD OVERLAY â”€â”€â”€ */
    .industry-card-img-wrapper::after {
      content: '';
      position: absolute;
      inset: 0;
      background: linear-gradient(to bottom, transparent 50%, rgba(15, 23, 42, 0.12) 100%);
      pointer-events: none;
      transition: opacity 0.4s ease;
    }
    .industry-card:hover .industry-card-img-wrapper::after {
      opacity: 0.6;
    }

    /* â”€â”€â”€ SERVICE CARD SHIMMER ON HOVER â”€â”€â”€ */
    .service-card::before {
      content: '';
      position: absolute;
      top: 0; left: -100%;
      width: 60%;
      height: 100%;
      background: linear-gradient(90deg, transparent, rgba(255,255,255,0.18), transparent);
      transform: skewX(-12deg);
      transition: left 0.6s var(--ease-out);
      pointer-events: none;
      z-index: 3;
    }
    .service-card:hover::before { left: 160%; }

    /* â”€â”€â”€ PROCESS CARD ACCENT LINE â”€â”€â”€ */
    .process-card::before {
      content: '';
      position: absolute;
      top: 0; left: 0; right: 0;
      height: 2px;
      background: linear-gradient(90deg, var(--blue), transparent);
      opacity: 0;
      transition: opacity 0.3s ease;
      border-radius: var(--radius-md) var(--radius-md) 0 0;
    }
    .process-card:hover::before { opacity: 1; }

    /* â”€â”€â”€ COMPARISON CARD IMPROVEMENTS â”€â”€â”€ */
    .comparison-section {
      padding: var(--space-section) var(--space-gutter);
    }


    /* â”€â”€â”€ RESPONSIVE TRUST STRIP â”€â”€â”€ */
    @media (max-width: 768px) {
      .trust-strip { padding: 22px var(--space-gutter) 28px; }
      .trust-chip { font-size: 11.5px; padding: 7px 14px; gap: 6px; }
    }

    /* â”€â”€â”€ MOBILE SOLUTIONS-TITLE FIX â”€â”€â”€ */
    @media (max-width: 480px) {
      .solutions-title { font-size: 19px; letter-spacing: -0.8px; }
      .cap-left-title h2 { font-size: 22px; }
      .seo-heading { font-size: 22px; letter-spacing: -1px; }
      .cta-left h2 { font-size: 22px; letter-spacing: -0.8px; }
      .cta-form-card { padding: 22px 18px 20px; }
      .cta-form { gap: 12px; }
      .cta-bullets { gap: 9px; }
    }

    /* ─── CLOUD DRIFT ANIMATIONS ─── */
    @keyframes cloudDrift1 {
      0%   { translate: 0px 0px; }
      30%  { translate: 6px -4px; }
      65%  { translate: 9px 2px; }
      100% { translate: 0px 0px; }
    }
    @keyframes cloudDrift2 {
      0%   { translate: 0px 0px; }
      28%  { translate: -5px -3px; }
      58%  { translate: 4px -6px; }
      82%  { translate: 7px 1px; }
      100% { translate: 0px 0px; }
    }
    @keyframes cloudDrift3 {
      0%   { translate: 0px 0px; }
      40%  { translate: 5px -5px; }
      70%  { translate: -3px -2px; }
      100% { translate: 0px 0px; }
    }
    @keyframes cloudDrift4 {
      0%   { translate: 0px 0px; }
      32%  { translate: 7px -2px; }
      60%  { translate: 3px -5px; }
      82%  { translate: 8px 3px; }
      100% { translate: 0px 0px; }
    }
    @keyframes cloudDrift5 {
      0%   { translate: 0px 0px; }
      45%  { translate: -6px -4px; }
      75%  { translate: 4px -1px; }
      100% { translate: 0px 0px; }
    }

    /* 250+ Projects Delivered */
    .hc-stat-1 {
      animation: float-in 0.9s var(--ease-smooth) 0.70s backwards, cloudDrift1 18s ease-in-out 1.6s infinite;
    }

    /* 98% Client Retention */
    .hc-stat-2 {
      animation: float-in 0.9s var(--ease-smooth) 0.78s backwards, cloudDrift5 24s ease-in-out 1.8s infinite;
    }

    /* Salesforce Consulting badge */
    .hc-1 .hc-badge { animation: cloudDrift2 22s ease-in-out 2s infinite; }

    /* Hire a Developer badge */
    .hc-3 .hc-badge { animation: cloudDrift3 20s ease-in-out 3s infinite; }

    /* Implementation badge */
    .hc-5 .hc-badge { animation: cloudDrift4 16s ease-in-out 1s infinite; }

    /* ─── NEUTRALISE ALL COLLAGE HOVER TRANSFORMS ─── */
    .hc-item:hover .hc-inner {
      transform: none;
      box-shadow:
        0 14px 40px rgba(26,111,212,0.13),
        0 3px 10px rgba(0,0,0,0.07);
    }
    .hc-item:hover .hc-inner img { transform: none; }
    .hc-item:hover .hc-inner::after { opacity: 1; }
    .hc-stat:hover {
      transform: none;
      box-shadow:
        0 6px 26px rgba(26,111,212,0.13),
        0 2px 8px rgba(0,0,0,0.06);
    }
    .hc-1:hover .hc-badge { transform: translateX(-50%); }
    .hc-3:hover .hc-badge { transform: translate(-100%, -50%); }
    .hc-5:hover .hc-badge { transform: translateX(-50%); }
    .hc-item { cursor: default; }

    /* ─── CINEMATIC CLOUD LIGHT DRIFT ─── */
    /*
     * A large soft radial glow slowly drifts left→right across the entire
     * collage, illuminating each image in turn like sunlight through cloud gaps.
     * ::before = primary cloud (42 s), ::after = secondary offset cloud (61 s).
     */
    @keyframes cloudLightPass {
      0%   { transform: translateX(-105%); opacity: 0; }
      9%   { opacity: 1; }
      88%  { opacity: 1; }
      100% { transform: translateX(235%);  opacity: 0; }
    }

    .hero-collage::before,
    .hero-collage::after {
      content: '';
      position: absolute;
      top: -15%;
      left: 0;
      height: 130%;
      border-radius: 50%;
      pointer-events: none;
      mix-blend-mode: screen;
      z-index: 22;
    }

    .hero-collage::before {
      width: 46%;
      background: radial-gradient(
        ellipse at center,
        rgba(255, 255, 255, 0.38) 0%,
        rgba(210, 232, 255, 0.18) 42%,
        transparent 70%
      );
      filter: blur(52px);
      animation: cloudLightPass 42s cubic-bezier(0.37, 0, 0.63, 1) infinite;
    }

    .hero-collage::after {
      width: 32%;
      background: radial-gradient(
        ellipse at center,
        rgba(255, 255, 255, 0.26) 0%,
        rgba(200, 225, 255, 0.12) 45%,
        transparent 70%
      );
      filter: blur(65px);
      animation: cloudLightPass 61s cubic-bezier(0.37, 0, 0.63, 1) -28s infinite;
    }

    /* ─── BLEND SECTION DIVIDERS ─── */
    .logos-section,
    .platform-section,
    .security-section,
    .services-marquee-section,
    .enterprise-solutions-section,
    .industries-section,
    .process-section {
      border-top-color: rgba(26, 111, 212, 0.035);
      border-bottom-color: rgba(26, 111, 212, 0.035);
    }
  
