
      :root {
        --bg-primary: #040406;
        --bg-secondary: #050711;
        --bg-panel: #0f162c;
        --bg-panel-soft: rgba(21, 30, 54, 0.6);
        --bg-overlay: radial-gradient(circle at top left, rgba(124, 63, 255, 0.32), transparent 58%),
          radial-gradient(circle at bottom right, rgba(127, 99, 255, 0.24), transparent 52%);
        --border-color: rgba(255, 255, 255, 0.08);
        --text-primary: #fafbff;
        --text-muted: rgba(245, 247, 255, 0.64);
        --accent: rgb(129, 74, 200);
        --accent-strong: rgb(129, 74, 200);
        --accent-soft: rgba(129, 74, 200, 0.16);
        --accent-gradient: linear-gradient(135deg, rgb(129, 74, 200) 0%, rgba(129, 74, 200, 0.82) 100%);
        --button-dark: rgba(255, 255, 255, 0.06);
        --button-border: rgba(255, 255, 255, 0.18);
        --success: #46f0c4;
        --warning: #f5b54a;
        --info: #7cbde5;
        --shadow-strong: 0 40px 90px rgba(15, 25, 59, 0.6);
        --shadow-soft: 0 18px 45px rgba(10, 18, 36, 0.5);
        --radius-lg: 20px;
        --radius-md: 16px;
        --radius-sm: 12px;
        --radius-pill: 999px;
        --gap-xl: 120px;
        --gap-lg: 72px;
        --gap-md: 48px;
        --gap-sm: 32px;
        --gap-xs: 20px;
        --max-width: 1180px;
     }

/* Scroll-triggered animations */
[data-animate] {
  --animate-duration: 0.65s;
  --animate-delay: 0s;
  --animate-ease: cubic-bezier(0.22, 0.61, 0.36, 1);
  --animate-transform: translate3d(0, 24px, 0);
  opacity: 1;
  transform: none;
  transition:
    opacity var(--animate-duration) ease,
    transform var(--animate-duration) var(--animate-ease);
  transition-delay: var(--animate-delay);
  will-change: opacity, transform;
}

.animations-ready [data-animate] {
  opacity: 0;
  transform: var(--animate-transform);
}

[data-animate="fade-up"] {
  --animate-transform: translate3d(0, 24px, 0);
}

[data-animate="fade-in"] {
  --animate-transform: translate3d(0, 12px, 0);
}

[data-animate="slide-left"] {
  --animate-transform: translate3d(-36px, 0, 0);
}

[data-animate="slide-right"] {
  --animate-transform: translate3d(36px, 0, 0);
}

[data-animate="scale-up"] {
  --animate-transform: scale(0.92);
  --animate-ease: cubic-bezier(0.16, 1, 0.3, 1);
}

.animations-ready [data-animate].is-visible {
  opacity: 1;
  transform: none;
}

.floating,
.tilt {
  animation-play-state: paused;
  will-change: transform;
}

.floating {
  animation: floatY 12s ease-in-out infinite;
}

.tilt {
  animation: tiltShift 10s ease-in-out infinite;
  transform-origin: center center;
}

[data-animate].is-visible .floating,
[data-animate].is-visible .tilt {
  animation-play-state: running;
}

