/* ─── DESIGN TOKENS ─────────────────────────────────────────── */
    :root {
      --brand: #8327D2;
      --brand-dark: #6A1FB0;
      --brand-deep: #510F92;
      --brand-light: #9F45E8;
      --brand-pale: #F3EAFD;
      --brand-soft: #EAD8FA;
      --brand-mid: #C598F0;
      --surface: #FFFFFF;
      --canvas: #F9F7FD;
      --canvas-alt: #F2EEF9;
      --border: #E6DFF5;
      --border-soft: #EDE8F6;
      --ink-900: #0F0B1A;
      --ink-700: #2D2240;
      --ink-500: #5E4D78;
      --ink-400: #8474A0;
      --ink-300: #B0A2C8;
      --ink-200: #D7CEED;
      --ink-100: #EDE8F6;
      --success: #12B76A;
      --warning: #F79009;
      --danger: #F04438;
      --ff-heading: 'Sora', sans-serif;
      --ff-body: 'DM Sans', sans-serif;
      --r-sm: 8px;
      --r-md: 12px;
      --r-lg: 16px;
      --r-xl: 24px;
      --r-full: 999px;
      --shadow-xs: 0 1px 2px rgba(131, 39, 210, 0.06);
      --shadow-sm: 0 2px 8px rgba(131, 39, 210, 0.08), 0 1px 2px rgba(0, 0, 0, 0.04);
      --shadow-md: 0 4px 20px rgba(131, 39, 210, 0.12), 0 2px 6px rgba(0, 0, 0, 0.05);
      --shadow-lg: 0 12px 48px rgba(131, 39, 210, 0.16), 0 4px 12px rgba(0, 0, 0, 0.06);
      --shadow-glow: 0 0 0 3px rgba(131, 39, 210, 0.16);
    }

    /* ─── RESET & BASE ──────────────────────────────────────────── */
    *,
    *::before,
    *::after {
      box-sizing: border-box;
      margin: 0;
      padding: 0;
    }

    html {
      scroll-behavior: smooth;
      font-size: 16px;
    }

    body {
      font-family: var(--ff-body);
      background: var(--canvas);
      color: var(--ink-700);
      line-height: 1.6;
      -webkit-font-smoothing: antialiased;
    }

    a {
      text-decoration: none;
      color: inherit;
    }

    img {
      display: block;
      max-width: 100%;
    }

    ul {
      list-style: none;
    }

    ::-webkit-scrollbar {
      width: 6px;
    }

    ::-webkit-scrollbar-track {
      background: var(--canvas);
    }

    ::-webkit-scrollbar-thumb {
      background: var(--ink-200);
      border-radius: 99px;
    }

    ::-webkit-scrollbar-thumb:hover {
      background: var(--brand-mid);
    }

    /* ─── TYPOGRAPHY ────────────────────────────────────────────── */
    h1,
    h2,
    h3,
    h4,
    h5 {
      font-family: var(--ff-heading);
      color: var(--ink-900);
      letter-spacing: -0.025em;
      line-height: 1.15;
    }

    h1 {
      font-size: clamp(2.4rem, 5vw, 4rem);
      font-weight: 800;
    }

    h2 {
      font-size: clamp(1.8rem, 3.5vw, 2.75rem);
      font-weight: 700;
    }

    h3 {
      font-size: 1.25rem;
      font-weight: 600;
    }

    h4 {
      font-size: 1rem;
      font-weight: 600;
    }

    p {
      color: var(--ink-500);
      font-size: 1rem;
      line-height: 1.7;
    }

    .label {
      font-family: var(--ff-heading);
      font-size: 0.6875rem;
      font-weight: 700;
      letter-spacing: 0.1em;
      text-transform: uppercase;
      color: var(--brand);
    }

    /* ─── UTILITIES ─────────────────────────────────────────────── */
    .container {
      /* max-width: 1200px;
      margin-inline: auto;
      padding-inline: clamp(1.25rem, 4vw, 5rem); */
      max-width: 1600px;
      margin-inline: auto;
      padding: 0 100px 0 100px;
    }

    @media (max-width: 560px) {
      .container {
        /* max-width: 1200px; */
        margin-inline: auto;
        /* padding-inline: clamp(1.25rem, 4vw, 5rem); */
        padding: 0 20px 0 20px;
      }
    }

    .section {
      padding: 6rem 0;
    }

    .section-sm {
      padding: 4rem 0;
    }

    .chip {
      display: inline-flex;
      align-items: center;
      gap: 0.375rem;
      padding: 0.3125rem 0.875rem;
      border-radius: var(--r-full);
      background: var(--brand-pale);
      border: 1px solid var(--brand-soft);
      font-size: 0.75rem;
      font-weight: 600;
      font-family: var(--ff-heading);
      color: var(--brand-dark);
    }

    /* ─── BUTTONS ───────────────────────────────────────────────── */
    .btn {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      gap: 0.5rem;
      padding: 0.75rem 1.625rem;
      border-radius: var(--r-md);
      font-family: var(--ff-heading);
      font-size: 0.9375rem;
      font-weight: 600;
      cursor: pointer;
      border: none;
      outline: none;
      transition: all 0.2s ease;
    }

    .btn-primary {
      background: var(--brand);
      color: #fff;
      box-shadow: 0 4px 20px rgba(131, 39, 210, 0.35);
    }

    .btn-primary:hover {
      background: var(--brand-dark);
      transform: translateY(-1px);
      box-shadow: 0 8px 28px rgba(131, 39, 210, 0.45);
    }

    .btn-outline {
      background: transparent;
      color: var(--ink-700);
      border: 1.5px solid var(--border);
    }

    .btn-outline:hover {
      border-color: var(--brand-mid);
      color: var(--brand);
      background: var(--brand-pale);
    }

    .btn-sm {
      padding: 0.5rem 1.125rem;
      font-size: 0.875rem;
      border-radius: var(--r-sm);
    }

    .btn-lg {
      padding: 0.9375rem 2rem;
      font-size: 1rem;
    }

    /* ─── ANIMATIONS ────────────────────────────────────────────── */
    @keyframes fadeUp {
      from {
        opacity: 0;
        transform: translateY(28px);
      }

      to {
        opacity: 1;
        transform: translateY(0);
      }
    }

    @keyframes fadeIn {
      from {
        opacity: 0;
      }

      to {
        opacity: 1;
      }
    }

    @keyframes floatA {

      0%,
      100% {
        transform: translateY(0);
      }

      50% {
        transform: translateY(-10px);
      }
    }

    @keyframes floatB {

      0%,
      100% {
        transform: translateY(0);
      }

      50% {
        transform: translateY(8px);
      }
    }

    @keyframes mascotFloat {
      0%, 100% { transform: translateY(0) rotate(2deg); }
      50% { transform: translateY(-15px) rotate(-2deg); }
    }

    @keyframes shimmer {
      0% {
        background-position: -200% center;
      }

      100% {
        background-position: 200% center;
      }
    }

    @keyframes scaleIn {
      from {
        transform: scale(0.92);
        opacity: 0;
      }

      to {
        transform: scale(1);
        opacity: 1;
      }
    }

    @keyframes lineGrow {
      from {
        transform: scaleX(0);
      }

      to {
        transform: scaleX(1);
      }
    }

    @keyframes countUp {
      from {
        opacity: 0;
        transform: translateY(8px);
      }

      to {
        opacity: 1;
        transform: translateY(0);
      }
    }

    /* ─── SECTION SHARED ────────────────────────────────────────── */
    .section-header {
      margin-bottom: 3.5rem;
    }

    .section-header.centered {
      text-align: center;
      max-width: 1000px;
      margin-inline: auto;
    }

    .section-header .label {
      display: inline-block;
      margin-bottom: 0.75rem;
    }

    .section-header h2 {
      margin-bottom: 0.875rem;
    }

    .section-header p {
      font-size: 1.0625rem;
      line-height: 1.75;
    }

    /* ═══════════════════════════════════════════════════════════════
       SECTION 1 — SERVICES HERO
    ═══════════════════════════════════════════════════════════════ */
    .services-hero {
      padding-top: 136px;
      padding-bottom: 88px;
      position: relative;
      overflow: hidden;
      background: var(--canvas);
    }

    .services-hero-bg {
      position: absolute;
      inset: 0;
      pointer-events: none;
      z-index: 0;
      overflow: hidden;
    }

    .hero-orb-1 {
      position: absolute;
      top: -200px;
      right: -160px;
      width: 720px;
      height: 720px;
      background: radial-gradient(circle, rgba(131, 39, 210, 0.13) 0%, transparent 65%);
      border-radius: 50%;
    }

    .hero-orb-2 {
      position: absolute;
      bottom: -80px;
      left: -100px;
      width: 520px;
      height: 520px;
      background: radial-gradient(circle, rgba(131, 39, 210, 0.07) 0%, transparent 65%);
      border-radius: 50%;
    }

    .hero-orb-3 {
      position: absolute;
      top: 40%;
      left: 40%;
      width: 300px;
      height: 300px;
      background: radial-gradient(circle, rgba(159, 69, 232, 0.05) 0%, transparent 65%);
      border-radius: 50%;
    }

    .hero-grid {
      position: absolute;
      inset: 0;
      background-image: linear-gradient(rgba(131, 39, 210, 0.04) 1px, transparent 1px), linear-gradient(90deg, rgba(131, 39, 210, 0.04) 1px, transparent 1px);
      background-size: 48px 48px;
      mask-image: radial-gradient(ellipse 80% 70% at 50% 40%, black 0%, transparent 80%);
    }

    .services-hero-inner {
      position: relative;
      z-index: 1;
      max-width: 780px;
      margin-inline: auto;
      text-align: center;
    }

    .hero-label-wrap {
      display: inline-flex;
      align-items: center;
      gap: 0.5rem;
      margin-bottom: 1.25rem;
      animation: fadeIn 0.5s ease both;
    }

    .hero-label-dot {
      width: 6px;
      height: 6px;
      background: var(--brand);
      border-radius: 50%;
    }

    .services-hero-inner h1 {
      margin-bottom: 1.375rem;
      animation: fadeUp 0.65s ease 0.1s both;
    }

    .services-hero-inner h1 em {
      font-style: normal;
      background: linear-gradient(135deg, var(--brand) 0%, var(--brand-light) 100%);
      -webkit-background-clip: text;
      -webkit-text-fill-color: transparent;
      background-clip: text;
    }

    .services-hero-desc {
      font-size: 1.0625rem;
      line-height: 1.8;
      color: var(--ink-500);
      max-width: 660px;
      margin: 0 auto 2.5rem;
      animation: fadeUp 0.65s ease 0.2s both;
    }

    /* Trust indicators row */
    .hero-trust-row {
      display: flex;
      align-items: center;
      justify-content: center;
      gap: 0;
      flex-wrap: wrap;
      animation: fadeUp 0.65s ease 0.3s both;
    }

    .hero-trust-item {
      display: flex;
      align-items: center;
      gap: 0.5rem;
      padding: 0.625rem 1.5rem;
      border-right: 1px solid var(--border);
      font-size: 0.875rem;
      font-weight: 500;
      color: var(--ink-500);
    }

    .hero-trust-item:first-child {
      border-left: 1px solid var(--border);
    }

    .hero-trust-item svg {
      color: var(--brand);
      flex-shrink: 0;
    }

    .hero-trust-item strong {
      color: var(--ink-700);
      font-weight: 600;
    }

    .hero-mascot {
      position: absolute;
      top: -60px;
      left: -120px;
      width: 150px;
      z-index: 10;
      filter: drop-shadow(0 20px 40px rgba(131, 39, 210, 0.25));
      animation: mascotFloat 6s ease-in-out infinite;
      pointer-events: none;
    }

    @media (max-width: 1200px) {
      .hero-mascot {
        width: 110px;
        left: -60px;
        top: -70px;
      }
    }

    @media (max-width: 900px) {
      .hero-mascot {
        width: 80px;
        left: 0;
        top: -65px;
      }
    }

    /* Floating stat cards */
    .hero-float-left {
      position: absolute;
      left: 2%;
      top: 50%;
      transform: translateY(-50%);
      animation: floatA 6s ease-in-out infinite;
      z-index: 2;
    }

    .hero-float-right {
      position: absolute;
      right: 2%;
      top: 45%;
      animation: floatB 5s ease-in-out infinite 1s;
      z-index: 2;
    }

    .hero-stat-pill {
      background: var(--surface);
      border: 1px solid var(--border);
      border-radius: var(--r-lg);
      padding: 0.875rem 1.25rem;
      box-shadow: var(--shadow-md);
      white-space: nowrap;
    }

    .hero-stat-pill-label {
      font-family: var(--ff-heading);
      font-size: 0.5625rem;
      font-weight: 700;
      text-transform: uppercase;
      letter-spacing: 0.1em;
      color: var(--ink-400);
      margin-bottom: 0.25rem;
    }

    .hero-stat-pill-value {
      font-family: var(--ff-heading);
      font-size: 1.25rem;
      font-weight: 800;
      color: var(--ink-900);
      line-height: 1;
    }

    .hero-stat-pill-sub {
      font-size: 0.6875rem;
      color: var(--success);
      font-weight: 600;
      margin-top: 3px;
      display: flex;
      align-items: center;
      gap: 3px;
    }

    /* ═══════════════════════════════════════════════════════════════
       SECTION 2 — CORE SERVICES GRID
    ═══════════════════════════════════════════════════════════════ */
    .services-grid-section {
      padding: 6rem 0;
      background: var(--surface);
      border-top: 1px solid var(--border-soft);
    }

    .services-grid {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 1.5rem;
    }

    /* Service card */
    .svc-card {
      background: var(--canvas);
      border: 1.5px solid var(--border-soft);
      border-radius: 22px;
      padding: 2.25rem 2rem 2rem;
      display: flex;
      flex-direction: column;
      position: relative;
      overflow: hidden;
      transition: transform 0.28s ease, box-shadow 0.28s ease, border-color 0.28s ease;
    }

    .svc-card::after {
      content: '';
      position: absolute;
      inset: 0;
      background: linear-gradient(145deg, rgba(131, 39, 210, 0.035) 0%, transparent 60%);
      opacity: 0;
      transition: opacity 0.3s ease;
      pointer-events: none;
    }

    .svc-card:hover {
      transform: translateY(-6px);
      box-shadow: var(--shadow-lg);
      border-color: var(--brand-soft);
    }

    .svc-card:hover::after {
      opacity: 1;
    }

    /* Numbered accent top-line */
    .svc-card-line {
      position: absolute;
      top: 0;
      left: 0;
      right: 0;
      height: 3px;
      border-radius: 22px 22px 0 0;
      transform: scaleX(0);
      transform-origin: left;
      transition: transform 0.35s ease;
    }

    .svc-card:hover .svc-card-line {
      transform: scaleX(1);
    }

    .svc-card:nth-child(1) .svc-card-line {
      background: linear-gradient(90deg, #8327D2, #9F45E8);
    }

    .svc-card:nth-child(2) .svc-card-line {
      background: linear-gradient(90deg, #3B82F6, #60A5FA);
    }

    .svc-card:nth-child(3) .svc-card-line {
      background: linear-gradient(90deg, #10B981, #34D399);
    }

    .svc-card:nth-child(4) .svc-card-line {
      background: linear-gradient(90deg, #F59E0B, #FCD34D);
    }

    .svc-card:nth-child(5) .svc-card-line {
      background: linear-gradient(90deg, #EF4444, #F87171);
    }

    .svc-card:nth-child(6) .svc-card-line {
      background: linear-gradient(90deg, #8B5CF6, #A78BFA);
    }

    /* Card number badge */
    .svc-card-number {
      position: absolute;
      top: 2.25rem;
      right: 1.75rem;
      font-family: var(--ff-heading);
      font-size: 3rem;
      font-weight: 800;
      color: var(--ink-100);
      line-height: 1;
      transition: color 0.25s ease;
      user-select: none;
    }

    .svc-card:hover .svc-card-number {
      color: var(--brand-soft);
    }

    .svc-icon {
      width: 54px;
      height: 54px;
      border-radius: 15px;
      display: grid;
      place-items: center;
      margin-bottom: 1.625rem;
      flex-shrink: 0;
      transition: transform 0.28s ease, background 0.28s ease, color 0.28s ease;
      position: relative;
      z-index: 1;
    }

    .svc-card:nth-child(1) .svc-icon {
      background: rgba(131, 39, 210, 0.1);
      color: #8327D2;
    }

    .svc-card:nth-child(2) .svc-icon {
      background: rgba(59, 130, 246, 0.1);
      color: #3B82F6;
    }

    .svc-card:nth-child(3) .svc-icon {
      background: rgba(16, 185, 129, 0.1);
      color: #10B981;
    }

    .svc-card:nth-child(4) .svc-icon {
      background: rgba(245, 158, 11, 0.1);
      color: #F59E0B;
    }

    .svc-card:nth-child(5) .svc-icon {
      background: rgba(239, 68, 68, 0.1);
      color: #EF4444;
    }

    .svc-card:nth-child(6) .svc-icon {
      background: rgba(139, 92, 246, 0.1);
      color: #8B5CF6;
    }

    .svc-card:nth-child(1):hover .svc-icon {
      background: #8327D2;
      color: #fff;
      transform: scale(1.08) rotate(-4deg);
    }

    .svc-card:nth-child(2):hover .svc-icon {
      background: #3B82F6;
      color: #fff;
      transform: scale(1.08) rotate(-4deg);
    }

    .svc-card:nth-child(3):hover .svc-icon {
      background: #10B981;
      color: #fff;
      transform: scale(1.08) rotate(-4deg);
    }

    .svc-card:nth-child(4):hover .svc-icon {
      background: #F59E0B;
      color: #fff;
      transform: scale(1.08) rotate(-4deg);
    }

    .svc-card:nth-child(5):hover .svc-icon {
      background: #EF4444;
      color: #fff;
      transform: scale(1.08) rotate(-4deg);
    }

    .svc-card:nth-child(6):hover .svc-icon {
      background: #8B5CF6;
      color: #fff;
      transform: scale(1.08) rotate(-4deg);
    }

    .svc-title {
      font-size: 1.1875rem;
      font-weight: 700;
      color: var(--ink-900);
      margin-bottom: 0.75rem;
      position: relative;
      z-index: 1;
    }

    .svc-desc {
      font-size: 0.9375rem;
      color: var(--ink-500);
      line-height: 1.7;
      margin-bottom: 1.5rem;
      flex: 1;
      position: relative;
      z-index: 1;
    }

    /* Capabilities list */
    .svc-caps {
      display: flex;
      flex-direction: column;
      gap: 0.375rem;
      margin-bottom: 1.875rem;
      position: relative;
      z-index: 1;
    }

    .svc-cap-item {
      display: flex;
      align-items: center;
      gap: 0.5rem;
      font-size: 0.8125rem;
      color: var(--ink-500);
    }

    .svc-cap-dot {
      width: 5px;
      height: 5px;
      border-radius: 50%;
      flex-shrink: 0;
    }

    .svc-card:nth-child(1) .svc-cap-dot {
      background: #8327D2;
    }

    .svc-card:nth-child(2) .svc-cap-dot {
      background: #3B82F6;
    }

    .svc-card:nth-child(3) .svc-cap-dot {
      background: #10B981;
    }

    .svc-card:nth-child(4) .svc-cap-dot {
      background: #F59E0B;
    }

    .svc-card:nth-child(5) .svc-cap-dot {
      background: #EF4444;
    }

    .svc-card:nth-child(6) .svc-cap-dot {
      background: #8B5CF6;
    }

    .svc-cta {
      display: inline-flex;
      align-items: center;
      gap: 0.5rem;
      font-family: var(--ff-heading);
      font-size: 0.875rem;
      font-weight: 700;
      color: var(--brand);
      margin-top: auto;
      transition: gap 0.2s ease, color 0.2s ease;
      position: relative;
      z-index: 1;
    }

    .svc-cta:hover {
      gap: 0.75rem;
      color: var(--brand-dark);
    }

    .svc-card:nth-child(2) .svc-cta {
      color: #3B82F6;
    }

    .svc-card:nth-child(3) .svc-cta {
      color: #10B981;
    }

    .svc-card:nth-child(4) .svc-cta {
      color: #F59E0B;
    }

    .svc-card:nth-child(5) .svc-cta {
      color: #EF4444;
    }

    .svc-card:nth-child(6) .svc-cta {
      color: #8B5CF6;
    }

    /* ═══════════════════════════════════════════════════════════════
       SECTION 3 — WHY CHOOSE
    ═══════════════════════════════════════════════════════════════ */
    .why-section-svc {
      padding: 6rem 0;
      background: var(--ink-900);
      position: relative;
      overflow: hidden;
    }

    /* Dark grid overlay */
    .why-grid-overlay {
      position: absolute;
      inset: 0;
      background-image: linear-gradient(rgba(255, 255, 255, 0.025) 1px, transparent 1px), linear-gradient(90deg, rgba(255, 255, 255, 0.025) 1px, transparent 1px);
      background-size: 48px 48px;
      pointer-events: none;
    }

    /* Radial glow center */
    .why-glow {
      position: absolute;
      top: -200px;
      left: 50%;
      transform: translateX(-50%);
      width: 900px;
      height: 600px;
      background: radial-gradient(ellipse, rgba(131, 39, 210, 0.22) 0%, transparent 65%);
      pointer-events: none;
    }

    .why-section-svc .section-header h2 {
      color: #fff;
    }

    .why-section-svc .section-header p {
      color: rgba(255, 255, 255, 0.5);
    }

    .why-section-svc .section-header .label {
      color: var(--brand-mid);
    }

    .why-highlights-grid {
      display: grid;
      grid-template-columns: repeat(4, 1fr);
      gap: 1.25rem;
      position: relative;
      z-index: 1;
    }

    .why-card {
      background: rgba(255, 255, 255, 0.04);
      border: 1px solid rgba(255, 255, 255, 0.07);
      border-radius: 20px;
      padding: 2rem 1.75rem;
      transition: background 0.25s ease, border-color 0.25s ease, transform 0.25s ease;
      position: relative;
      overflow: hidden;
    }

    .why-card:hover {
      background: rgba(131, 39, 210, 0.15);
      border-color: rgba(197, 152, 240, 0.3);
      transform: translateY(-4px);
    }

    .why-card-accent {
      position: absolute;
      top: 0;
      left: 0;
      right: 0;
      height: 2px;
      transform: scaleX(0);
      transform-origin: left;
      transition: transform 0.35s ease;
    }

    .why-card:hover .why-card-accent {
      transform: scaleX(1);
    }

    .why-card:nth-child(1) .why-card-accent {
      background: linear-gradient(90deg, #8327D2, #9F45E8);
    }

    .why-card:nth-child(2) .why-card-accent {
      background: linear-gradient(90deg, #3B82F6, #60A5FA);
    }

    .why-card:nth-child(3) .why-card-accent {
      background: linear-gradient(90deg, #10B981, #34D399);
    }

    .why-card:nth-child(4) .why-card-accent {
      background: linear-gradient(90deg, #F59E0B, #FCD34D);
    }

    .why-card-icon {
      width: 50px;
      height: 50px;
      border-radius: 14px;
      background: rgba(255, 255, 255, 0.06);
      display: grid;
      place-items: center;
      margin-bottom: 1.375rem;
      color: var(--brand-mid);
      transition: background 0.25s, color 0.25s, transform 0.25s;
    }

    .why-card:hover .why-card-icon {
      background: var(--brand);
      color: #fff;
      transform: scale(1.05) rotate(-3deg);
    }

    .why-card:nth-child(2):hover .why-card-icon {
      background: #3B82F6;
    }

    .why-card:nth-child(3):hover .why-card-icon {
      background: #10B981;
    }

    .why-card:nth-child(4):hover .why-card-icon {
      background: #F59E0B;
    }

    .why-card h3 {
      font-size: 1.0625rem;
      font-weight: 700;
      color: #fff;
      margin-bottom: 0.625rem;
    }

    .why-card p {
      font-size: 0.9rem;
      color: rgba(255, 255, 255, 0.45);
      line-height: 1.7;
    }

    /* ═══════════════════════════════════════════════════════════════
       SECTION 4 — PROCESS
    ═══════════════════════════════════════════════════════════════ */
    .process-section {
      padding: 6rem 0;
      background: var(--canvas);
    }

    .process-track {
      position: relative;
      display: grid;
      grid-template-columns: repeat(4, 1fr);
      gap: 0;
      margin-top: 0;
    }

    /* Connector line */
    .process-track::before {
      content: '';
      position: absolute;
      top: 36px;
      left: calc(12.5%);
      right: calc(12.5%);
      height: 2px;
      background: linear-gradient(90deg, var(--brand-soft) 0%, var(--brand) 50%, var(--brand-soft) 100%);
      z-index: 0;
    }

    .process-step {
      display: flex;
      flex-direction: column;
      align-items: center;
      text-align: center;
      padding: 0 1.25rem;
      position: relative;
      z-index: 1;
    }

    .process-step-badge {
      width: 72px;
      height: 72px;
      border-radius: 50%;
      background: var(--surface);
      border: 2px solid var(--border-soft);
      display: grid;
      place-items: center;
      margin-bottom: 1.75rem;
      box-shadow: var(--shadow-sm);
      transition: all 0.28s ease;
      position: relative;
    }

    .process-step-badge::before {
      content: '';
      position: absolute;
      inset: -5px;
      border-radius: 50%;
      border: 1.5px dashed var(--brand-soft);
      opacity: 0;
      transition: opacity 0.28s ease, transform 0.6s ease;
      transform: rotate(-30deg);
    }

    .process-step:hover .process-step-badge {
      background: var(--brand);
      border-color: var(--brand);
      box-shadow: 0 8px 28px rgba(131, 39, 210, 0.4);
      transform: scale(1.08);
    }

    .process-step:hover .process-step-badge::before {
      opacity: 1;
      transform: rotate(0deg);
    }

    .process-step-badge svg {
      color: var(--brand);
      transition: color 0.28s;
    }

    .process-step:hover .process-step-badge svg {
      color: #fff;
    }

    .process-step-num {
      position: absolute;
      top: -10px;
      right: -10px;
      width: 24px;
      height: 24px;
      background: var(--brand);
      border-radius: 50%;
      font-family: var(--ff-heading);
      font-size: 0.625rem;
      font-weight: 800;
      color: #fff;
      display: grid;
      place-items: center;
      box-shadow: 0 2px 8px rgba(131, 39, 210, 0.4);
      transition: background 0.28s;
    }

    .process-step:hover .process-step-num {
      background: var(--brand-deep);
    }

    .process-step-title {
      font-family: var(--ff-heading);
      font-size: 1.0625rem;
      font-weight: 700;
      color: var(--ink-900);
      margin-bottom: 0.625rem;
      line-height: 1.3;
    }

    .process-step-desc {
      font-size: 0.875rem;
      color: var(--ink-400);
      line-height: 1.65;
    }

    /* ═══════════════════════════════════════════════════════════════
       SECTION 5 — FINAL CTA
    ═══════════════════════════════════════════════════════════════ */
    .final-cta-section {
      padding: 7rem 0;
      position: relative;
      overflow: hidden;
      background: linear-gradient(140deg, var(--brand-deep) 0%, var(--brand) 45%, var(--brand-light) 100%);
    }

    .final-cta-section::before {
      content: '';
      position: absolute;
      inset: 0;
      background: radial-gradient(ellipse 55% 70% at 80% 50%, rgba(255, 255, 255, 0.06) 0%, transparent 65%),
        radial-gradient(ellipse 40% 60% at 15% 75%, rgba(255, 255, 255, 0.04) 0%, transparent 60%);
      pointer-events: none;
    }

    .final-cta-grid-overlay {
      position: absolute;
      inset: 0;
      background-image: linear-gradient(rgba(255, 255, 255, 0.025) 1px, transparent 1px), linear-gradient(90deg, rgba(255, 255, 255, 0.025) 1px, transparent 1px);
      background-size: 48px 48px;
      pointer-events: none;
    }

    /* Decorative large orb */
    .cta-orb-left {
      position: absolute;
      left: -180px;
      top: 50%;
      transform: translateY(-50%);
      width: 500px;
      height: 500px;
      border-radius: 50%;
      background: radial-gradient(circle, rgba(255, 255, 255, 0.06) 0%, transparent 65%);
      pointer-events: none;
    }

    .cta-orb-right {
      position: absolute;
      right: -100px;
      top: -100px;
      width: 400px;
      height: 400px;
      border-radius: 50%;
      background: radial-gradient(circle, rgba(255, 255, 255, 0.05) 0%, transparent 65%);
      pointer-events: none;
    }

    .final-cta-inner {
      position: relative;
      z-index: 1;
      text-align: center;
      max-width: 700px;
      margin-inline: auto;
    }

    .final-cta-chip {
      display: inline-flex;
      align-items: center;
      gap: 0.5rem;
      padding: 0.4375rem 1.125rem;
      background: rgba(255, 255, 255, 0.12);
      border: 1px solid rgba(255, 255, 255, 0.22);
      border-radius: var(--r-full);
      font-family: var(--ff-heading);
      font-size: 0.75rem;
      font-weight: 700;
      color: rgba(255, 255, 255, 0.9);
      text-transform: uppercase;
      letter-spacing: 0.08em;
      margin-bottom: 1.75rem;
      backdrop-filter: blur(6px);
    }

    .final-cta-inner h2 {
      color: #fff;
      font-size: clamp(1.9rem, 3.5vw, 3rem);
      margin-bottom: 1.125rem;
    }

    .final-cta-inner p {
      color: rgba(255, 255, 255, 0.72);
      font-size: 1.0625rem;
      margin-bottom: 2.75rem;
      line-height: 1.75;
    }

    .final-cta-actions {
      display: flex;
      align-items: center;
      justify-content: center;
      gap: 1rem;
      flex-wrap: wrap;
      margin-bottom: 3.5rem;
    }

    .btn-cta-white {
      display: inline-flex;
      align-items: center;
      gap: 0.5rem;
      padding: 1rem 2.125rem;
      background: #fff;
      color: var(--brand-dark);
      border: none;
      border-radius: var(--r-md);
      font-family: var(--ff-heading);
      font-size: 1rem;
      font-weight: 700;
      cursor: pointer;
      box-shadow: 0 4px 28px rgba(0, 0, 0, 0.2);
      transition: all 0.2s ease;
    }

    .btn-cta-white:hover {
      transform: translateY(-2px);
      box-shadow: 0 12px 36px rgba(0, 0, 0, 0.28);
    }

    .btn-cta-outline-white {
      display: inline-flex;
      align-items: center;
      gap: 0.5rem;
      padding: 1rem 2.125rem;
      background: transparent;
      color: #fff;
      border: 1.5px solid rgba(255, 255, 255, 0.4);
      border-radius: var(--r-md);
      font-family: var(--ff-heading);
      font-size: 1rem;
      font-weight: 600;
      cursor: pointer;
      transition: all 0.2s ease;
      backdrop-filter: blur(4px);
    }

    .btn-cta-outline-white:hover {
      border-color: rgba(255, 255, 255, 0.85);
      background: rgba(255, 255, 255, 0.1);
      transform: translateY(-2px);
    }

    /* Stats bar */
    .cta-stats-bar {
      display: grid;
      grid-template-columns: repeat(4, 1fr);
      align-items: center;
      padding: 2rem 0 0;
      border-top: 1px solid rgba(255, 255, 255, 0.12);
    }

    .cta-stat {
      text-align: center;
      padding: 0 1.5rem;
      border-right: 1px solid rgba(255, 255, 255, 0.12);
    }

    .cta-stat:last-child {
      border-right: none;
    }

    .cta-stat-number {
      font-family: var(--ff-heading);
      font-size: 2rem;
      font-weight: 800;
      color: #fff;
      line-height: 1;
      margin-bottom: 0.25rem;
    }

    .cta-stat-label {
      font-size: 0.8125rem;
      color: rgba(255, 255, 255, 0.5);
    }

    /* ─── RESPONSIVE ─────────────────────────────────────────────── */
    @media (max-width: 1100px) {
      .services-grid {
        grid-template-columns: repeat(2, 1fr);
      }

      .why-highlights-grid {
        grid-template-columns: repeat(2, 1fr);
      }

      .process-track {
        grid-template-columns: repeat(2, 1fr);
        gap: 2.5rem;
      }

      .process-track::before {
        display: none;
      }

      .hero-float-left,
      .hero-float-right {
        display: none;
      }
    }

    @media (max-width: 768px) {
      .services-grid {
        grid-template-columns: 1fr;
      }

      .why-highlights-grid {
        grid-template-columns: 1fr;
      }

      .process-track {
        grid-template-columns: 1fr;
      }

      .hero-trust-row {
        flex-direction: column;
        gap: 0.25rem;
      }

      .hero-trust-item {
        border: none;
        border-bottom: 1px solid var(--border);
        width: 100%;
        justify-content: center;
      }

      .hero-trust-item:first-child {
        border-top: 1px solid var(--border);
        border-left: none;
      }

      .cta-stats-bar {
        grid-template-columns: repeat(2, 1fr);
      }

      .cta-stat {
        border-right: none;
        border-bottom: 1px solid rgba(255, 255, 255, 0.12);
        padding: 0.75rem 1rem;
      }

      .cta-stat:nth-child(2n) {
        border-right: none;
      }

      .cta-stat:nth-last-child(-n+2) {
        border-bottom: none;
      }

      .nav-links {
        display: none;
      }
    }

    @media (max-width: 640px) {
      .final-cta-actions {
        flex-direction: column;
        align-items: stretch;
      }

      .btn-cta-white,
      .btn-cta-outline-white {
        justify-content: center;
      }
    }