﻿:root {
      --dark-purple: #4B00B5;
      --royal-purple: #7B2CFF;
      --lavender-purple: #B66DFF;
      --soft-lavender: #D9A8FF;
      --pink-glow: #F2B3FF;
      --ink: #080b24;
      --muted: #596071;
      --line: #eadfff;
      --panel: #ffffff;
      --mist: #fbf8ff;
      --soft-panel: #fffaff;
      --shadow: 0 18px 44px rgba(75, 0, 181, 0.14);
    }

    * {
      box-sizing: border-box;
      letter-spacing: 0;
    }

    html {
      scroll-behavior: smooth;
    }

    body.mobile-apps-page {
      margin: 0;
      font-family: "Segoe UI", Arial, sans-serif;
      color: var(--ink);
      background: #ffffff;
    }

    body.mobile-apps-page main {
      font-family: "Inter", Arial, sans-serif;
      background:
        linear-gradient(180deg, rgba(242, 179, 255, 0.14), rgba(255, 255, 255, 0) 18rem),
        #ffffff;
    }

    body.mobile-apps-page .hero {
      margin-top: -34px;
    }

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

    button,
    a,
    input {
      font: inherit;
    }

    .site-header {
      position: sticky;
      top: 0;
      z-index: 20;
      background: rgba(255, 255, 255, 0.9);
      border-bottom: 1px solid rgba(217, 168, 255, 0.42);
      backdrop-filter: blur(16px);
    }

    .nav-shell {
      width: min(1240px, calc(100% - 80px));
      min-height: 76px;
      margin: 0 auto;
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 28px;
    }

    .brand {
      display: flex;
      align-items: center;
      gap: 10px;
      min-width: 180px;
    }

    .brand-mark {
      width: 42px;
      height: 42px;
      border-radius: 8px;
      background:
        linear-gradient(135deg, #ffffff 0 24%, transparent 24%),
        linear-gradient(140deg, var(--dark-purple), var(--royal-purple) 48%, var(--soft-lavender));
      box-shadow: inset 9px 0 14px rgba(255, 255, 255, 0.38), 0 12px 24px rgba(123, 44, 255, 0.22);
      position: relative;
      flex: 0 0 auto;
    }

    .brand-mark::after {
      content: "";
      position: absolute;
      width: 18px;
      height: 18px;
      left: 8px;
      bottom: 7px;
      border-radius: 6px 14px 14px 6px;
      background: rgba(255, 255, 255, 0.86);
      mix-blend-mode: screen;
    }

    .brand-text strong {
      display: block;
      color: var(--royal-purple);
      font-size: 1.35rem;
      line-height: 1;
      font-weight: 800;
    }

    .brand-text span {
      display: block;
      margin-top: 2px;
      color: var(--dark-purple);
      font-size: 0.62rem;
      font-weight: 700;
      text-transform: uppercase;
    }
    .site-header .main-nav {
      display: flex;
      align-items: center;
      gap: 30px;
      font-size: 0.88rem;
      font-weight: 800;
    }
    .site-header .main-nav > a,
    .site-header .nav-link {
      position: relative;
      display: inline-flex;
      align-items: center;
      gap: 6px;
      padding: 9px 0;
    }
    .site-header .nav-item {
      position: relative;
      display: flex;
      align-items: center;
    }
    .site-header .main-nav > a.active,
    .site-header .main-nav > a:hover,
    .site-header .nav-link.active,
    .site-header .nav-link:hover,
    .site-header .nav-item:focus-within .nav-link {
      color: var(--royal-purple);
    }
    .site-header .main-nav > a.active::after,
    .site-header .nav-link.active::after {
      content: "";
      position: absolute;
      left: 0;
      right: 0;
      bottom: 0;
      height: 3px;
      border-radius: 999px;
      background: linear-gradient(90deg, var(--royal-purple), var(--pink-glow));
    }
    .site-header .nav-chevron {
      width: 14px;
      height: 14px;
      stroke-width: 3;
      transition: transform 180ms ease;
    }
    .site-header .nav-menu-trigger {
      border: 0;
      color: inherit;
      background: transparent;
      cursor: pointer;
      font: inherit;
    }
    .site-header .nav-menu-trigger:focus-visible {
      outline: 2px solid rgba(123, 44, 255, 0.36);
      outline-offset: 7px;
      border-radius: 6px;
    }
    .site-header .nav-item:hover .nav-chevron,
    .site-header .nav-item:focus-within .nav-chevron {
      transform: rotate(180deg);
    }
    .site-header .services-menu {
      position: absolute;
      top: calc(100% + 18px);
      left: 50%;
      z-index: 40;
      width: min(450px, calc(100vw - 32px));
      padding: 18px 20px;
      border: 1px solid var(--line);
      border-radius: 8px;
      background: rgba(255, 255, 255, 0.96);
      box-shadow: var(--shadow);
      backdrop-filter: blur(16px);
      opacity: 0;
      pointer-events: none;
      transform: translateX(-50%) translateY(10px);
      transition: opacity 180ms ease, transform 180ms ease, visibility 180ms ease;
      visibility: hidden;
    }
    .site-header .services-menu::before {
      content: "";
      position: absolute;
      left: 0;
      right: 0;
      top: -20px;
      height: 20px;
    }
    .site-header .nav-item:hover .services-menu,
    .site-header .nav-item:focus-within .services-menu {
      opacity: 1;
      pointer-events: auto;
      transform: translateX(-50%) translateY(0);
      visibility: visible;
    }
    .site-header .service-menu-link {
      display: grid;
      grid-template-columns: 48px 1fr 18px;
      gap: 14px;
      align-items: center;
      min-height: 72px;
      padding: 12px 0;
      border-bottom: 1px solid var(--line);
      color: var(--ink);
    }
    .site-header .service-menu-link:last-child {
      border-bottom: 0;
    }
    .site-header .service-menu-icon {
      width: 48px;
      height: 48px;
      display: grid;
      place-items: center;
      border-radius: 8px;
      color: var(--royal-purple);
      background: linear-gradient(145deg, rgba(242, 179, 255, 0.38), rgba(217, 168, 255, 0.2));
    }
    .site-header .service-menu-link strong,
    .site-header .service-menu-link small {
      display: block;
    }
    .site-header .service-menu-link strong {
      font-size: 1rem;
      line-height: 1.25;
      font-weight: 900;
    }
    .site-header .service-menu-link small {
      margin-top: 3px;
      color: var(--muted);
      font-size: 0.74rem;
      line-height: 1.35;
      font-weight: 700;
    }
    .site-header .service-menu-arrow {
      width: 17px;
      height: 17px;
      color: var(--royal-purple);
      stroke-width: 3;
      transition: transform 180ms ease;
    }
    .site-header .service-menu-link:hover,
    .site-header .service-menu-link.current {
      color: var(--royal-purple);
    }
    .site-header .service-menu-link:hover .service-menu-arrow,
    .site-header .service-menu-link.current .service-menu-arrow {
      transform: translateX(3px);
    }

    .button {
      min-height: 38px;
      display: inline-flex;
      align-items: center;
      justify-content: center;
      gap: 9px;
      padding: 0 18px;
      border: 1px solid transparent;
      border-radius: 8px;
      color: #ffffff;
      font-weight: 800;
      background: linear-gradient(135deg,#7B2CFF 0%,#B66DFF 58%,#F2B3FF 100%) !important;
      box-shadow: 0 13px 28px rgba(123, 44, 255, 0.25);
      cursor: pointer;
      transition: transform 180ms ease, box-shadow 180ms ease, background 180ms ease;
      white-space: nowrap;
    }

    .button:hover {
      transform: translateY(-2px);
      box-shadow: 0 18px 36px rgba(123, 44, 255, 0.32);
    }

    .button.secondary {
      color: var(--royal-purple);
      background: transparent !important;
      border-color: var(--royal-purple);
      box-shadow: none;
    }

    .button.light {
      color: var(--dark-purple);
      background: #ffffff;
      border-color: rgba(255, 255, 255, 0.7);
      box-shadow: 0 14px 34px rgba(12, 0, 38, 0.16);
    }

    .button.outline-light {
      color: #ffffff;
      background: transparent;
      border-color: rgba(255, 255, 255, 0.58);
      box-shadow: none;
    }

    .icon {
      width: 20px;
      height: 20px;
      stroke-width: 2.4;
      flex: 0 0 auto;
    }

    main {
      overflow: hidden;
    }

    .hero {
      scroll-margin-top: 96px;
      border-bottom: 1px solid rgba(217, 168, 255, 0.45);
      background:
        radial-gradient(circle at 72% 42%, rgba(217, 168, 255, 0.34), transparent 25rem),
        linear-gradient(100deg, rgba(255, 255, 255, 0.96), rgba(251, 248, 255, 0.98) 55%, rgba(242, 179, 255, 0.22));
    }

    .hero-inner {
      width: min(1240px, calc(100% - 80px));
      min-height: 306px;
      margin: 0 auto;
      display: grid;
      grid-template-columns: minmax(0, 1fr) minmax(360px, 0.92fr);
      gap: 34px;
      align-items: center;
      padding: 10px 0 18px;
    }

    .breadcrumb {
      width: fit-content;
      display: flex;
      align-items: center;
      gap: 9px;
      margin-bottom: 22px;
      padding: 10px 16px;
      border: 1px solid rgba(217, 168, 255, 0.56);
      border-radius: 8px;
      color: var(--royal-purple);
      background: rgba(255, 255, 255, 0.72);
      font-size: 0.78rem;
      font-weight: 800;
    }

    .hero h1 {
      max-width: 560px;
      margin: 0;
      color: #0b1033;
      font-family: "Poppins", "Segoe UI", Arial, sans-serif;
      font-size: clamp(28px, 3vw, 36px) !important;
      line-height: 1.12;
      font-weight: 900;
      animation: heroReveal 0.72s cubic-bezier(0.2, 0.78, 0.2, 1) both;
    }

    .accent {
      color: var(--royal-purple);
    }

    .accent-modern {
      color: var(--dark-purple);
    }

    .accent-business {
      display: inline-block;
      background: linear-gradient(90deg, var(--royal-purple) 0%, var(--lavender-purple) 58%, var(--pink-glow) 100%);
      background-size: 180% auto;
      -webkit-background-clip: text;
      background-clip: text;
      -webkit-text-fill-color: transparent;
      animation: heroTextGlow 4.4s ease-in-out infinite;
    }

    .hero-copy {
      max-width: 560px;
      margin: 16px 0 0;
      color: #596071;
      font-size: 0.84rem;
      line-height: 1.6;
      animation: heroReveal 0.72s 0.12s cubic-bezier(0.2, 0.78, 0.2, 1) both;
    }

    .hero-actions {
      display: flex;
      flex-wrap: wrap;
      gap: 14px;
      margin-top: 20px;
      animation: heroReveal 0.72s 0.24s cubic-bezier(0.2, 0.78, 0.2, 1) both;
    }

    .hero-actions .button {
      position: relative;
      overflow: hidden;
    }

    .hero-actions .button > * {
      position: relative;
      z-index: 1;
    }

    .hero-actions .button::after {
      content: "";
      position: absolute;
      top: -60%;
      left: -42%;
      width: 34%;
      height: 220%;
      background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.62), transparent);
      transform: rotate(22deg);
      animation: heroButtonShine 3.6s ease-in-out infinite;
      pointer-events: none;
    }

    .hero-media {
      position: relative;
      min-height: 300px;
      display: grid;
      place-items: center;
      isolation: isolate;
      animation: heroMediaReveal 0.88s 0.18s cubic-bezier(0.2, 0.78, 0.2, 1) both;
    }

    .orbit-ring {
      position: absolute;
      width: 88%;
      height: 210px;
      left: 50%;
      top: 50%;
      border: 1px dashed rgba(123, 44, 255, 0.27);
      border-radius: 50%;
      transform: translate(-50%, -48%) rotate(-14deg);
      z-index: 1;
      pointer-events: none;
      animation: heroOrbit 14s ease-in-out infinite alternate;
    }

    .orbit-ring::before {
      content: "";
      position: absolute;
      inset: 30px 48px;
      border: 1px dashed rgba(182, 109, 255, 0.2);
      border-radius: 50%;
      transform: rotate(18deg);
      animation: heroOrbitInner 12s ease-in-out infinite alternate;
    }

    .hero-media::before {
      content: "";
      position: absolute;
      width: 68%;
      aspect-ratio: 1;
      border-radius: 50%;
      background: linear-gradient(150deg, rgba(242, 179, 255, 0.42), rgba(217, 168, 255, 0.2));
      filter: blur(1px);
      z-index: 0;
      animation: heroGlowPulse 5.2s ease-in-out infinite;
    }

    .phone-mockup-wrap {
      width: min(100%, 405px);
      position: relative;
      z-index: 2;
      transform: translateY(4px);
      transform-origin: center bottom;
    }

    .phone-mockup {
      width: 100%;
      display: block;
      filter: drop-shadow(0 28px 42px rgba(75, 0, 181, 0.22));
      position: relative;
      z-index: 1;
    }

    .floating-icon {
      position: absolute;
      width: 44px;
      height: 44px;
      display: grid;
      place-items: center;
      border: 1px solid rgba(182, 109, 255, 0.58);
      border-radius: 50%;
      color: var(--royal-purple);
      background: rgba(255, 255, 255, 0.92);
      box-shadow: 0 16px 34px rgba(123, 44, 255, 0.14);
      z-index: 3;
      animation: heroFloatIcon 4.6s ease-in-out infinite;
    }

    .floating-icon .fa-brands {
      font-size: 22px;
      line-height: 1;
    }

    .floating-icon:nth-of-type(2) { left: 11%; top: 18%; animation-delay: 0s; }
    .floating-icon:nth-of-type(3) { right: 10%; top: 20%; animation-delay: 0.75s; }
    .floating-icon:nth-of-type(4) { left: 9%; bottom: 20%; animation-delay: 1.35s; }
    .floating-icon:nth-of-type(5) { right: 13%; bottom: 22%; animation-delay: 2s; }

    @keyframes heroFloatIcon {
      0%, 100% {
        transform: translateY(0) scale(1);
        box-shadow: 0 16px 34px rgba(123, 44, 255, 0.14);
      }
      50% {
        transform: translateY(-10px) scale(1.04);
        box-shadow: 0 22px 42px rgba(123, 44, 255, 0.2);
      }
    }

    @keyframes heroReveal {
      from {
        opacity: 0;
        transform: translateY(22px);
      }
      to {
        opacity: 1;
        transform: translateY(0);
      }
    }

    @keyframes heroMediaReveal {
      from {
        opacity: 0;
        transform: translateX(34px) scale(0.96);
      }
      to {
        opacity: 1;
        transform: translateX(0) scale(1);
      }
    }

    @keyframes heroTextGlow {
      0%, 100% {
        background-position: 0% center;
      }
      50% {
        background-position: 100% center;
      }
    }

    @keyframes heroButtonShine {
      0%, 28% {
        left: -45%;
        opacity: 0;
      }
      42% {
        opacity: 0.9;
      }
      64%, 100% {
        left: 112%;
        opacity: 0;
      }
    }

    @keyframes heroOrbit {
      from {
        transform: translate(-50%, -48%) rotate(-14deg) scale(1);
      }
      to {
        transform: translate(-50%, -48%) rotate(-4deg) scale(1.03);
      }
    }

    @keyframes heroOrbitInner {
      from {
        transform: rotate(18deg) scale(1);
      }
      to {
        transform: rotate(-6deg) scale(1.04);
      }
    }

    @keyframes heroGlowPulse {
      0%, 100% {
        opacity: 0.84;
        transform: scale(0.98);
      }
      50% {
        opacity: 1;
        transform: scale(1.05);
      }
    }

    .floating-contact {
      animation: contactTabPulse 2.8s ease-in-out infinite;
      box-shadow: 0 16px 34px rgba(123, 44, 255, 0.24);
    }

    @keyframes contactTabPulse {
      0%, 100% {
        transform: rotate(180deg) translateX(0);
        box-shadow: 0 16px 34px rgba(123, 44, 255, 0.24);
      }
      50% {
        transform: rotate(180deg) translateX(5px);
        box-shadow: 0 22px 44px rgba(123, 44, 255, 0.34);
      }
    }

    .section {
      padding: 42px 0;
      scroll-margin-top: 96px;
    }

    #portfolio.section {
      padding-top: 58px !important;
    }

    .section-anchor {
      display: block;
      height: 0;
      scroll-margin-top: 96px;
      visibility: hidden;
    }

    #contact,
    #about-us,
    #home,
    #technology-stack,
    #web-saas {
      scroll-margin-top: 96px;
    }

    .section.alt {
      background:
        linear-gradient(110deg, rgba(217, 168, 255, 0.18), rgba(255, 255, 255, 0.84) 48%, rgba(242, 179, 255, 0.22));
      border-top: 1px solid rgba(217, 168, 255, 0.42);
      border-bottom: 1px solid rgba(217, 168, 255, 0.42);
    }

    #ai-capabilities.section {
      padding-top: 34px !important;
      padding-bottom: 42px !important;
    }

    #technology-stack.section {
      padding-top: 38px !important;
      padding-bottom: 42px !important;
    }

    .section-shell {
      width: min(1240px, calc(100% - 80px));
      margin: 0 auto;
    }

    .split {
      display: grid;
      grid-template-columns: minmax(0, 1.18fr) minmax(0, 0.92fr);
      gap: 34px;
      align-items: start;
    }

    .section-head {
      min-height: 70px;
      margin-bottom: 18px;
    }

    .section-head h2 {
      margin: 0;
      font-size: 1.55rem;
      line-height: 1.2;
      font-weight: 900;
    }

    .section-head p {
      margin: 8px 0 0;
      color: var(--muted);
      line-height: 1.6;
      font-size: 0.95rem;
    }

    .section-head::after {
      content: "";
      display: block;
      width: 34px;
      height: 3px;
      margin-top: 12px;
      border-radius: 999px;
      background: linear-gradient(90deg, var(--royal-purple), var(--pink-glow));
    }

    .card-grid {
      display: grid;
      gap: 10px;
    }

    .solutions-grid {
      grid-template-columns: repeat(6, minmax(0, 1fr));
    }

    .build-grid,
    .ai-grid {
      grid-template-columns: repeat(4, minmax(0, 1fr));
    }

    .feature-grid {
      grid-template-columns: repeat(4, minmax(0, 1fr));
    }

    .card,
    .feature,
    .pill-card,
    .metric,
    .choice-card {
      border: 1px solid var(--line);
      border-radius: 8px;
      background: rgba(255, 255, 255, 0.86);
      box-shadow: 0 10px 26px rgba(75, 0, 181, 0.06);
      transition: transform 0.22s ease, border-color 0.22s ease, box-shadow 0.22s ease, background 0.22s ease;
    }

    .card:hover,
    .feature:hover,
    .pill-card:hover,
    .metric:hover,
    .choice-card:hover {
      transform: translateY(-6px);
      border-color: rgba(123, 44, 255, 0.45);
      background: #ffffff;
      box-shadow: 0 18px 38px rgba(75, 0, 181, 0.14);
    }

    .card:hover .icon-wrap,
    .feature:hover .icon-wrap,
    .pill-card:hover .icon-wrap,
    .metric:hover .icon-wrap,
    .choice-card:hover .icon-wrap {
      color: #ffffff;
      background: linear-gradient(135deg, var(--dark-purple), var(--royal-purple) 55%, var(--lavender-purple));
      box-shadow: 0 10px 24px rgba(123, 44, 255, 0.26);
    }

    .card {
      min-height: 152px;
      display: flex;
      flex-direction: column;
      align-items: center;
      justify-content: flex-start;
      padding: 18px 12px 16px;
      text-align: center;
    }

    .card .icon-wrap,
    .feature .icon-wrap,
    .pill-card .icon-wrap,
    .metric .icon-wrap,
    .choice-card .icon-wrap {
      width: 50px;
      height: 50px;
      display: grid;
      place-items: center;
      margin-bottom: 14px;
      border-radius: 50%;
      color: var(--royal-purple);
      background: linear-gradient(145deg, rgba(242, 179, 255, 0.38), rgba(217, 168, 255, 0.2));
    }

    .card strong,
    .pill-card strong,
    .choice-card strong {
      display: block;
      font-size: 0.88rem;
      line-height: 1.32;
      font-weight: 900;
    }

    .card span,
    .pill-card span,
    .choice-card span {
      display: block;
      margin-top: 9px;
      color: var(--muted);
      font-size: 0.78rem;
      line-height: 1.45;
      overflow-wrap: anywhere;
    }

    .pill-card {
      min-height: 86px;
      display: flex;
      flex-direction: column;
      align-items: center;
      justify-content: center;
      padding: 13px 10px;
      text-align: center;
    }

    .pill-card .icon-wrap {
      width: 38px;
      height: 38px;
      margin-bottom: 8px;
      border-radius: 8px;
    }

    .feature {
      min-height: 74px;
      display: grid;
      grid-template-columns: 38px 1fr;
      align-items: center;
      gap: 10px;
      padding: 14px 15px;
    }

    .feature .icon-wrap {
      width: 36px;
      height: 36px;
      margin: 0;
      background: #ffffff;
    }

    .feature strong {
      font-size: 0.82rem;
      line-height: 1.35;
      font-weight: 800;
    }

    .process-tech-choice {
      display: grid;
      grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
      gap: 32px;
      align-items: start;
    }

    .process-tech-choice .section-head {
      min-height: 42px;
      margin-bottom: 12px;
    }

    .process-tech-choice .section-head h2 {
      font-size: 1.18rem;
      line-height: 1.18;
    }

    .process-list {
      display: grid;
      grid-template-columns: repeat(4, minmax(0, 1fr));
      gap: 30px 14px;
      position: relative;
    }

    .process-list::before,
    .process-list::after {
      content: "";
      position: absolute;
      left: 12%;
      height: 2px;
      background: linear-gradient(90deg, rgba(123, 44, 255, 0.38), rgba(182, 109, 255, 0.3));
      z-index: 0;
      pointer-events: none;
    }

    .process-list::before {
      top: 24px;
      right: 12%;
    }

    .process-list::after {
      top: calc(24px + 78px);
      width: 62%;
    }

    .process-step {
      min-width: 0;
      text-align: center;
      position: relative;
      padding: 0 !important;
      border: 0 !important;
      border-radius: 0 !important;
      background: transparent !important;
      box-shadow: none !important;
      min-height: 0 !important;
    }

    .process-icon:hover {
      color: #ffffff;
      border-color: rgba(123, 44, 255, 0.45);
      background: linear-gradient(135deg, var(--dark-purple), var(--royal-purple) 55%, var(--lavender-purple));
      box-shadow: 0 14px 28px rgba(75, 0, 181, 0.18);
      transform: translateY(-4px);
    }

    .process-icon {
      width: 48px;
      height: 48px;
      display: grid;
      place-items: center;
      margin: 0 auto 8px;
      position: relative;
      z-index: 1;
      border: 1px solid var(--soft-lavender);
      border-radius: 50%;
      color: var(--royal-purple);
      background: #ffffff;
      box-shadow: 0 8px 18px rgba(75, 0, 181, 0.08);
      transition: transform 0.22s ease, border-color 0.22s ease, box-shadow 0.22s ease, background 0.22s ease, color 0.22s ease;
    }

    .process-step strong {
      display: block;
      font-size: 0.72rem;
      line-height: 1.32;
      font-weight: 800;
    }

    .tech-grid {
      display: grid;
      grid-template-columns: repeat(3, minmax(0, 1fr));
      gap: 9px 10px;
    }

    .tech-chip {
      min-height: 36px;
      display: flex;
      align-items: center;
      gap: 8px;
      padding: 0 11px;
      border: 1px solid var(--line);
      border-radius: 999px;
      background: #ffffff;
      color: #16192b;
      font-size: 0.72rem;
      font-weight: 800;
      overflow-wrap: anywhere;
      transition: transform 0.22s ease, border-color 0.22s ease, box-shadow 0.22s ease, background 0.22s ease;
    }

    .tech-chip .icon {
      width: 18px;
      height: 18px;
    }

    .tech-chip .icon {
      color: var(--royal-purple);
    }

    .tech-logo {
      width: 20px;
      height: 20px;
      flex: 0 0 20px;
      display: block;
      object-fit: contain;
      border-radius: 4px;
      mix-blend-mode: multiply;
    }

    .tech-chip:hover .tech-logo {
      transform: scale(1.08);
      transition: transform 0.22s ease;
    }

    .tech-chip:hover {
      transform: translateY(-4px);
      border-color: rgba(123, 44, 255, 0.42);
      background: #ffffff;
      box-shadow: 0 14px 28px rgba(75, 0, 181, 0.12);
    }

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

    .choice-card {
      min-height: 86px;
      display: grid;
      grid-template-columns: 40px 1fr;
      align-items: center;
      gap: 11px;
      padding: 13px 14px;
    }

    .choice-card .icon-wrap {
      width: 40px;
      height: 40px;
      margin: 0;
    }

    .choice-card strong {
      font-size: 0.74rem;
    }

    .choice-card span {
      margin-top: 6px;
      font-size: 0.7rem;
      line-height: 1.38;
    }

    .industries-metrics {
      display: grid;
      grid-template-columns: 0.9fr 1.1fr;
      gap: 42px;
      align-items: start;
    }

    .industry-grid {
      display: grid;
      grid-template-columns: repeat(5, minmax(0, 1fr));
      gap: 18px 16px;
    }

    .industry {
      min-height: 72px;
      display: flex;
      flex-direction: column;
      align-items: center;
      justify-content: center;
      gap: 9px;
      color: var(--ink);
      font-size: 0.82rem;
      font-weight: 800;
      text-align: center;
      border: 1px solid transparent;
      border-radius: 8px;
      transition: transform 0.22s ease, border-color 0.22s ease, box-shadow 0.22s ease, background 0.22s ease;
    }

    .industry:hover {
      transform: translateY(-5px);
      border-color: rgba(123, 44, 255, 0.35);
      background: rgba(255, 255, 255, 0.9);
      box-shadow: 0 14px 30px rgba(75, 0, 181, 0.1);
    }

    .industry .icon {
      width: 28px;
      height: 28px;
      color: var(--royal-purple);
      transition: transform 0.22s ease, color 0.22s ease;
    }

    .industry:hover .icon {
      color: var(--dark-purple);
      transform: scale(1.08);
    }

    .metric-grid {
      display: grid;
      grid-template-columns: repeat(3, minmax(0, 1fr));
      gap: 12px;
    }

    .metric {
      min-height: 124px;
      display: flex;
      flex-direction: column;
      align-items: center;
      justify-content: center;
      padding: 16px 12px;
      text-align: center;
    }

    .metric .icon-wrap {
      width: 36px;
      height: 36px;
      margin-bottom: 10px;
      background: #ffffff;
    }

    .metric strong {
      color: var(--royal-purple);
      font-size: 1.5rem;
      line-height: 1.1;
      font-weight: 900;
    }

    .metric span {
      margin-top: 8px;
      color: #282d40;
      font-size: 0.75rem;
      line-height: 1.35;
      font-weight: 700;
      overflow-wrap: anywhere;
    }

    .cta {
      position: relative;
      isolation: isolate;
      padding: 44px 0;
      color: #ffffff;
      background:
        linear-gradient(135deg, rgba(75, 0, 181, 0.96), rgba(123, 44, 255, 0.95) 56%, rgba(182, 109, 255, 0.92)),
        var(--dark-purple);
      overflow: hidden;
    }

    .cta::before,
    .cta::after {
      content: "";
      position: absolute;
      inset: auto auto -80px -60px;
      width: 260px;
      height: 260px;
      border: 1px solid rgba(255, 255, 255, 0.24);
      border-radius: 50%;
      z-index: -1;
    }

    .cta::after {
      inset: -80px -80px auto auto;
      width: 320px;
      height: 320px;
    }

    .cta-shell {
      width: min(1240px, calc(100% - 80px));
      margin: 0 auto;
      display: grid;
      grid-template-columns: 250px 1fr;
      gap: 30px;
      align-items: center;
    }

    .cta img {
      width: 100%;
      max-height: 190px;
      object-fit: contain;
      filter: drop-shadow(0 18px 26px rgba(0, 0, 0, 0.22));
    }

    .cta-copy {
      text-align: center;
    }

    .cta h2 {
      margin: 0;
      font-size: 2.05rem;
      line-height: 1.16;
      font-weight: 900;
    }

    .cta p {
      max-width: 720px;
      margin: 13px auto 0;
      color: rgba(255, 255, 255, 0.9);
      font-size: 1.02rem;
      line-height: 1.6;
    }

    .cta-actions {
      display: flex;
      flex-wrap: wrap;
      justify-content: center;
      gap: 14px;
      margin-top: 25px;
    }

    @media (max-width: 1080px) {
    .site-header .main-nav {
        display: none;
      }

      .hero-inner {
        grid-template-columns: 1fr;
        padding-top: 44px;
      }

      .hero-media {
        min-height: 330px;
      }

      .phone-mockup-wrap {
        width: min(92%, 580px);
      }

      .split,
      .process-tech-choice,
      .industries-metrics {
        grid-template-columns: 1fr;
      }

      .solutions-grid {
        grid-template-columns: repeat(3, minmax(0, 1fr));
      }

      .metric-grid {
        grid-template-columns: repeat(3, minmax(0, 1fr));
      }
    }

    @media (max-width: 760px) {
      .nav-shell,
      .section-shell,
      .hero-inner,
      .cta-shell {
        width: min(100% - 28px, 1120px);
      }

      .nav-shell {
        min-height: 68px;
      }

      .brand {
        min-width: 0;
      }

      .brand-text strong {
        font-size: 1.05rem;
      }

      .brand-text span {
        font-size: 0.54rem;
      }

      .site-header .button {
        min-height: 40px;
        padding: 0 13px;
        font-size: 0.78rem;
      }

      .hero h1 {
        font-size: clamp(28px, 3vw, 36px) !important;
      }

      .hero-copy {
        font-size: 0.98rem;
      }

      .hero-actions .button {
        width: 100%;
      }

      .hero-media {
        min-height: 310px;
      }

      .floating-icon {
        width: 48px;
        height: 48px;
      }

      .section {
        padding: 34px 0;
      }

      .solutions-grid,
      .build-grid,
      .ai-grid,
      .feature-grid,
      .choice-grid,
      .industry-grid,
      .metric-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
      }

      .process-list {
        grid-template-columns: repeat(2, minmax(0, 1fr));
      }

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

      .tech-grid {
        grid-template-columns: 1fr;
      }

      .choice-card {
        grid-template-columns: 1fr;
        text-align: center;
        justify-items: center;
      }

      .cta-shell {
        grid-template-columns: 1fr;
      }

      .cta img {
        max-height: 160px;
      }

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

    @media (max-width: 460px) {
      .brand-mark {
        width: 36px;
        height: 36px;
      }

      .site-header .button span {
        display: none;
      }

      .hero {
        background:
          linear-gradient(180deg, rgba(251, 248, 255, 0.98), rgba(242, 179, 255, 0.18));
      }

      .hero h1 {
        font-size: clamp(28px, 3vw, 36px) !important;
      }

      .breadcrumb {
        width: 100%;
        justify-content: center;
        font-size: 0.72rem;
      }

      .hero-media {
        min-height: 260px;
      }

      .floating-icon {
        display: none;
      }

      .solutions-grid,
      .build-grid,
      .ai-grid,
      .feature-grid,
      .choice-grid,
      .industry-grid,
      .metric-grid {
        grid-template-columns: 1fr;
      }

      .card,
      .metric {
        min-height: 128px;
      }

      .industry {
        min-height: 58px;
      }
    }

    @media (prefers-reduced-motion: reduce) {
      .hero h1,
      .accent-business,
      .hero-copy,
      .hero-actions,
      .hero-actions .button::after,
      .hero-media,
      .orbit-ring,
      .orbit-ring::before,
      .hero-media::before,
      .phone-mockup,
      .floating-icon,
      .floating-contact {
        animation: none !important;
      }
    }

    .site-header .brand-logo {
      width: 190px;
      max-width: 100%;
      height: auto;
      display: block;
    }