@keyframes floatY {
  0% {
    transform: translate3d(0, 0, 0);
  }

  50% {
    transform: translate3d(0, -14px, 0);
  }

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

@keyframes tiltShift {
  0% {
    transform: rotate(-1.8deg) translate3d(0, 0, 0);
  }

  50% {
    transform: rotate(1.6deg) translate3d(0, -6px, 0);
  }

  100% {
    transform: rotate(-1.8deg) translate3d(0, 0, 0);
  }
}

@keyframes ctaSheen {
  0% {
    transform: translateX(-65%) rotate(12deg);
    opacity: 0;
  }

  25% {
    opacity: 0.4;
  }

  50% {
    transform: translateX(65%) rotate(12deg);
    opacity: 0.18;
  }

  80% {
    opacity: 0;
  }

  100% {
    transform: translateX(65%) rotate(12deg);
    opacity: 0;
  }
}

@media (prefers-reduced-motion: reduce) {
  .animations-ready [data-animate] {
    opacity: 1 !important;
    transform: none !important;
    transition-duration: 0ms !important;
    transition-delay: 0ms !important;
  }

  .floating,
  .tilt {
    animation: none !important;
  }

  .cta::before {
    animation: none !important;
    opacity: 0 !important;
  }

  .cta .btn {
    transition-duration: 0ms !important;
  }

  .cta .btn:hover,
  .cta .btn:focus-visible {
    transform: none !important;
    box-shadow: none !important;
  }
}

      
      *, *::before, *::after {
        box-sizing: border-box;
      }

      html {
        scroll-behavior: smooth;
      }

      body {
        margin: 0;
        font-family: "DM Sans", "Sora", sans-serif;
        background: var(--bg-primary);
        background-image: radial-gradient(rgba(255, 255, 255, 0.28) 0.8px, transparent 0.8px);
        background-size: 140px 140px;
        color: var(--text-primary);
        line-height: 1.6;
        overflow-x: hidden;
        position: relative;
      }

      body::before {
        content: "";
        position: fixed;
        inset: 0;
        background: var(--bg-overlay);
        opacity: 0.6;
        pointer-events: none;
        z-index: -1;
      }

      body::after {
        /* Expanded the starfield with three parallax layers and gentle motion */
        content: "";
        position: fixed;
        inset: 0;
        background-image: radial-gradient(rgba(255, 255, 255, 0.35) 1.2px, transparent 1.2px),
          radial-gradient(rgba(255, 255, 255, 0.26) 1px, transparent 1px),
          radial-gradient(rgba(255, 255, 255, 0.18) 0.8px, transparent 0.8px);
        background-size: 220px 220px, 320px 320px, 440px 440px;
        background-position: 0 0, 50px 70px, -80px 20px;
        opacity: 0.28;
        pointer-events: none;
        z-index: -1;
        animation: starDrift 70s linear infinite;
      }

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

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

      section {
        padding: var(--gap-lg) 0;
      }

      .container {
        width: min(var(--max-width), calc(100% - 48px));
        margin: 0 auto;
      }

      h1,
      h2,
      h3,
      h4 {
        font-family: "Sora", sans-serif;
        margin: 0;
        line-height: 1.2;
      }

      p {
        margin: 0;
        color: var(--text-muted);
      }

      ul {
        list-style: none;
        margin: 0;
        padding: 0;
      }

      button {
        font-family: inherit;
      }

      /* Header layout pinned to top like the reference site */
      .site-header {
        /* Promote the nav to a fully fixed position so it stays visible on scroll */
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        z-index: 999;
        backdrop-filter: blur(14px);
        background: linear-gradient(270deg, rgba(8, 6, 9, 0.96) 0%, rgba(10, 10, 18, 0.95) 45%, rgba(24, 12, 36, 0.92) 100%);
        border-bottom: 1px solid rgba(28, 28, 40, 0.7);
        box-shadow: 0 12px 32px rgba(0, 0, 0, 0.5);
      }

      .site-header .container {
        display: flex;
        align-items: center;
        gap: 32px;
        padding: 16px 0;
      }

      .header-top {
        display: flex;
        align-items: center;
        gap: 16px;
      }

      .branding .logo {
        /* Swapped the text wordmark for the provided DHA360 logo asset */
        display: block;
        height: 36px;
        width: auto;
      }

      .main-nav {
        display: flex;
        justify-content: flex-end;
        align-items: center;
        gap: 28px;
        font-weight: 500;
        margin-left: auto;
      }

      .main-nav a:hover {
        color: var(--accent);
      }

      .nav-toggle {
        /* Hidden on larger screens; used to reveal the menu on mobile */
        display: none;
        flex-direction: column;
        justify-content: center;
        gap: 5px;
        width: 42px;
        height: 42px;
        border-radius: var(--radius-md);
        border: 1px solid rgba(129, 74, 200, 0.3);
        background: rgba(129, 74, 200, 0.12);
        cursor: pointer;
        transition: transform 0.3s ease, background 0.3s ease;
      }

      .nav-toggle span {
        height: 2px;
        width: 60%;
        margin: 0 auto;
        background: var(--text-primary);
        transition: transform 0.3s ease, opacity 0.3s ease;
      }

      .site-header.nav-open .nav-toggle span:nth-child(1) {
        transform: translateY(6px) rotate(45deg);
      }

      .site-header.nav-open .nav-toggle span:nth-child(2) {
        opacity: 0;
      }

      .site-header.nav-open .nav-toggle span:nth-child(3) {
        transform: translateY(-6px) rotate(-45deg);
      }

      .actions {
        display: flex;
        justify-content: flex-end;
        gap: 12px;
      }

      /* Consistent button system with gradient fills and ghost outline states */
      .btn {
        display: inline-flex;
        align-items: center;
        justify-content: center;
        padding: 6px 11px;
        border-radius: 10px;
        font-weight: 600;
        font-family: "DM Sans", sans-serif;
        border: 1px solid transparent;
        transition: transform 0.3s ease, box-shadow 0.3s ease, background 0.3s ease,
          border-color 0.3s ease;
      }

      .btn.small {
        padding: 8px 18px;
        font-size: 0.40rem;
      }

      .btn.solid {
        background: rgb(129, 74, 200);
        color: #fdfcff;
        box-shadow: none;
      }

      .btn.solid:hover {
        transform: translateY(-3px);
        box-shadow: none;
      }

      .btn.ghost {
        border-color: rgb(129, 74, 200);
        color: #fdfcff;
        background: transparent;
      }

      .btn.ghost:hover {
        background: rgba(129, 74, 200, 0.18);
        transform: translateY(-3px);
      }

      /* Hero split layout with card stack visuals */
      .hero {
        position: relative;
        padding-top: 190px; /* Added offset so the fixed header does not overlap the hero */
        padding-bottom: 110px;
        overflow: hidden;
        text-align: left;
      }

      .hero::before {
        /* Positioned glow behind the headline to match the purple halo */
        content: "";
        position: absolute;
        width: 680px;
        height: 680px;
        border-radius: 50%;
        background: radial-gradient(circle, rgba(133, 88, 255, 0.55) 0%, transparent 70%);
        filter: blur(16px);
        left: 50%;
        top: 44%;
        transform: translate(-50%, -50%);
        z-index: 0;
      }

      .hero .container {
        position: relative;
        z-index: 1;
        display: grid;
        grid-template-columns: minmax(280px, 360px) minmax(0, 1fr);
        align-items: center;
        gap: clamp(32px, 6vw, 72px);
        max-width: 1100px;
        width: min(1100px, calc(100% - 48px));
        margin: 0 auto;
      }

      .hero-visual {
        display: flex;
        justify-content: flex-end;
      }

      .hero-visual img {
        width: min(260px, 45vw);
        height: auto;
      }

      .hero-content .pill {
        display: inline-flex;
        align-items: center;
        gap: 6px;
        padding: 4px 12px;
        border-radius: 12px;
        background: rgba(44, 18, 72, 0.9);
        color: var(--text-primary);
        font-weight: 500;
        font-size: 0.85rem;
        letter-spacing: 0.02em;
        box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.12);
      }

      .hero-content .pill .badge {
        padding: 2px 10px;
        border-radius: 10px;
        background: var(--accent-gradient);
        color: #ebeaed;
        font-size: 0.72rem;
        font-weight: 600;
        letter-spacing: 0.06em;
        text-transform: uppercase;
      }

      .hero-content {
        display: grid;
        gap: 14px;
        justify-items: start;
      }

      .hero-content .pill span {
        display: inline-flex;
        align-items: center;
      }

      .hero-content .pill .badge {
        padding: 3px 10px;
        border-radius: 8px;
        background: var(--accent-gradient);
        color: #ebeaed;
        font-size: 0.72rem;
        font-weight: 600;
        letter-spacing: 0.06em;
        text-transform: uppercase;
      }

      .hero-content h1 {
        font-size: clamp(2.5rem, 3.2vw + 0.7rem, 3.2rem);
        margin: 8px 0;
        line-height: 1.15;
        text-align: left;
      }

      .hero-content p {
        font-size: 1rem;
        max-width: 620px;
        margin: 0;
        line-height: 1.55;
        text-align: left;
        color: rgba(255, 255, 255, 0.8);
      }

      .hero-content .cta-group {
        display: flex;
        flex-wrap: wrap;
        gap: 16px;
        margin: 12px 0 12px;
        justify-content: flex-start;
        width: 100%;
        align-items: stretch;
      }

      .hero-content .cta-group .btn {
        flex: 0 0 auto;
        padding: 6px 14px;
      }

      .hero-content .trust-signal {
        font-weight: 500;
        color: var(--text-primary);
        text-align: left;
        margin-top: 4px;
      }

      .task-card {
        width: min(420px, 100%);
        background: var(--bg-panel);
        border: 1px solid var(--border-color);
        border-radius: var(--radius-lg);
        padding: 28px;
        box-shadow: var(--shadow-strong);
        position: relative;
        overflow: hidden;
      }

      .task-card::before,
      .task-card::after {
        content: "";
        position: absolute;
        border-radius: 50%;
        background: rgba(79, 117, 255, 0.2);
        filter: blur(40px);
        opacity: 0.8;
      }

      .task-card::before {
        width: 220px;
        height: 220px;
        top: -110px;
        right: -90px;
      }

      .task-card::after {
        width: 180px;
        height: 180px;
        bottom: -80px;
        left: -60px;
        background: rgba(71, 233, 219, 0.22);
      }

      .task-card h3 {
        font-size: 1.2rem;
        margin-bottom: 12px;
      }

      .tab-row {
        display: flex;
        gap: 12px;
        margin-bottom: 24px;
      }

      .tab {
        padding: 10px 18px;
        border-radius: var(--radius-pill);
        border: 1px solid rgba(129, 74, 200, 0.25);
        background: rgba(129, 74, 200, 0.12);
        color: var(--text-primary);
        font-size: 0.9rem;
      }

      .tab.active {
        background: rgba(129, 74, 200, 0.28);
        border-color: rgba(129, 74, 200, 0.45);
        color: var(--text-primary);
      }

      .task-card ul {
        display: flex;
        flex-direction: column;
        gap: 18px;
      }

      .task-card li {
        display: flex;
        flex-direction: column;
        gap: 6px;
        padding: 16px;
        border-radius: var(--radius-md);
        background: rgba(5, 10, 24, 0.65);
        border: 1px solid rgba(255, 255, 255, 0.05);
      }

      .task-card li strong {
        font-size: 0.98rem;
        color: var(--text-primary);
      }

      .task-card li span {
        font-size: 0.85rem;
        color: var(--text-muted);
      }

      /* Section shared headings and spacing */
      .section-eyebrow {
        text-transform: uppercase;
        letter-spacing: 0.18em;
        font-weight: 600;
        color: var(--accent);
        margin-bottom: 16px;
      }

      .section-lead {
        margin-top: 20px;
        max-width: 640px;
      }

      /* Services grid resembling the template's card deck */
      .services {
        padding-top: var(--gap-lg);
        padding-bottom: var(--gap-lg);
      }

      /* Added matching spacing for benefits so both sections align nicely */
      .benefits {
        padding-top: var(--gap-lg);
        padding-bottom: var(--gap-lg);
      }

      /* Reusing the hero intro styling for services, benefits, and testimonials to keep headings consistent */
      .services-intro,
      .benefits-intro,
      .testimonials-intro {
        display: grid;
        gap: 20px;
        justify-items: center;
        text-align: center;
        max-width: 760px;
        margin: 0 auto var(--gap-lg);
      }

      .about-section-intro {
        /* Tighten the headline stack spacing for the about sections */
        gap: 16px;
        margin-bottom: var(--gap-sm);
      }

      /* Matching the pill treatment across services, benefits, and testimonials intros */
      .services-intro .pill.variant,
      .benefits-intro .pill.variant,
      .testimonials-intro .pill.variant {
        display: inline-flex;
        align-items: center;
        justify-content: center;
        padding: 8px 22px;
        border-radius: 12px;
        border: 1px solid rgba(255, 255, 255, 0.16);
        background: rgba(2, 3, 8, 0.75);
        font-size: 0.75rem;
        font-weight: 600;
        text-transform: uppercase;
        letter-spacing: 0.22em;
        color: rgba(255, 255, 255, 0.82);
        box-shadow: 0 12px 30px rgba(0, 0, 0, 0.35);
      }

      /* Ensuring all section intros share headline sizing */
      .services-intro h2,
      .benefits-intro h2,
      .testimonials-intro h2 {
        font-size: clamp(2.2rem, 2.6vw + 1rem, 3rem);
      }

      /* Keeping supporting copy cohesive between services, benefits, and testimonials intros */
      .services-intro p,
      .benefits-intro p,
      .testimonials-intro p {
        max-width: 620px;
        color: rgba(255, 255, 255, 0.7);
        font-size: 0.97rem;
      }

      .service-showcase {
        display: grid;
        gap: var(--gap-lg);
        position: relative;
      }

      .service-row {
        display: flex;
        gap: var(--gap-md);
        align-items: center;
        position: relative;
      }

      .service-row:nth-child(even) {
        flex-direction: row-reverse;
      }

      .service-media {
        position: relative;
        width: 100%;
        flex: 1;
      }

      .service-media img {
        width: 100%;
        height: auto;
        display: block;
        border-radius: var(--radius-lg);
        box-shadow: var(--shadow-soft);
        border: 1px solid rgba(129, 74, 200, 0.26);
        background: rgba(6, 8, 18, 0.85);
      }

      .calendly-container {
        margin-top: var(--gap-md);
      }

      .toast {
        position: fixed;
        right: clamp(16px, 4vw, 36px);
        bottom: clamp(16px, 5vh, 48px);
        min-width: 280px;
        max-width: 360px;
        display: flex;
        align-items: stretch;
        padding: 26px 28px;
        border-radius: var(--radius-lg);
        border: 1px solid rgba(129, 74, 200, 0.42);
        background: linear-gradient(140deg, rgba(16, 12, 26, 0.98) 0%, rgba(36, 12, 54, 0.98) 48%, rgba(54, 16, 78, 0.98) 100%);
        box-shadow: 0 36px 80px rgba(6, 8, 18, 0.72), inset 0 0 40px rgba(129, 74, 200, 0.12);
        color: var(--text-primary);
        transform: translate3d(0, 40px, 0) scale(0.98);
        opacity: 0;
        transition: transform 0.38s cubic-bezier(0.21, 1, 0.36, 1), opacity 0.24s ease;
        z-index: 9999;
        overflow: hidden;
      }

      .toast::before {
        content: "";
        position: absolute;
        inset: 0;
        background: radial-gradient(circle at 20% 20%, rgba(129, 74, 200, 0.28) 0%, transparent 55%),
          radial-gradient(circle at 80% 80%, rgba(99, 196, 245, 0.18) 0%, transparent 52%);
        opacity: 0.85;
        pointer-events: none;
      }

      .toast.is-visible {
        transform: translate3d(0, 0, 0) scale(1);
        opacity: 1;
      }

      .toast[data-state="error"] {
        border-color: rgba(255, 142, 158, 0.48);
        background: linear-gradient(145deg, rgba(26, 10, 20, 0.98) 0%, rgba(46, 14, 32, 0.98) 50%, rgba(64, 18, 38, 0.98) 100%);
      }

      .toast::after {
        content: "";
        position: absolute;
        inset: 1px;
        border-radius: inherit;
        border: 1px solid rgba(255, 255, 255, 0.06);
        pointer-events: none;
      }

      .toast-content {
        position: relative;
        flex: 1;
        display: grid;
        gap: 6px;
      }

      .toast-title {
        font-size: 0.92rem;
        letter-spacing: 0.32em;
        text-transform: uppercase;
        color: rgba(255, 255, 255, 0.88);
      }

      .toast-message {
        margin: 0;
        font-size: 1rem;
        color: rgba(235, 239, 255, 0.78);
      }

      .toast[data-state="error"] .toast-title {
        color: rgba(255, 198, 208, 0.9);
      }

      .toast-close {
        position: relative;
        margin-left: 22px;
        align-self: flex-start;
        background: rgba(255, 255, 255, 0.05);
        border: 1px solid rgba(255, 255, 255, 0.18);
        color: rgba(255, 255, 255, 0.82);
        width: 32px;
        height: 32px;
        border-radius: 50%;
        font-size: 1.08rem;
        line-height: 1;
        display: grid;
        place-items: center;
        cursor: pointer;
        transition: transform 0.28s cubic-bezier(0.21, 1, 0.35, 1), background 0.28s ease, border-color 0.28s ease;
      }

      .toast-close:hover,
      .toast-close:focus-visible {
        background: rgba(129, 74, 200, 0.32);
        border-color: rgba(129, 74, 200, 0.6);
        transform: scale(1.1);
      }

      @media (max-width: 640px) {
        .toast {
          left: 16px;
          right: 16px;
          max-width: none;
        }
      }

      .media-card {
        background: linear-gradient(150deg, rgba(15, 15, 25, 0.96) 0%, rgba(10, 8, 20, 0.92) 70%);
        border: 1px solid rgba(129, 74, 200, 0.26);
        border-radius: var(--radius-lg);
        padding: 32px;
        box-shadow: var(--shadow-soft);
        display: grid;
        gap: 18px;
      }

      .service-page {
        /* Give the standalone services page enough breathing room beneath the fixed header */
        padding-top: calc(var(--gap-lg) + 70px);
      }

      .services-more {
        /* Added dedicated spacing and alignment for the services call-to-action */
        display: flex;
        justify-content: center;
        margin-top: var(--gap-md);
      }

      .media-placeholder {
        min-height: 260px;
        display: grid;
        place-items: center;
        background: rgba(6, 8, 18, 0.8);
        border: 1px dashed rgba(129, 74, 200, 0.35);
      }

      .media-placeholder::after {
        content: "Image placeholder";
        font-size: 0.85rem;
        letter-spacing: 0.08em;
        text-transform: uppercase;
        color: rgba(255, 255, 255, 0.4);
      }

      .media-card .chip {
        padding: 6px 14px;
        border-radius: var(--radius-pill);
        border: 1px solid rgba(129, 74, 200, 0.3);
        color: var(--text-primary);
        font-size: 0.75rem;
        letter-spacing: 0.08em;
      }

      .media-card .chip.active {
        background: rgba(129, 74, 200, 0.25);
      }

      .task-card-preview .media-header {
        display: flex;
        align-items: center;
        gap: 12px;
      }

      .media-list {
        list-style: none;
        display: grid;
        gap: 12px;
      }

      .media-list li {
        display: grid;
        gap: 4px;
        padding: 14px;
        border-radius: var(--radius-md);
        background: rgba(255, 255, 255, 0.04);
        border: 1px solid rgba(129, 74, 200, 0.25);
      }

      .media-list li strong {
        color: var(--text-primary);
      }

      .service-details {
        display: grid;
        gap: 14px;
        flex: 1;
        text-align: left;
      }

      .service-details .eyebrow {
        display: inline-flex;
        align-items: center;
        justify-self: flex-start;
        height: 36px;
        padding: 0 18px;
        border-radius: 10px;
        border: 1px solid rgba(255, 255, 255, 0.16);
        background: rgba(10, 12, 22, 0.75);
        letter-spacing: 0.18em;
        font-size: 0.66rem;
        font-weight: 600;
        text-transform: uppercase;
        color: rgba(255, 255, 255, 0.8);
      }

      .service-details h3 {
        font-size: 2.1rem;
        font-weight: 600;
      }

      .service-details p {
        color: rgba(255, 255, 255, 0.75);
        line-height: 1.65;
        max-width: 560px;
      }

      .feature-tags {
        display: flex;
        flex-wrap: wrap;
        gap: 10px;
        max-width: 100%;
      }

      .feature-tags span {
        display: inline-flex;
        align-items: center;
        justify-content: center;
        min-height: 36px;
        padding: 0 18px;
        border-radius: 12px;
        border: 1px solid rgba(255, 255, 255, 0.18);
        background: rgba(8, 10, 18, 0.82);
        font-size: 0.8rem;
        letter-spacing: 0.01em;
        color: rgba(255, 255, 255, 0.84);
        box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.05);
        white-space: nowrap;
      }

      .assistant-preview {
        text-align: left;
      }

      .assistant-preview .assistant-avatar {
        width: 48px;
        height: 48px;
        border-radius: 14px;
        background: radial-gradient(circle at top, rgba(129, 74, 200, 0.6), rgba(15, 10, 28, 0.6));
      }

      .assistant-preview h4 {
        font-size: 1.1rem;
      }

      .assistant-preview .media-actions {
        display: flex;
        flex-wrap: wrap;
        gap: 10px;
        font-size: 0.85rem;
        color: rgba(255, 255, 255, 0.7);
      }

      .assistant-preview .media-actions span {
        padding: 8px 14px;
        border-radius: var(--radius-pill);
        background: rgba(255, 255, 255, 0.06);
        border: 1px solid rgba(129, 74, 200, 0.25);
      }

      .outreach-preview .media-header {
        display: flex;
        justify-content: space-between;
        align-items: center;
      }

      .outreach-preview .media-body {
        display: grid;
        gap: 6px;
      }

      .outreach-preview .media-tabs {
        display: flex;
        gap: 12px;
        flex-wrap: wrap;
        font-size: 0.8rem;
        color: rgba(255, 255, 255, 0.75);
      }

      .outreach-preview .media-tabs span {
        padding: 8px 12px;
        border-radius: var(--radius-pill);
        background: rgba(255, 255, 255, 0.06);
      }

      .timeline-preview h4 {
        font-size: 1.2rem;
      }

      .timeline-preview .muted {
        color: rgba(255, 255, 255, 0.6);
        font-size: 0.9rem;
      }

      .timeline-item,
      .timeline-event {
        display: flex;
        justify-content: space-between;
        align-items: center;
        padding: 14px 16px;
        border-radius: var(--radius-md);
        background: rgba(255, 255, 255, 0.05);
        border: 1px solid rgba(129, 74, 200, 0.22);
        font-size: 0.9rem;
      }

      /* Process cards as stacked panels */
      .process-grid {
        margin-top: var(--gap-md);
        display: grid;
        grid-template-columns: repeat(3, minmax(0, 1fr));
        gap: var(--gap-md);
      }

      .process-card {
        background: linear-gradient(150deg, rgba(129, 74, 200, 0.14) 0%, rgba(18, 16, 30, 0.95) 70%);
        border: 1px solid rgba(129, 74, 200, 0.26);
        border-radius: var(--radius-lg);
        padding: 32px;
        display: grid;
        gap: 18px;
        position: relative;
        overflow: hidden;
      }

      .process-card ul {
        display: grid;
        gap: 8px;
        color: var(--text-muted);
      }

      .process-card pre {
        background: linear-gradient(150deg, rgba(129, 74, 200, 0.22) 0%, rgba(18, 16, 30, 0.92) 70%);
        border-radius: var(--radius-md);
        padding: 18px;
        border: 1px solid rgba(129, 74, 200, 0.36);
        color: #d4c7ff;
        font-size: 0.9rem;
        white-space: pre-wrap;
        box-shadow: inset 0 0 24px rgba(12, 8, 22, 0.4);
      }

      .impact {
        display: grid;
        gap: 10px;
      }

      .impact span {
        padding: 12px 16px;
        border-radius: var(--radius-pill);
        background: rgba(129, 74, 200, 0.2);
        color: var(--text-primary);
        font-size: 0.85rem;
        border: 1px solid rgba(129, 74, 200, 0.38);
      }

      /* Benefit cards in compact grid */
      .benefit-grid {
        margin-top: var(--gap-md);
        display: grid;
        grid-template-columns: repeat(3, minmax(0, 1fr));
        gap: var(--gap-md);
      }

      .benefit-grid article {
        background: linear-gradient(150deg, rgba(129, 74, 200, 0.14) 0%, rgba(18, 16, 30, 0.95) 70%);
        border-radius: var(--radius-lg);
        border: 1px solid rgba(129, 74, 200, 0.26);
        padding: 28px;
        box-shadow: var(--shadow-soft);
      }

      .benefit-grid article h3 {
        margin-bottom: 12px;
      }

      /* About page hero replicates the reference headline stack */
      .about-hero {
        padding: calc(var(--gap-lg) + 70px) 0 var(--gap-md);
        text-align: center;
        position: relative;
        overflow: hidden;
      }

      .about-hero::before {
        content: "";
        position: absolute;
        inset: -40% -20% auto;
        height: 120%;
        background: radial-gradient(circle at top, rgba(129, 74, 200, 0.36), transparent 65%);
        opacity: 0.8;
        filter: blur(30px);
        z-index: 0;
      }

      .about-hero .container {
        position: relative;
        z-index: 1;
        max-width: 780px;
        margin: 0 auto;
      }

      .about-hero-content {
        display: grid;
        gap: 18px;
        justify-items: center;
        text-align: center;
      }

      .about-hero-content h1 {
        font-size: clamp(2.6rem, 3.2vw + 1rem, 3.4rem);
      }

      .about-hero-content p {
        color: rgba(255, 255, 255, 0.78);
        font-size: 1rem;
        max-width: 600px;
      }

      .about-pill {
        padding: 8px 24px;
        border-radius: var(--radius-md);
        border: 1px solid rgba(255, 255, 255, 0.16);
        background: rgba(10, 12, 24, 0.78);
        letter-spacing: 0.2em;
        text-transform: uppercase;
        font-size: 0.78rem;
        font-weight: 600;
      }

      /* About identity section matches stat cards from reference */
      .about-who {
        padding: var(--gap-lg) 0;
        text-align: center;
      }

      .about-who .container {
        display: grid;
        gap: var(--gap-sm);
        justify-items: center;
        max-width: 880px;
      }

      .about-who p {
        color: rgba(255, 255, 255, 0.76);
        max-width: 660px;
      }

      .about-stats {
        display: grid;
        grid-template-columns: repeat(3, minmax(0, 1fr));
        gap: var(--gap-sm);
        width: 100%;
      }

      .about-stat-card {
        background: linear-gradient(150deg, rgba(129, 74, 200, 0.14) 0%, rgba(18, 16, 30, 0.95) 70%);
        border-radius: var(--radius-lg);
        border: 1px solid rgba(129, 74, 200, 0.3);
        padding: 28px;
        display: grid;
        gap: 12px;
        box-shadow: var(--shadow-soft);
      }

      .about-stat-card h3 {
        font-size: 1.4rem;
      }

      .about-stat-card p {
        color: rgba(255, 255, 255, 0.72);
      }

      /* Values layout inspired by four-tile reference */
      .about-values {
        padding: var(--gap-lg) 0;
        text-align: center;
      }

      .about-values .container {
        display: grid;
        gap: var(--gap-sm);
        justify-items: center;
        max-width: 960px;
      }

      .about-values p {
        color: rgba(255, 255, 255, 0.74);
        max-width: 720px;
      }

      .about-values-grid {
        display: grid;
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: var(--gap-sm);
        width: 100%;
      }

      .about-values-grid article {
        background: rgba(8, 10, 18, 0.92);
        border-radius: var(--radius-lg);
        border: 1px solid rgba(129, 74, 200, 0.28);
        padding: 26px;
        display: grid;
        gap: 10px;
        text-align: left;
      }

      .about-values-grid article h3 {
        font-size: 1.2rem;
      }

      .about-values-grid article p {
        color: rgba(255, 255, 255, 0.7);
      }

      /* Difference section keeps two-column comparison */
      .about-difference {
        padding: var(--gap-lg) 0;
        text-align: center;
      }

      .about-difference .container {
        display: grid;
        gap: var(--gap-sm);
        justify-items: center;
        max-width: 1000px;
      }

      .about-difference p {
        color: rgba(255, 255, 255, 0.74);
        max-width: 720px;
      }

      .about-compare {
        display: grid;
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: var(--gap-sm);
        width: 100%;
      }

      .compare-card {
        background: rgba(8, 10, 18, 0.92);
        border-radius: var(--radius-lg);
        border: 1px solid rgba(129, 74, 200, 0.28);
        padding: 28px;
        text-align: left;
        display: grid;
        gap: 18px;
      }

      .compare-card h3 {
        font-size: 1.3rem;
      }

      .compare-card ul {
        display: grid;
        gap: 10px;
        color: rgba(255, 255, 255, 0.74);
        padding-left: 18px;
      }

      .compare-card ul li {
        list-style: disc;
      }

      .compare-card.highlight {
        background: linear-gradient(150deg, rgba(129, 74, 200, 0.36) 0%, rgba(18, 12, 34, 0.96) 70%);
        border-color: rgba(129, 74, 200, 0.6);
        box-shadow: var(--shadow-soft);
      }

      /* Team showcase */
      .about-team {
        padding: var(--gap-lg) 0;
        text-align: center;
      }

      .about-team .container {
        display: grid;
        gap: var(--gap-sm);
        justify-items: center;
        max-width: 960px;
      }

      .about-team p {
        color: rgba(255, 255, 255, 0.74);
        max-width: 640px;
      }

      .team-grid {
        display: grid;
        grid-template-columns: repeat(3, minmax(0, 1fr));
        gap: var(--gap-sm);
        width: 100%;
      }

      .team-grid-compact {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        justify-content: center;
      }

      .team-grid article {
        background: rgba(8, 10, 18, 0.92);
        border-radius: var(--radius-lg);
        border: 1px solid rgba(129, 74, 200, 0.28);
        padding: 24px;
        display: grid;
        gap: 16px;
        justify-items: center;
        box-shadow: var(--shadow-soft);
      }

      .team-grid article .team-social {
        display: inline-flex;
        align-items: center;
        justify-content: center;
        width: 40px;
        height: 40px;
        border-radius: 50%;
        border: 1px solid rgba(129, 74, 200, 0.36);
        background: rgba(129, 74, 200, 0.18);
        box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.08);
        transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
      }

      .team-grid article .team-social::before {
        content: "";
        width: 20px;
        height: 20px;
        background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath fill='%23f4f2ff' d='M4.98 3.5c0 1.38-1.11 2.5-2.48 2.5S0 4.88 0 3.5 1.11 1 2.5 1s2.48 1.12 2.48 2.5zM0 8h5v15H0V8zm7.5 0h4.75v2.05h.07c.66-1.24 2.3-2.55 4.73-2.55 5.05 0 5.99 3.32 5.99 7.64V23H17V15.2c0-1.85-.03-4.24-2.6-4.24-2.6 0-3 2.02-3 4.1V23H7.5z'/%3E%3C/svg%3E")
          center/contain no-repeat;
        opacity: 0.9;
      }

      .team-grid article .team-social:hover {
        transform: translateY(-2px);
        border-color: rgba(129, 74, 200, 0.6);
        box-shadow: 0 18px 36px rgba(129, 74, 200, 0.32);
      }

      .team-grid article .team-avatar {
        width: 100%;
        height: 320px;
        border-radius: var(--radius-md);
        background: linear-gradient(160deg, rgba(129, 74, 200, 0.35) 0%, rgba(12, 10, 24, 0.92) 100%);
        box-shadow: inset 0 0 40px rgba(8, 6, 18, 0.6);
      }

      .team-grid article .team-photo {
        width: 100%;
        height: 320px;
        border-radius: var(--radius-md);
        object-fit: cover;
        box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.04);
      }

      .team-avatar-isha {
        background: radial-gradient(circle at top, rgba(129, 74, 200, 0.75), rgba(18, 12, 34, 0.92));
      }

      .team-avatar-alpen {
        background: radial-gradient(circle at top, rgba(71, 173, 222, 0.7), rgba(18, 12, 34, 0.92));
      }

      .team-grid article h3 {
        font-size: 1.1rem;
      }

      .team-grid article span {
        color: rgba(255, 255, 255, 0.66);
        font-size: 0.92rem;
      }

      /* FAQ accordion matches reference layout */
      .about-faq {
        padding: var(--gap-lg) 0;
        text-align: center;
      }

      .about-faq .container {
        display: grid;
        gap: var(--gap-sm);
        justify-items: center;
        max-width: 840px;
      }

      .about-faq p {
        color: rgba(255, 255, 255, 0.72);
      }

      .faq-list {
        display: grid;
        gap: 12px;
        width: 100%;
        text-align: left;
      }

      .faq-list details {
        background: rgba(8, 10, 18, 0.92);
        border-radius: var(--radius-lg);
        border: 1px solid rgba(129, 74, 200, 0.28);
        padding: 18px 22px;
        transition: border-color 0.3s ease, background 0.3s ease;
        position: relative;
      }

      .faq-list details[open] {
        border-color: rgba(129, 74, 200, 0.55);
        background: rgba(18, 12, 34, 0.95);
      }

      .faq-list summary {
        cursor: pointer;
        font-weight: 600;
        list-style: none;
        display: flex;
        align-items: center;
        justify-content: space-between;
        gap: 14px;
      }

      .faq-list summary::after {
        content: "";
        width: 18px;
        height: 18px;
        flex: 0 0 auto;
        background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='none' stroke='%23ffffff' stroke-width='2' stroke-linecap='round'%3E%3Cpath d='M6 9l6 6 6-6'/%3E%3C/svg%3E")
          center/contain no-repeat;
        opacity: 0.7;
        transition: transform 0.3s ease, opacity 0.3s ease;
      }

      .faq-list details[open] summary::after {
        transform: rotate(180deg);
        opacity: 1;
      }

      .faq-list summary::-webkit-details-marker {
        display: none;
      }

      .faq-list details p {
        margin-top: 12px;
        color: rgba(255, 255, 255, 0.7);
      }

      /* Contact page hero and form */
      .contact-hero {
        padding: calc(var(--gap-lg) + 70px) 0 var(--gap-lg);
      }

      .contact-hero .container {
        display: grid;
        gap: var(--gap-sm);
        width: min(960px, calc(100% - 48px));
        margin: 0 auto;
      }

      .contact-intro {
        justify-items: center;
        gap: 14px;
      }

      .contact-intro h1 {
        font-size: clamp(2.6rem, 3vw + 1rem, 3.3rem);
      }

      .contact-intro p {
        color: rgba(255, 255, 255, 0.78);
        max-width: 680px;
        font-size: 1.05rem;
      }

      .contact-summary {
        display: grid;
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 18px;
      }

      .contact-summary article {
        background: linear-gradient(160deg, rgba(129, 74, 200, 0.18) 0%, rgba(10, 8, 20, 0.92) 70%);
        border-radius: var(--radius-md);
        border: 1px solid rgba(129, 74, 200, 0.22);
        padding: 18px 20px;
        display: grid;
        gap: 8px;
        justify-items: flex-start;
        text-align: left;
        box-shadow: var(--shadow-soft);
      }

      .contact-icon {
        width: 44px;
        height: 44px;
        border-radius: 14px;
        display: grid;
        place-items: center;
        background: rgba(12, 10, 24, 0.92);
        border: 1px solid rgba(129, 74, 200, 0.38);
        box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.05);
      }

      .contact-icon span {
        width: 22px;
        height: 22px;
        background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath fill='%23fdfcff' d='M19 4H5a2 2 0 0 0-2 2v12c0 1.1.9 2 2 2h14c1.1 0 2-.9 2-2V6a2 2 0 0 0-2-2zm-.4 1.6L12 11.2 5.4 5.6h13.2zM19 18H5V7.4l6.6 5.6a1 1 0 0 0 1.3 0L19 7.4V18z'/%3E%3C/svg%3E")
          center/contain no-repeat;
        opacity: 0.85;
      }

      .contact-icon.phone span {
        background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath fill='%23fdfcff' d='M6.62 10.79a15.464 15.464 0 0 0 6.59 6.59l2.2-2.2a1 1 0 0 1 1.01-.24c1.12.37 2.33.57 3.58.57.55 0 1 .45 1 1V21a1 1 0 0 1-1 1C10.52 22 2 13.48 2 3a1 1 0 0 1 1-1h3.5a1 1 0 0 1 1 1c0 1.25.2 2.46.57 3.59a1 1 0 0 1-.25 1.01l-2.2 2.19z'/%3E%3C/svg%3E")
          center/contain no-repeat;
      }

      .contact-summary h3 {
        font-size: 1rem;
      }

      .contact-summary a {
        color: rgba(255, 255, 255, 0.78);
        font-size: 0.9rem;
      }

      .contact-phones {
        display: grid;
        gap: 6px;
      }

      .contact-form {
        background: rgba(8, 10, 18, 0.92);
        border-radius: var(--radius-lg);
        border: 1px solid rgba(129, 74, 200, 0.26);
        padding: clamp(22px, 4vw, 30px);
        display: grid;
        gap: 14px;
        box-shadow: var(--shadow-soft);
        text-align: left;
      }

      .form-row {
        display: grid;
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: var(--gap-sm);
      }

      .form-field {
        display: grid;
        gap: 8px;
      }

      .form-field span {
        font-size: 0.85rem;
        font-weight: 600;
        color: rgba(255, 255, 255, 0.82);
      }

      .form-field input,
      .form-field textarea {
        width: 100%;
        background: rgba(10, 12, 22, 0.86);
        border: 1px solid rgba(129, 74, 200, 0.28);
        border-radius: var(--radius-md);
        padding: 12px 14px;
        color: rgba(255, 255, 255, 0.88);
        font-size: 0.9rem;
        transition: border-color 0.3s ease, box-shadow 0.3s ease;
      }

      .form-field input::placeholder,
      .form-field textarea::placeholder {
        color: rgba(255, 255, 255, 0.46);
      }

      .form-field input:focus,
      .form-field textarea:focus {
        outline: none;
        border-color: rgba(129, 74, 200, 0.65);
        box-shadow: 0 0 0 3px rgba(129, 74, 200, 0.2);
      }

      .contact-form .btn.solid {
        width: 100%;
        margin-top: 4px;
        padding: 12px;
        font-size: 0.95rem;
      }

      /* Clients page */
      .case-hero {
        display: grid;
        grid-template-columns: minmax(0, 1.1fr) minmax(0, 1fr);
        gap: clamp(24px, 5vw, 40px);
        padding: calc(var(--gap-lg) + 10px) clamp(24px, 6vw, 64px) var(--gap-md);
        align-items: center;
      }

      .case-hero-media {
        position: relative;
        min-height: 320px;
        display: grid;
        place-items: center;
        margin: 0;
      }

      .case-hero-media--borderless {
        border: none;
        border-radius: 0;
        background: none;
      }

      .case-hero-placeholder {
        padding: 32px;
        text-transform: uppercase;
        letter-spacing: 0.14em;
        font-size: 0.82rem;
        color: rgba(255, 255, 255, 0.6);
        background: radial-gradient(circle at top left, rgba(129, 74, 200, 0.32), transparent 68%);
        width: 100%;
        height: 100%;
        display: grid;
        place-items: center;
      }

      .case-hero-media--image img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        display: block;
      }

      .case-hero-content {
        display: grid;
        gap: 8px;
        align-content: start;
      }

      .case-hero-tag {
        display: inline-flex;
        align-items: center;
        padding: 6px 16px;
        border-radius: 22px;
        border: 1px solid rgba(255, 255, 255, 0.22);
        background: rgba(12, 10, 24, 0.82);
        font-size: 0.72rem;
        letter-spacing: 0.14em;
        text-transform: uppercase;
        justify-self: start;
      }

      .case-hero-tag--boxed {
        border-radius: 12px;
        padding: 6px 14px;
        letter-spacing: 0.1em;
      }

      .case-hero h1 {
        font-size: clamp(2.2rem, 2.5vw + 1rem, 2.8rem);
      }

      .case-hero p {
        color: rgba(255, 255, 255, 0.78);
        max-width: 540px;
        line-height: 1.65;
      }

      .case-hero-actions {
        display: flex;
        flex-wrap: wrap;
        gap: 12px;
      }

      .case-link {
        display: inline-flex;
        align-items: center;
        gap: 10px;
        padding: 10px 18px;
        border-radius: var(--radius-pill);
        border: 1px solid rgba(129, 74, 200, 0.45);
        background: rgba(129, 74, 200, 0.22);
        color: rgba(255, 255, 255, 0.92);
        font-weight: 600;
        transition: transform 0.3s ease, box-shadow 0.3s ease;
      }

      .case-link::after {
        content: "";
        width: 14px;
        height: 14px;
        background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='none' stroke='%23fdfcff' stroke-width='1.6' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M5 12h14M12 5l7 7-7 7'/%3E%3C/svg%3E")
          center/contain no-repeat;
        opacity: 0.9;
      }

      .case-link--plain::after {
        display: none;
      }

      .case-link--square {
        border-radius: var(--radius-md);
      }

      .case-link:hover {
        transform: translateY(-2px);
        box-shadow: 0 18px 36px rgba(129, 74, 200, 0.32);
      }

      .case-body {
        padding: var(--gap-sm) 0 calc(var(--gap-md) + 20px);
      }

      .case-detail {
        display: grid;
        grid-template-columns: minmax(0, 1.6fr) minmax(0, 0.9fr);
        gap: clamp(16px, 3.6vw, 32px);
        align-items: flex-start;
      }

      .case-detail article {
        display: grid;
        gap: 12px;
      }

      .case-detail article p {
        color: rgba(255, 255, 255, 0.82);
        line-height: 1.7;
        font-size: 1.10rem;
      }

      .case-detail article h2 {
        margin: 0;
        font-size: clamp(2.1rem, 2.4vw + 1rem, 2.5rem);
      }

      .case-detail article ul {
        padding-left: 20px;
        color: rgba(255, 255, 255, 0.72);
        display: grid;
        gap: 8px;
        font-size: 1.10rem;
        line-height: 1.6;
      }

      .case-detail article li {
        list-style: disc;
        margin: 0;
      }

      .case-summary-card {
        background: rgba(8, 10, 18, 0.92);
        border-radius: var(--radius-lg);
        border: 1px solid rgba(129, 74, 200, 0.26);
        padding: clamp(24px, 4vw, 32px);
        display: grid;
        gap: 16px;
        box-shadow: var(--shadow-soft);
      }

      .case-summary-card h3 {
        font-size: 1.08rem;
      }

      .case-summary-card dl {
        display: grid;
        gap: 14px;
      }

      .case-summary-card dt {
        font-size: 0.85rem;
        letter-spacing: 0.14em;
        text-transform: uppercase;
        color: rgba(255, 255, 255, 0.6);
      }

      .case-summary-card dd {
        margin: 4px 0 0;
        color: rgba(255, 255, 255, 0.85);
      }

      .case-highlight-grid {
        margin-top: clamp(32px, 5vw, 48px);
        display: grid;
        gap: var(--gap-sm);
        grid-template-columns: repeat(3, minmax(0, 1fr));
      }

      .case-highlight-card {
        background: rgba(8, 8, 18, 0.88);
        border-radius: var(--radius-lg);
        border: 1px solid rgba(129, 74, 200, 0.22);
        padding: clamp(20px, 3vw, 28px);
        display: grid;
        gap: 10px;
      }

      .case-highlight-card h3 {
        font-size: 1.08rem;
      }

      .case-highlight-card p {
        color: rgba(255, 255, 255, 0.8);
      }

      .case-quote {
        margin: clamp(36px, 6vw, 56px) 0;
        background: linear-gradient(135deg, rgba(129, 74, 200, 0.24) 0%, rgba(12, 10, 24, 0.9) 70%);
        border-radius: var(--radius-lg);
        border: 1px solid rgba(129, 74, 200, 0.28);
        padding: clamp(28px, 6vw, 40px);
        font-size: 1.2rem;
        color: rgba(255, 255, 255, 0.9);
        position: relative;
      }

      .case-quote cite {
        display: block;
        margin-top: 16px;
        font-size: 0.9rem;
        letter-spacing: 0.12em;
        text-transform: uppercase;
        color: rgba(255, 255, 255, 0.68);
      }

      .case-gallery {
        display: grid;
        gap: 18px;
        grid-template-columns: repeat(2, minmax(0, 1fr));
      }

      .case-gallery-item {
        border-radius: var(--radius-lg);
        border: 1px solid rgba(129, 74, 200, 0.22);
        overflow: hidden;
        background: rgba(10, 12, 24, 0.92);
        min-height: 180px;
        display: grid;
        place-items: center;
      }

      .case-gallery-placeholder {
        width: 100%;
        height: 100%;
        display: grid;
        place-items: center;
        text-transform: uppercase;
        letter-spacing: 0.1em;
        font-size: 0.78rem;
        color: rgba(255, 255, 255, 0.58);
        background: radial-gradient(circle at top, rgba(129, 74, 200, 0.26), rgba(12, 10, 24, 0.92));
        padding: 24px;
        text-align: center;
      }

      .other-cases {
        padding: var(--gap-lg) 0;
      }

      .other-cases-heading {
        display: flex;
        justify-content: space-between;
        align-items: center;
        gap: var(--gap-sm);
        margin-bottom: var(--gap-md);
        flex-wrap: wrap;
      }

      .other-cases-heading h2 {
        font-size: clamp(2rem, 2.6vw + 1rem, 2.8rem);
      }

      .other-cases-grid {
        display: grid;
        gap: var(--gap-sm);
        grid-template-columns: repeat(2, minmax(0, 1fr));
      }

      .case-mini-card {
        text-decoration: none;
        color: inherit;
        display: grid;
        grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.6fr);
        gap: var(--gap-xs);
        border-radius: var(--radius-lg);
        border: 1px solid rgba(129, 74, 200, 0.22);
        background: rgba(8, 10, 18, 0.9);
        overflow: hidden;
      }

      .case-mini-media {
        min-height: 180px;
        border-right: 1px solid rgba(129, 74, 200, 0.18);
      }

      .case-mini-media .case-gallery-placeholder {
        border-radius: 0;
      }

      .case-mini-content {
        padding: clamp(20px, 3vw, 28px);
        display: grid;
        gap: 12px;
      }

      .case-mini-content h3 {
        font-size: 1.3rem;
      }

      .case-mini-content p {
        color: rgba(255, 255, 255, 0.78);
      }

      .case-cta {
        padding: 24px 0 calc(var(--gap-md) + 20px);
      }

      .case-cta-content {
        padding: 0;
        display: grid;
        gap: 12px;
        text-align: center;
        justify-items: center;
      }

      .case-cta-content h2 {
        font-size: clamp(2rem, 2.4vw + 1rem, 2.6rem);
        margin: 0;
      }

      .case-cta-content p {
        color: rgba(255, 255, 255, 0.85);
        font-size: 1rem;
        margin: 0;
      }

      .case-cta-actions {
        display: flex;
        justify-content: center;
      }

      /* Process section matching service formatting */
      .process-intro {
        display: grid;
        gap: 20px;
        justify-items: center;
        text-align: center;
        max-width: 720px;
        margin: 0 auto var(--gap-lg);
      }

      .process-label {
        display: inline-flex;
        align-items: center;
        padding: 6px 18px;
        border-radius: 12px;
        border: 1px solid rgba(255, 255, 255, 0.16);
        background: rgba(12, 10, 22, 0.78);
        text-transform: uppercase;
        letter-spacing: 0.2em;
        font-size: 0.7rem;
        font-weight: 600;
        color: rgba(255, 255, 255, 0.82);
      }

      .process-intro h2 {
        font-size: clamp(2.2rem, 2.8vw + 1rem, 3rem);
      }

      .process-intro p {
        max-width: 600px;
        color: rgba(255, 255, 255, 0.72);
        font-size: 0.98rem;
      }

      .process-tabs {
        display: flex;
        justify-content: center;
        gap: 16px;
        margin-bottom: var(--gap-md);
      }

      .process-tab {
        padding: 10px 28px;
        border-radius: 14px;
        border: 1px solid rgba(129, 74, 200, 0.18);
        background: rgba(8, 12, 22, 0.85);
        font-size: 0.8rem;
        letter-spacing: 0.18em;
        text-transform: uppercase;
        color: rgba(255, 255, 255, 0.55);
        cursor: pointer;
        transition: background 0.3s ease, color 0.3s ease, border-color 0.3s ease;
      }

      .process-tab.active {
        border-color: rgba(129, 74, 200, 0.6);
        background: rgba(129, 74, 200, 0.24);
        color: rgba(255, 255, 255, 0.92);
      }

      .process-stage {
        display: none;
        grid-template-columns: minmax(0, 1fr) minmax(0, 1.2fr);
        gap: clamp(24px, 6vw, 72px);
        align-items: center;
        background: linear-gradient(160deg, rgba(12, 6, 22, 0.9) 0%, rgba(8, 12, 26, 0.92) 70%);
        border: 1px solid rgba(129, 74, 200, 0.28);
        border-radius: 28px;
        padding: clamp(28px, 5vw, 48px);
        margin-bottom: var(--gap-lg);
      }

      .process-stage.active {
        display: grid;
      }

      .process-visual {
        display: flex;
        justify-content: center;
      }

      .process-visual img {
        width: min(460px, 100%);
        height: auto;
        border-radius: 22px;
        display: block;
      }

      .visual-placeholder {
        width: min(360px, 100%);
        height: 220px;
        border-radius: 18px;
        border: 1px dashed rgba(129, 74, 200, 0.4);
        background: rgba(4, 6, 14, 0.6);
        display: flex;
        align-items: center;
        justify-content: center;
        letter-spacing: 0.12em;
        text-transform: uppercase;
        font-size: 0.75rem;
        color: rgba(255, 255, 255, 0.4);
        overflow: hidden;
        background-size: cover;
        background-position: center;
      }

      .visual-step1 {
        background-image: url("1.png");
        border-style: solid;
      }

      .visual-step2 {
        background-image: url("2.png");
        border-style: solid;
      }

      .visual-step3 {
        background-image: url("3 .png");
        border-style: solid;
      }

      .process-details {
        display: grid;
        gap: 16px;
      }

      .step-number {
        font-size: 0.95rem;
        letter-spacing: 0.28em;
        text-transform: uppercase;
        color: rgba(129, 74, 200, 0.6);
      }

      .process-details h3 {
        font-size: clamp(1.8rem, 2vw + 1rem, 2.3rem);
      }

      .process-details p {
        color: rgba(255, 255, 255, 0.75);
        line-height: 1.65;
      }

      .process-tags {
        display: flex;
        flex-wrap: wrap;
        gap: 10px;
      }

      .process-tags span {
        display: inline-flex;
        align-items: center;
        justify-content: center;
        min-height: 36px;
        padding: 0 18px;
        border-radius: 12px;
        border: 1px solid rgba(129, 74, 200, 0.28);
        background: rgba(129, 74, 200, 0.18);
        font-size: 0.82rem;
        color: rgba(255, 255, 255, 0.88);
      }

      /* Pricing styles removed because the pricing section has been retired */

      /* Testimonials slider-like grid */
      .testimonial-grid {
        margin-top: var(--gap-md);
        display: grid;
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: var(--gap-md);
      }

      .testimonial-grid article {
        background: linear-gradient(150deg, rgba(129, 74, 200, 0.14) 0%, rgba(18, 16, 30, 0.95) 70%);
        border-radius: var(--radius-lg);
        border: 1px solid rgba(129, 74, 200, 0.28);
        padding: 32px;
        display: grid;
        gap: 16px;
      }

      .testimonial-grid strong {
        color: var(--accent);
        font-size: 1rem;
      }

      /* FAQ styles removed because the FAQs section has been retired */

      /* Call-to-action footer section */
      .cta {
        text-align: center;
        padding: var(--gap-lg) 0;
        position: relative;
        overflow: hidden;
      }

      .cta::before {
        content: "";
        position: absolute;
        inset: -40% -25%;
        background: linear-gradient(120deg, rgba(129, 74, 200, 0.06) 0%, rgba(255, 255, 255, 0.18) 45%, rgba(129, 74, 200, 0.06) 100%);
        transform: translateX(-60%) rotate(12deg);
        animation: ctaSheen 14s ease-in-out infinite;
        opacity: 0;
        pointer-events: none;
      }

      .cta .container {
        position: relative;
        z-index: 1;
      }

      .cta h2 {
        font-size: 2.6rem;
        margin-bottom: 12px;
      }

      .cta p {
        margin-bottom: 28px;
        color: var(--text-primary);
      }

      .cta-buttons {
        display: flex;
        flex-wrap: wrap;
        justify-content: center;
        gap: 16px;
      }

      .cta .btn {
        transition:
          transform 0.35s cubic-bezier(0.16, 1, 0.3, 1),
          box-shadow 0.35s cubic-bezier(0.16, 1, 0.3, 1);
      }

      .cta .btn:hover,
      .cta .btn:focus-visible {
        transform: translateY(-3px) scale(1.02);
        box-shadow: 0 16px 35px rgba(129, 74, 200, 0.35);
      }

      /* Footer with multi-column layout */
      .footer {
        /* Trimmed vertical padding so the footer hugs preceding content on all screens */
        padding: clamp(16px, 3vw, 24px) 0 clamp(18px, 4vw, 28px);
        /* Updated footer background to mirror the site's cosmic gradient */
        background: linear-gradient(160deg, rgba(8, 12, 22, 0.96) 0%, rgba(24, 12, 36, 0.94) 55%, rgba(42, 16, 68, 0.92) 100%);
        border-top: 1px solid rgba(129, 74, 200, 0.32);
      }

      .footer-top {
        display: grid;
        grid-template-columns: 1.4fr 2fr;
        gap: var(--gap-sm);
        /* Tightened the divider spacing so content stays compact yet breathable */
        padding-bottom: clamp(18px, 2.4vw, 42px);
        /* Softened the divider to pick up the accent glow */
        border-bottom: 1px solid rgba(129, 74, 200, 0.28);
      }

      .footer .logo {
        /* Sized the footer logo image so it aligns with the header branding */
        display: block;
        height: 40px;
        width: auto;
        margin-bottom: 10px;
      }

      .footer-meta {
        display: grid;
        gap: 6px;
        align-items: start;
      }

      .footer-links-nav {
        display: flex;
        flex-wrap: wrap;
        align-items: center;
        gap: 6px 12px;
      }

      .footer-links-nav a {
        color: rgba(245, 247, 255, 0.72);
        font-size: 0.95rem;
        position: relative;
      }

      .footer-links-nav a + a::before {
        content: "|";
        color: rgba(245, 247, 255, 0.38);
        margin-right: 12px;
      }

      .footer-contact {
        display: grid;
        gap: 6px;
      }

      .contact-phones {
        display: flex;
        flex-wrap: wrap;
        gap: 6px 12px;
        align-items: center;
      }

      .contact-phones a {
        color: rgba(245, 247, 255, 0.72);
        font-size: 0.95rem;
      }

      .contact-phones a + a::before {
        content: "•";
        margin-right: 8px;
        color: rgba(245, 247, 255, 0.4);
      }

      .footer-bottom {
        display: flex;
        justify-content: space-between;
        align-items: center;
        padding-top: 28px;
      }

      .credits {
        display: flex;
        gap: 20px;
        flex-wrap: wrap;
        font-size: 0.85rem;
        color: rgba(245, 247, 255, 0.56);
      }

      @keyframes starDrift {
        /* Gentle drift parallax to keep the starry background alive */
        0% {
          background-position: 0 0, 50px 70px, -80px 20px;
        }

        100% {
          background-position: 240px 420px, 150px 340px, 40px 260px;
        }
      }

      /* Responsive adjustments to keep layout faithful on smaller screens */
      @media (max-width: 1080px) {
        .site-header .container {
          /* Switch to a flexible row that can wrap beneath the logo */
          display: flex;
          flex-wrap: wrap;
          align-items: center;
          gap: 16px;
        }

        .header-top {
          display: flex;
          align-items: center;
          gap: 16px;
        }

        .main-nav {
          flex: 1 1 auto;
          display: flex;
          justify-content: flex-end;
          flex-wrap: wrap;
          gap: 16px;
          margin-left: 0;
        }

        .actions {
          margin-left: auto;
        }

        .hero .container {
          /* Stack hero content vertically for tablet widths */
          grid-template-columns: 1fr;
          gap: 36px;
          justify-items: center;
          text-align: center;
        }

        .hero-content h1,
        .hero-content p,
        .hero-content .trust-signal {
          text-align: center;
        }

        .hero-content p {
          margin: 0 auto;
        }

        .hero-content .cta-group {
          justify-content: center;
          gap: 10px;
        }

        .hero-content .cta-group .btn {
          flex: 1 1 0;
          min-width: 0;
        }

        .hero-content .trust-signal {
          text-align: center;
          margin-top: 8px;
        }

        .hero-visual {
          display: flex;
          order: -1;
          justify-content: center;
        }

        .hero-visual img {
          width: min(220px, 60vw);
        }

        .hero-content {
          justify-items: center;
          gap: 14px;
        }

        .hero-content h1 {
          margin: 6px 0;
        }

        .hero-content p {
          margin: 0 auto;
        }

        .hero-content .cta-group {
          flex-direction: column;
          align-items: stretch;
        }

        .services-grid,
        .process-grid,
        .benefit-grid,
        .pricing-grid,
        .testimonial-grid,
        .faq-grid {
          grid-template-columns: repeat(2, minmax(0, 1fr));
        }

        .process-intro {
          gap: 16px;
        }

        .process-intro h2 {
          font-size: 2.2rem;
        }

        .process-tags {
          gap: 10px;
        }

        .process-tags span {
          min-height: 32px;
          padding: 0 14px;
        }
      }

      @media (max-width: 680px) {
         .hero {
           padding-top: 170px;
           padding-bottom: 90px;
         }
 
         .hero .container {
           gap: 28px;
         }
 
         .hero-content h1 {
           font-size: clamp(2.2rem, 5vw + 0.6rem, 2.6rem);
         }
 
         .hero-content p {
           font-size: 0.96rem;
           line-height: 1.5;
         }
 
         .hero-content .cta-group {
           gap: 12px;
         }
 
         .hero-visual img {
          width: min(130px, 42vw);
         }

         /* Tighten the process tabs so they look lighter on tablets */
         .process-tabs {
           gap: 12px;
         }

         .process-tab {
           padding: 8px 20px;
           border-radius: 12px;
           font-size: 0.72rem;
           letter-spacing: 0.14em;
         }

        .newsletter {
          gap: 10px;
        }

        .input-group {
          flex-direction: column;
          gap: 10px;
          padding: 12px;
        }

        .input-group input {
          padding: 10px 12px;
        }

        .input-group button {
          width: 100%;
        }
       }
 
       @media (max-width: 520px) {
         .container {
           width: calc(100% - 32px);
         }
 
         .hero-visual img {
          width: min(100px, 44vw);
         }
 
         .hero-content .cta-group {
           display: grid;
           grid-template-columns: repeat(2, minmax(0, 1fr));
           gap: 10px;
           width: min(320px, 100%);
           margin: 0 auto;
         }

         .hero-content .cta-group .btn {
           width: 100%;
           justify-content: center;
         }
 
         .hero-content .trust-signal {
           text-align: center;
           margin-top: 8px;
         }

         /* Compact the tabs even more on narrow phones */
         .process-tabs {
           gap: 10px;
         }

         .process-tab {
           padding: 7px 16px;
           font-size: 0.68rem;
           letter-spacing: 0.12em;
         }

        .footer {
          /* Preserve the slimmer padding on tablet to stop extra negative space */
          padding: clamp(16px, 3vw, 24px) 0 clamp(18px, 4vw, 28px);
        }

        .footer-top {
          gap: calc(var(--gap-sm) - 10px);
        }

        .footer-bottom {
          flex-direction: column;
          gap: 2px;
          padding-top: 4px;
          text-align: center;
        }

        .credits {
          justify-content: center;
        }

        .footer-columns--compact {
          /* Keep compact variant breathing room minimal for stacked layouts */
          gap: 10px;
        }

        .footer-links-nav {
          justify-content: center;
          gap: 6px 10px;
        }

        .contact-phones {
          flex-direction: column;
          align-items: center;
          gap: 6px;
        }

        .contact-phones a + a::before {
          content: "";
          margin-right: 0;
        }
       }

      @media (max-width: 640px) {
        /* Footer stacking adjustments keep navigation and contact info readable on phones */
        .footer-top {
          display: flex;
          flex-direction: column;
          align-items: flex-start;
          text-align: left;
          gap: 18px;
          padding-bottom: 18px;
        }

        .footer .logo {
          /* Align to the left to mirror stacked content */
          margin-inline: 0;
        }

        .footer-meta {
          justify-items: flex-start;
          text-align: left;
        }

        .footer-links-nav {
          justify-content: flex-start;
          gap: 6px 8px;
          flex-wrap: wrap;
        }

        .footer-links-nav a + a::before {
          /* Show separators only when the previous link shares the same line */
          display: inline;
          margin: 0 8px 0 0;
        }

        .contact-phones {
          flex-direction: column;
          align-items: flex-start;
          gap: 4px;
        }

        .contact-phones a + a::before {
          display: none;
        }

        .footer-bottom {
          text-align: left;
          gap: 6px;
        }

        .credits {
          justify-content: flex-start;
          text-align: left;
          gap: 6px;
        }
      }

    /* Custom cursor styling engages desktop visitors with a subtle interactive glow */
      @media (max-width: 768px) {
        .site-header .container {
          /* Default compact row: logo left, toggle right */
          display: flex;
          align-items: center;
          justify-content: space-between;
          gap: 12px;
          padding-inline: 20px;
          width: 100%;
        }

        .header-top {
          width: 100%;
          display: flex;
          align-items: center;
          justify-content: space-between;
        }

        .branding .logo {
          height: 32px;
        }

        .nav-toggle {
          display: flex;
        }

        .main-nav {
          display: none;
          flex-direction: column;
          gap: 16px;
          align-items: flex-start;
          width: 100%;
        }

        .actions {
          display: none;
          width: 100%;
        }

        .site-header.nav-open {
          max-height: 100vh;
          padding: 28px 20px;
          background: linear-gradient(180deg, rgba(8, 6, 12, 0.98) 0%, rgba(16, 12, 26, 0.96) 100%);
          overflow-y: auto;
        }

        .site-header.nav-open .container {
          flex-direction: column;
          align-items: flex-start;
          gap: 12px;
          width: 100%;
          position: relative;
        }

        .site-header.nav-open .header-top {
          width: 100%;
          display: flex;
          align-items: center;
          justify-content: space-between;
          gap: 12px;
        }

        .site-header.nav-open .nav-toggle {
          margin: 0;
        }

        .site-header.nav-open .main-nav {
          display: flex;
          background: transparent;
          padding: 0;
          align-items: flex-start;
          width: 100%;
          gap: 18px;
          margin-top: 0;
        }

        .site-header.nav-open .actions {
          display: flex;
          justify-content: flex-start;
          width: 100%;
          align-items: stretch;
          margin-top: 4px;
        }

        .hero {
          padding-top: 160px;
        }

        .hero-content h1 {
          font-size: clamp(2.2rem, 6vw + 1rem, 3rem);
        }

        .hero-content p {
          font-size: 1rem;
        }

        section {
          padding: var(--gap-md) 0;
        }

        .services-grid,
        .process-grid,
        .benefit-grid,
        .pricing-grid,
        .testimonial-grid,
        .faq-grid,
        .footer-columns {
          grid-template-columns: 1fr;
        }

        .footer-top {
          grid-template-columns: 1fr;
        }

        .cta h2 {
          font-size: 2.2rem;
        }

        .service-row {
          flex-direction: column;
          gap: var(--gap-sm);
        }

        .service-row:nth-child(even) {
          flex-direction: column;
        }

        .service-row::after {
          display: none;
        }

        .service-details h3 {
          font-size: 1.8rem;
        }

        .feature-tags {
          justify-content: flex-start;
          max-width: 100%;
        }

        .feature-tags span {
          min-height: 34px;
          padding: 0 16px;
          border-radius: 10px;
          font-size: 0.76rem;
        }

        .main-nav a {
          font-size: 0.9rem;
          width: 100%;
          text-align: left;
        }

        .btn {
          width: 100%;
        }

        .hero-content .cta-group {
          flex-direction: column;
          align-items: stretch;
        }

        .hero-content .trust-signal {
          text-align: center;
          margin-top: 8px;
        }

        .hero {
          padding-top: 150px;
        }

        .assistant-status,
        .status-row {
          flex-direction: column;
          align-items: flex-start;
        }

        .input-group {
          flex-direction: column;
          gap: 12px;
          padding: 16px;
        }

        .input-group input {
          padding: 0;
        }
      }

      .process-stage {
         display: none;
         grid-template-columns: minmax(0, 1fr) minmax(0, 1.2fr);
         gap: clamp(24px, 6vw, 72px);
         align-items: center;
         background: linear-gradient(160deg, rgba(12, 6, 22, 0.9) 0%, rgba(8, 12, 26, 0.92) 70%);
         border: 1px solid rgba(129, 74, 200, 0.28);
         border-radius: 28px;
         padding: clamp(28px, 5vw, 48px);
         margin-bottom: var(--gap-lg);
       }

       @media (max-width: 680px) {
         .process-stage {
           grid-template-columns: 1fr;
           gap: 24px;
           text-align: center;
         }

         .process-stage .process-details {
           order: -1;
           align-items: center;
           text-align: center;
         }

         .process-tags span {
           min-height: 32px;
           padding: 0 14px;
         }
         
         .process-visual img {
           width: min(360px, 100%);
         }
       }

       @media (max-width: 520px) {
         .process-tags span {
           min-height: 32px;
           padding: 0 14px;
         }

         .process-visual img {
           width: min(300px, 100%);
         }
       }

      @media (max-width: 1080px) {
        .about-stats {
          grid-template-columns: repeat(2, minmax(0, 1fr));
        }

        .about-values-grid,
        .about-compare,
        .team-grid,
        .team-grid-compact {
          grid-template-columns: repeat(2, minmax(0, 1fr));
        }
      }

      @media (max-width: 768px) {
        .about-hero {
          padding: calc(var(--gap-lg) + 60px) 0 var(--gap-sm);
        }

        .about-stats,
        .about-values-grid,
        .about-compare,
        .team-grid,
        .team-grid-compact,
        .case-detail,
        .case-meta {
          grid-template-columns: 1fr;
        }

        .team-grid article .team-avatar,
        .team-grid article .team-photo {
          height: 260px;
        }

        .faq-list {
          gap: 10px;
        }

        .contact-form {
          padding: clamp(24px, 6vw, 32px);
        }

        .case-layout {
          grid-template-columns: 1fr;
          padding: clamp(24px, 7vw, 36px);
        }

        .case-hero {
          grid-template-columns: 1fr;
        }

        .other-cases-grid {
          grid-template-columns: 1fr;
        }

        .case-mini-card {
          grid-template-columns: 1fr;
        }

        .case-mini-media {
          border-right: none;
          border-bottom: 1px solid rgba(129, 74, 200, 0.18);
        }
      }

      @media (max-width: 520px) {
        .about-hero-content h1 {
          font-size: clamp(2.2rem, 6vw + 1rem, 2.6rem);
        }

        .compare-card ul {
          padding-left: 16px;
        }

        .contact-summary {
          grid-template-columns: 1fr;
        }

        .form-row {
          grid-template-columns: 1fr;
        }

        .contact-hero {
          padding: calc(var(--gap-lg) + 40px) 0 var(--gap-md);
        }

        .case-highlight-grid,
        .case-gallery {
          grid-template-columns: 1fr;
        }

        .case-results {
          padding-left: 16px;
        }

        .case-cta-content {
          flex-direction: column;
          align-items: flex-start;
        }

        .case-hero-actions,
        .case-cta-actions {
          width: 100%;
        }

        .case-link {
          width: 100%;
          justify-content: center;
        }
      }
    