  :root {
      --bg: #F7F7FA;
      --surface: #FFFFFF;
      --ink: #14121B;
      --indigo: #4228C9;
      --indigo-deep: #2A1A8A;
      --indigo-tint: #ECE8FB;
      --muted: #68656F;
      --line: #E7E5EE;
      --radius: 20px;
  }

  * {
      box-sizing: border-box;
      margin: 0;
      padding: 0;
  }

  html {
      scroll-behavior: smooth;
  }

  body {
      background: var(--bg);
      color: var(--ink);
      font-family: 'Inter', sans-serif;
      line-height: 1.65;
      overflow-x: hidden;
      -webkit-font-smoothing: antialiased;
  }

  @media (prefers-reduced-motion: reduce) {
      * {
          animation-duration: 0.01ms !important;
          animation-iteration-count: 1 !important;
          scroll-behavior: auto !important;
      }
  }

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

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

  .wrap {
      max-width: 1180px;
      margin: 0 auto;
      padding: 0 24px;
  }

  ::selection {
      background: var(--indigo);
      color: #fff;
  }

  /* FONTS: Montserrat headings, Inter body */
  h1,
  h2,
  h3 {
      font-family: 'Montserrat', sans-serif;
      font-weight: 700;
      letter-spacing: -0.01em;
      line-height: 1.08;
      color: var(--ink);
  }

  h2 {
      font-size: 42px;
  }

  h3 {
      font-size: 21px;
  }

  p {
      color: var(--muted);
      font-family: 'Inter', sans-serif;
  }

  .eyebrow {
      font-family: 'Montserrat', sans-serif;
      font-weight: 700;
      font-size: 12px;
      letter-spacing: 0.14em;
      text-transform: uppercase;
      color: var(--indigo);
      display: flex;
      align-items: center;
      gap: 10px;
      margin-bottom: 16px;
  }

  .eyebrow::before {
      content: '';
      width: 8px;
      height: 8px;
      border-radius: 50%;
      background: var(--indigo);
      display: inline-block;
  }



  .btn-ghost {
      border-color: rgba(255, 255, 255, 0.3);
      color: #fff;
      background: transparent;
  }

  .btn-ghost:hover {
      border-color: #4228C9;
      background: rgba(255, 255, 255, 0.08);
      transform: translateY(-2px);
  }

  .btn-ghost-dark {
      border-color: var(--line);
      color: var(--ink);
      background: transparent;
  }

  .btn-ghost-dark:hover {
      border-color: var(--indigo);
      color: var(--indigo);
      transform: translateY(-2px);
  }

  .btn-white {
      background: #fff;
      color: var(--indigo);
  }

  .btn-white:hover {
      background: var(--indigo-tint);
      transform: translateY(-2px);
  }

  /* NAV */
  header {
      position: relative;

  }


  nav {
      display: flex;
      align-items: center;
      justify-content: space-between;
      padding: 18px 24px;
      max-width: 1180px;
      margin: 0 auto;
  }



  .nav-links {
      display: flex;
      gap: 34px;
      font-family: 'Montserrat', sans-serif;
      font-weight: 600;
      font-size: 13.5px;
  }

  .nav-links a {
      color: var(--muted);
      transition: color .15s ease;
  }

  .nav-links a:hover {
      color: var(--ink);
  }

  .menu-toggle {
      display: none;
      background: none;
      border: none;
      color: var(--ink);
      font-size: 22px;
      cursor: pointer;
  }

  /* ══════════════════════════════════
     HERO — dark banner, left+right split
  ══════════════════════════════════ */
  .hero {
      position: relative;
      overflow: hidden;
      background: white;
      padding: 60px 0px;
  }

  /* Animated grid */
  .hero-grid-bg {
      position: absolute;
      inset: 0;
      z-index: 0;
      background-image:
          linear-gradient(rgba(66, 40, 201, 0.12) 1px, transparent 1px),
          linear-gradient(90deg, rgba(66, 40, 201, 0.12) 1px, transparent 1px);
      background-size: 48px 48px;
      animation: grid-drift 22s linear infinite;
  }

  @keyframes grid-drift {
      0% {
          background-position: 0 0;
      }

      100% {
          background-position: 48px 48px;
      }
  }

  /* Glow orbs */
  .hero-orb-1 {
      position: absolute;
      top: -120px;
      right: 30%;
      z-index: 0;
      width: 420px;
      height: 420px;
      border-radius: 50%;
      background: radial-gradient(circle at 40% 40%, rgba(66, 40, 201, 0.4) 0%, transparent 65%);
      animation: orb-float 9s ease-in-out infinite;
      pointer-events: none;
  }

  .hero-orb-2 {
      position: absolute;
      bottom: -80px;
      left: 5%;
      z-index: 0;
      width: 280px;
      height: 280px;
      border-radius: 50%;
      background: radial-gradient(circle, rgba(100, 60, 230, 0.18) 0%, transparent 65%);
      animation: orb-float 12s ease-in-out infinite reverse;
      pointer-events: none;
  }

  @keyframes orb-float {

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

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


  @media(max-width:768px) {
      .stat {
          width: 50%;
      }
  }




  @keyframes pulse-dot {

      0%,
      100% {
          opacity: 1;
          transform: scale(1);
      }

      hero 50% {
          opacity: 0.35;
          transform: scale(0.7);
      }
  }

  .hero-content h1 {
      font-size: 60px;
      font-weight: 700;
      color: #14121B;
      margin-bottom: 22px;
      animation: fade-up 0.7s 0.1s ease both;
  }

  .hero-content h1 em {
      font-style: normal;
      color: #7c5ff0;
  }

  .hero-content p.lead {
      font-size: 16.5px;
      color: #68656F;
      margin-bottom: 32px;
      line-height: 1.7;
      animation: fade-up 0.7s 0.2s ease both;
  }

  .hero-actions {
      display: flex;
      gap: 14px;
      flex-wrap: wrap;
      margin-bottom: 52px;
      animation: fade-up 0.7s 0.3s ease both;
  }

  @keyframes fade-up {
      from {
          opacity: 0;
          transform: translateY(26px);
      }

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

  /* Stats inside hero-content */
  .stat-strip {

      border-top: 1px solid rgba(255, 255, 255, 0.1);
      animation: fade-up 0.7s 0.4s ease both;
  }

  .stat {
      border-right: 1px solid rgba(255, 255, 255, 0.1);
  }

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

  .stat-num {
      font-family: 'Montserrat', sans-serif;
      font-weight: 800;
      font-size: 28px;
      color: #7c5ff0;
  }

  .stat-label {
      font-size: 12px;
      color: #68656F;
      margin-top: 3px;
  }

  /* Right: image panel */
  .hero-visual {

      animation: fade-up 0.8s 0.25s ease both;
  }

  .hero-img-wrap {
      border-radius: 24px;
      overflow: hidden;
      border: 1px solid rgba(255, 255, 255, 0.1);
      aspect-ratio: 4/3;
      background: #1a1535;
      position: relative;
  }

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

  /* Placeholder graphic when no image */
  .hero-img-placeholder {
      width: 100%;
      height: 100%;
      display: flex;
      align-items: center;
      justify-content: center;
      background: linear-gradient(135deg, #1a1040 0%, #0f1e3d 100%);
      position: relative;
      overflow: hidden;
  }

  .hero-img-placeholder svg {
      width: 70%;
      height: 70%;
      opacity: 0.18;
  }

  /* floating badge */
  .hero-badge {
      position: absolute;
      bottom: 20px;
      left: 20px;
      background: rgba(13, 10, 31, 0.85);
      backdrop-filter: blur(10px);
      border: 1px solid rgba(124, 95, 240, 0.3);
      border-radius: 14px;
      padding: 12px 18px;
      display: flex;
      align-items: center;
      gap: 10px;
  }

  .hero-badge-dot {
      width: 8px;
      height: 8px;
      border-radius: 50%;
      background: #22c55e;
      flex-shrink: 0;
      animation: live-blink 1.5s ease-in-out infinite;
  }

  @keyframes live-blink {

      0%,
      100% {
          opacity: 1;
      }

      50% {
          opacity: 0.3;
      }
  }

  .hero-badge-text {
      font-family: 'Montserrat', sans-serif;
      font-weight: 700;
      font-size: 12px;
      color: #fff;
  }

  .hero-badge-sub {
      font-size: 11px;
      color: rgba(255, 255, 255, 0.5);
      margin-top: 1px;
  }

  /* ══════════════════════════════════
     SECTIONS — unchanged base
  ══════════════════════════════════ */
  section {
      padding: 100px 0;
      border-bottom: 1px solid var(--line);
  }

  .section-head {
      max-width: 600px;
      margin-bottom: 56px;
  }

  .section-head p {
      font-size: 16px;
  }

  /* ══════════════════════════════════
     ABOUT — animated cards
  ══════════════════════════════════ */
  .about-copy p {
      margin-bottom: 18px;
      font-size: 16px;
  }

  .about-accent-bar {
      width: 48px;
      height: 4px;
      border-radius: 4px;
      background: var(--indigo);
      margin-bottom: 22px;
  }

  .field-list {
      display: flex;
      flex-direction: column;
      gap: 16px;
  }

  .field-item {
      display: flex;
      align-items: flex-start;
      gap: 18px;
      background: #fff;
      border: 1px solid var(--line);
      border-radius: 16px;
      padding: 20px 22px;
      opacity: 0;
      transform: translateX(30px);
      transition: opacity 0.5s ease, transform 0.5s ease, box-shadow .22s ease, border-color .22s ease;
  }

  .field-item.visible {
      opacity: 1;
      transform: translateX(0);
  }

  .field-item:hover {
      transform: translateX(6px);
      box-shadow: 0 8px 32px -8px rgba(66, 40, 201, 0.14);
      border-color: rgba(66, 40, 201, 0.3);
  }

  .field-badge {
      width: 40px;
      height: 40px;
      border-radius: 12px;
      background: var(--indigo-tint);
      color: var(--indigo);
      display: flex;
      align-items: center;
      justify-content: center;
      font-family: 'Montserrat', sans-serif;
      font-weight: 800;
      font-size: 13px;
      flex-shrink: 0;
  }

  .field-item strong {
      font-family: 'Montserrat', sans-serif;
      font-size: 15px;
      font-weight: 700;
      display: block;
      margin-bottom: 3px;
      color: var(--ink);
  }

  .field-item span.sub {
      font-size: 13.5px;
      color: var(--muted);
  }


  .service-card {
      background: var(--surface);
      border: 1px solid var(--line);
      border-radius: var(--radius);
      padding: 32px 28px;
      transition: transform .2s ease, box-shadow .2s ease;
  }

  .service-card:hover {
      transform: translateY(-5px);
      box-shadow: 0 20px 40px -20px rgba(20, 18, 27, 0.12);
  }

  .service-icon {
      width: 44px;
      height: 44px;
      border-radius: 50%;
      background: var(--indigo-tint);
      display: flex;
      align-items: center;
      justify-content: center;
      margin-bottom: 22px;
  }

  .service-icon svg {
      width: 20px;
      height: 20px;
  }

  .service-card h3 {
      margin-bottom: 10px;
  }

  .service-card p {
      font-size: 14.5px;
  }

  /* ══════════════════════════════════
     PROCESS — HORIZONTAL
  ══════════════════════════════════ */
  .process-horizontal {
      display: grid;
      grid-template-columns: repeat(4, 1fr);
      gap: 0;
      position: relative;
  }

  .process-horizontal::before {
      content: '';
      position: absolute;
      top: 27px;
      left: calc(12.5% + 2px);
      right: calc(12.5% + 2px);
      height: 2px;
      background: linear-gradient(90deg, var(--indigo) 0%, #a089f4 50%, var(--indigo) 100%);
      z-index: 0;
      border-radius: 2px;
  }

  .proc-step {
      display: flex;
      flex-direction: column;
      align-items: center;
      text-align: center;
      padding: 0 16px;
      position: relative;
      z-index: 1;
      opacity: 0;
      transform: translateY(22px);
      transition: opacity 0.5s ease, transform 0.5s ease;
  }

  .proc-step.visible {
      opacity: 1;
      transform: translateY(0);
  }

  .proc-step:nth-child(1) {
      transition-delay: 0s;
  }

  .proc-step:nth-child(2) {
      transition-delay: 0.1s;
  }

  .proc-step:nth-child(3) {
      transition-delay: 0.2s;
  }

  .proc-step:nth-child(4) {
      transition-delay: 0.3s;
  }

  .proc-dot {
      width: 56px;
      height: 56px;
      border-radius: 50%;
      background: var(--indigo);
      color: #fff;
      display: flex;
      align-items: center;
      justify-content: center;
      font-family: 'Montserrat', sans-serif;
      font-weight: 800;
      font-size: 15px;
      margin-bottom: 22px;
      box-shadow: 0 0 0 7px var(--indigo-tint), 0 0 0 8px rgba(66, 40, 201, 0.1);
      transition: transform .22s ease, box-shadow .22s ease;
  }

  .proc-step:hover .proc-dot {
      transform: scale(1.1);
      box-shadow: 0 0 0 10px #ddd6f8, 0 0 0 12px rgba(66, 40, 201, 0.08);
  }

  .proc-step h3 {
      font-family: 'Montserrat', sans-serif;
      font-weight: 700;
      font-size: 16px;
      margin-bottom: 10px;
  }

  .proc-step p {
      font-size: 14px;
  }



  .feature-item {
      padding: 8px 4px;
  }

  .feature-icon {
      width: 40px;
      height: 40px;
      border-radius: 12px;
      background: var(--indigo-tint);
      display: flex;
      align-items: center;
      justify-content: center;
      margin-bottom: 18px;
  }

  .feature-icon svg {
      width: 18px;
      height: 18px;
  }

  .feature-item h3 {
      font-size: 18px;
      margin-bottom: 8px;
  }

  .feature-item p {
      font-size: 14.5px;
  }


  .shot {
      border-radius: var(--radius);
      overflow: hidden;
      border: 1px solid var(--line);
      aspect-ratio: 9/16;
      background: var(--surface);
  }

  .shot img {
      width: 100%;
      height: 100%;
      object-fit: cover;
  }


  /* FOOTER — original style */
  /* ══════════════════════════════════
   FOOTER — 3 column layout
══════════════════════════════════ */
  footer {
      padding: 64px 0 30px;
      background: var(--bg);
  }

  .footer-col-title {
      font-family: 'Montserrat', sans-serif;
      font-weight: 700;
      font-size: 15px;
      color: var(--ink);
      margin-bottom: 22px;
      letter-spacing: -0.01em;
  }

  /* Explore links */
  .footer-nav-list {
      list-style: none;
      padding: 0;
      margin: 0;
      display: flex;
      flex-direction: column;
      gap: 12px;
  }

  .footer-nav-list li a {
      font-family: 'Inter', sans-serif;
      font-size: 14.5px;
      color: var(--muted);
      text-decoration: none;
      display: inline-flex;
      align-items: center;
      gap: 6px;
      transition: color .15s ease, gap .15s ease;
  }

  .footer-nav-list li a::before {
      content: '';
      width: 14px;
      height: 1.5px;
      background: var(--indigo);
      border-radius: 2px;
      opacity: 0;
      transition: opacity .15s ease;
      flex-shrink: 0;
  }

  .footer-nav-list li a:hover {
      color: var(--indigo);
      gap: 10px;
  }

  .footer-nav-list li a:hover::before {
      opacity: 1;
  }

  /* Contact info list */
  .footer-contact-list {
      list-style: none;
      padding: 0;
      margin: 0;
      display: flex;
      flex-direction: column;
      gap: 16px;
  }

  .footer-contact-list li {
      display: flex;
      align-items: flex-start;
      gap: 12px;
      font-family: 'Inter', sans-serif;
      font-size: 14.5px;
      color: var(--muted);
      line-height: 1.5;
  }

  .footer-contact-icon {
      width: 34px;
      height: 34px;
      border-radius: 10px;
      background: var(--indigo-tint);
      color: var(--indigo);
      display: flex;
      align-items: center;
      justify-content: center;
      flex-shrink: 0;
      margin-top: 1px;
  }

  .footer-contact-icon svg {
      width: 15px;
      height: 15px;
  }

  .btn {
      display: inline-flex;
      align-items: center;
      gap: 8px;
      font-family: 'Montserrat', sans-serif;
      font-weight: 700;
      font-size: 14px;
      padding: 15px 28px;
      border-radius: 100px;
      border: 3px solid var(--indigo);
      cursor: pointer;
      color: #14121B;
      transition: transform .18s ease, background .18s ease, border-color .18s ease, color .18s ease;
      text-decoration: none;
  }


  /* Bottom bar */
  .footer-bottom {
      display: flex;
      justify-content: space-between;
      padding-top: 26px;
      border-top: 1px solid var(--line);
      font-size: 13.5px;
      color: var(--muted);
      flex-wrap: wrap;
      gap: 10px;
      font-family: 'Inter', sans-serif;
  }

  /* Mobile */
  @media (max-width: 768px) {
      .footer-bottom {
          justify-content: center;
          text-align: center;
      }
  }

  /* RESPONSIVE */
  @media (max-width:860px) {
      .nav-links {
          display: none;
      }

      .menu-toggle {
          display: block;
      }


      .hero-visual {
          display: none;
      }

      .hero-content h1 {
          font-size: 50px;
      }

      h2 {
          font-size: 32px;
      }





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


      .stat {
          border-right: none;
          display: flex;
          align-items: center;
          flex-direction: column;
      }

      .process-horizontal {
          grid-template-columns: 1fr 1fr;
          gap: 32px;
      }

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

  @media (max-width:560px) {





      .hero-content h1 {
          font-size: 50px;
      }

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