:root {
      --ink: #0b0f13;
      --graphite: #151a20;
      --smoke: #20262d;
      --panel: rgba(255, 255, 255, 0.075);
      --line: rgba(255, 255, 255, 0.12);
      --text: #f8f4ea;
      --muted: rgba(248, 244, 234, 0.7);
      --soft: rgba(248, 244, 234, 0.46);
      --yellow: #d9b15b;
      --gold: #c9903f;
      --orange: #a96235;
      --mint: #2f8f87;
      --magenta: #9b3b67;
      --cyan: var(--mint);
      --red: var(--magenta);
      --neon: var(--gold);
      --yellow-rgb: 217, 177, 91;
      --gold-rgb: 201, 144, 63;
      --orange-rgb: 169, 98, 53;
      --mint-rgb: 47, 143, 135;
      --magenta-rgb: 155, 59, 103;
      --logo-gradient: linear-gradient(135deg, var(--yellow), var(--gold) 36%, var(--orange) 64%, var(--mint));
      --logo-glow: 0 18px 48px rgba(var(--gold-rgb), 0.18), 0 12px 34px rgba(0, 0, 0, 0.24);
      --radius: 26px;
      --shadow: 0 24px 70px rgba(0, 0, 0, 0.34);
      --glow: 0 0 28px rgba(var(--gold-rgb), 0.18);
    }

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

    html {
      scroll-behavior: smooth;
      background: var(--ink);
    }

    body {
      min-height: 100vh;
      overflow-x: hidden;
      background:
        radial-gradient(circle at 10% 5%, rgba(var(--gold-rgb), 0.12), transparent 30rem),
        radial-gradient(circle at 86% 10%, rgba(var(--mint-rgb), 0.1), transparent 28rem),
        radial-gradient(circle at 72% 82%, rgba(var(--magenta-rgb), 0.07), transparent 26rem),
        linear-gradient(180deg, #0b0f13 0%, #14191f 48%, #0b0f13 100%);
      color: var(--text);
      font-family: "Inter", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
      letter-spacing: 0;
    }

    body.lock {
      overflow: hidden;
    }

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

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

    button,
    input,
    textarea,
    select {
      font: inherit;
    }

    button {
      cursor: pointer;
    }

    ::selection {
      background: rgba(var(--yellow-rgb), 0.38);
      color: #ffffff;
    }

    .container {
      width: min(100% - 32px, 1200px);
      margin-inline: auto;
    }

    .section {
      position: relative;
      padding: 86px 0;
      overflow: hidden;
    }

    .glass {
      border: 1px solid var(--line);
      background: var(--panel);
      box-shadow: var(--shadow);
      backdrop-filter: blur(16px);
      -webkit-backdrop-filter: blur(16px);
    }

    .gradient-border {
      position: relative;
      isolation: isolate;
    }

    .gradient-border::before {
      content: "";
      position: absolute;
      inset: 0;
      z-index: -1;
      border-radius: inherit;
      padding: 1px;
      background: linear-gradient(135deg, rgba(var(--yellow-rgb), 0.86), rgba(var(--orange-rgb), 0.62), rgba(var(--magenta-rgb), 0.46), rgba(var(--mint-rgb), 0.44));
      -webkit-mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0);
      -webkit-mask-composite: xor;
      mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0);
      mask-composite: exclude;
    }

    .kicker {
      display: inline-flex;
      align-items: center;
      gap: 8px;
      min-height: 32px;
      border: 1px solid rgba(var(--orange-rgb), 0.4);
      border-radius: 999px;
      background: linear-gradient(90deg, rgba(var(--yellow-rgb), 0.14), rgba(var(--orange-rgb), 0.1), rgba(var(--mint-rgb), 0.09));
      box-shadow: var(--glow);
      color: var(--neon);
      padding: 7px 12px;
      font-size: 0.72rem;
      font-weight: 900;
      text-transform: uppercase;
    }

    .section-head {
      max-width: 780px;
      margin: 0 auto;
      text-align: center;
    }

    .section-head.left {
      margin: 0;
      text-align: left;
    }

    h1,
    h2,
    h3,
    .brand,
    .display {
      font-family: "Space Grotesk", "Inter", sans-serif;
      letter-spacing: 0;
    }

    h1 {
      margin-top: 22px;
      font-size: clamp(2.55rem, 12vw, 5.95rem);
      line-height: 1.03;
      font-weight: 900;
    }

    h2 {
      margin-top: 18px;
      font-size: clamp(2rem, 8vw, 4.55rem);
      line-height: 1.06;
      font-weight: 900;
    }

    h3 {
      font-size: 1.25rem;
      line-height: 1.2;
      font-weight: 900;
    }

    p {
      color: var(--muted);
      line-height: 1.75;
    }

    .lead {
      max-width: 680px;
      margin-top: 22px;
      font-size: clamp(1rem, 3.8vw, 1.22rem);
      line-height: 1.75;
    }

    .text-gradient {
      background: linear-gradient(90deg, #ffffff, var(--yellow) 24%, var(--orange) 48%, var(--magenta) 68%, var(--mint));
      background-size: 220% auto;
      -webkit-background-clip: text;
      background-clip: text;
      color: transparent;
      animation: shimmer 8s linear infinite;
    }

    .btn {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      gap: 10px;
      min-height: 50px;
      border: 0;
      border-radius: 999px;
      padding: 14px 19px;
      font-size: 0.95rem;
      font-weight: 900;
      transition: transform 0.28s ease, box-shadow 0.28s ease, border-color 0.28s ease, background 0.28s ease;
      touch-action: manipulation;
    }

    .btn-primary {
      background: var(--logo-gradient);
      color: var(--ink);
      box-shadow: var(--logo-glow);
    }

    .btn-secondary {
      border: 1px solid rgba(255, 255, 255, 0.14);
      background: rgba(255, 255, 255, 0.09);
      color: #ffffff;
      backdrop-filter: blur(12px);
    }

    .btn:hover {
      transform: translateY(-4px);
    }

    .btn-primary:hover {
      box-shadow: 0 0 52px rgba(var(--orange-rgb), 0.38), 0 0 42px rgba(var(--magenta-rgb), 0.18);
    }

    .btn-secondary:hover {
      border-color: rgba(var(--mint-rgb), 0.52);
      background: linear-gradient(90deg, rgba(var(--magenta-rgb), 0.1), rgba(var(--mint-rgb), 0.1));
    }

    .icon-btn {
      display: inline-grid;
      width: 46px;
      height: 46px;
      place-items: center;
      border: 1px solid rgba(255, 255, 255, 0.12);
      border-radius: 999px;
      background: rgba(255, 255, 255, 0.08);
      color: #ffffff;
      transition: 0.28s ease;
    }

    .icon-btn:hover {
      border-color: rgba(var(--magenta-rgb), 0.52);
      color: var(--neon);
      transform: translateY(-3px);
    }

    .loader {
      position: fixed;
      inset: 0;
      z-index: 200;
      display: grid;
      place-items: center;
      background:
        radial-gradient(circle at center, rgba(var(--yellow-rgb), 0.15), transparent 24rem),
        radial-gradient(circle at 62% 35%, rgba(var(--magenta-rgb), 0.12), transparent 18rem),
        #0b0f13;
      transition: opacity 0.35s ease, visibility 0.35s ease;
    }

    .loader.hide {
      opacity: 0;
      visibility: hidden;
    }

    .loader-card {
      width: min(84vw, 380px);
      text-align: center;
    }

    .loader-logo {
      display: grid;
      width: 98px;
      height: 98px;
      margin: 0 auto;
      place-items: center;
      border: 1px solid rgba(var(--orange-rgb), 0.5);
      border-radius: 22px;
      background: #ffffff;
      padding: 5px;
      box-shadow: var(--logo-glow);
      animation: lift 3s ease-in-out infinite;
      overflow: hidden;
    }

    .loader-logo img {
      width: 100%;
      height: 100%;
      border-radius: 17px;
      object-fit: cover;
    }

    .loader-title {
      margin-top: 22px;
      font-family: "Space Grotesk", sans-serif;
      font-size: 1.45rem;
      font-weight: 900;
      color: #ffffff;
    }

    .progress-shell {
      height: 12px;
      margin-top: 28px;
      border: 1px solid rgba(255, 255, 255, 0.12);
      border-radius: 999px;
      background: rgba(255, 255, 255, 0.08);
      padding: 3px;
      overflow: hidden;
    }

    .progress-bar {
      width: 10%;
      height: 100%;
      border-radius: 999px;
      background: var(--logo-gradient);
      box-shadow: var(--glow);
      transition: width 0.22s ease;
    }

    .site-header {
      position: fixed;
      inset: 0 0 auto;
      z-index: 80;
      padding: 12px;
      transition: 0.3s ease;
    }

    .nav {
      display: flex;
      align-items: center;
      justify-content: space-between;
      width: min(100%, 1200px);
      margin: 0 auto;
      border: 1px solid rgba(var(--gold-rgb), 0.18);
      border-radius: 999px;
      background: rgba(11, 15, 19, 0.7);
      padding: 10px 10px 10px 12px;
      backdrop-filter: blur(16px);
      -webkit-backdrop-filter: blur(16px);
      transition: 0.3s ease;
    }

    .site-header.scrolled .nav {
      background: rgba(11, 15, 19, 0.88);
      box-shadow: 0 22px 70px rgba(0, 0, 0, 0.38);
    }

    .logo {
      display: flex;
      align-items: center;
      gap: 11px;
    }

    .logo-mark {
      display: grid;
      width: 48px;
      height: 48px;
      place-items: center;
      border: 1px solid rgba(var(--orange-rgb), 0.58);
      border-radius: 16px;
      background: #ffffff;
      padding: 3px;
      box-shadow: var(--logo-glow);
      color: var(--ink);
      font-family: "Space Grotesk", sans-serif;
      font-weight: 900;
      overflow: hidden;
    }

    .logo-mark img {
      width: 100%;
      height: 100%;
      border-radius: 12px;
      object-fit: cover;
    }

    .logo-text strong {
      display: block;
      font-family: "Space Grotesk", sans-serif;
      font-size: 0.98rem;
      color: #ffffff;
    }

    .logo-text span {
      display: block;
      color: var(--neon);
      font-size: 0.68rem;
      font-weight: 900;
      text-transform: uppercase;
    }

    .nav-links,
    .nav-actions {
      display: none;
    }

    .menu-toggle {
      border: 0;
      color: #ffffff;
    }

    .mobile-menu {
      position: fixed;
      inset: 0;
      z-index: 70;
      display: none;
      background: rgba(11, 15, 19, 0.86);
      padding: 94px 12px 20px;
      backdrop-filter: blur(16px);
    }

    .mobile-menu.open {
      display: block;
    }

    .mobile-panel {
      border-radius: 30px;
      padding: 15px;
      transform: translateY(-12px);
      opacity: 0;
      animation: menuIn 0.28s ease forwards;
    }

    .mobile-panel a {
      display: flex;
      align-items: center;
      justify-content: space-between;
      min-height: 54px;
      border: 1px solid rgba(255, 255, 255, 0.1);
      border-radius: 18px;
      background: rgba(255, 255, 255, 0.055);
      margin-bottom: 9px;
      padding: 0 17px;
      font-weight: 800;
    }

    .hero {
      position: relative;
      min-height: 100svh;
      padding: 132px 0 70px;
      overflow: hidden;
      isolation: isolate;
    }

    .page-hero {
      position: relative;
      min-height: 62svh;
      padding: 132px 0 64px;
      overflow: hidden;
      isolation: isolate;
    }

    .page-hero .lead {
      max-width: 760px;
    }

    .page-actions {
      display: flex;
      flex-direction: column;
      gap: 12px;
      margin-top: 28px;
    }

    .mini-band {
      display: grid;
      gap: 14px;
      margin-top: 26px;
    }

    .mini-band .stat {
      min-height: 110px;
    }

    .mesh,
    .hero::before,
    .section::before {
      content: "";
      position: absolute;
      inset: 0;
      z-index: -3;
      pointer-events: none;
    }

    .mesh {
      background:
        linear-gradient(120deg, transparent, rgba(var(--yellow-rgb), 0.09), transparent),
        radial-gradient(circle at 18% 30%, rgba(var(--orange-rgb), 0.15), transparent 22rem),
        radial-gradient(circle at 82% 26%, rgba(var(--mint-rgb), 0.13), transparent 20rem),
        radial-gradient(circle at 50% 96%, rgba(var(--magenta-rgb), 0.12), transparent 24rem);
      background-size: 220% 220%, auto, auto, auto;
      animation: shimmer 12s linear infinite;
    }

    .grid-noise {
      position: absolute;
      inset: 0;
      z-index: -2;
      pointer-events: none;
      opacity: 0.22;
      background-image:
        linear-gradient(rgba(255, 255, 255, 0.035) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 255, 255, 0.035) 1px, transparent 1px);
      background-size: 44px 44px;
      mask-image: radial-gradient(circle at center, black, transparent 74%);
    }

    #particles {
      position: absolute;
      inset: 0;
      z-index: -1;
      overflow: hidden;
    }

    .particle {
      position: absolute;
      width: 4px;
      height: 4px;
      border-radius: 999px;
      background: var(--neon);
      box-shadow: 0 0 18px rgba(var(--yellow-rgb), 0.8);
      animation: particleFloat linear infinite;
    }

    .particle:nth-child(3n) {
      background: var(--magenta);
      box-shadow: 0 0 18px rgba(var(--magenta-rgb), 0.72);
    }

    .particle:nth-child(3n + 2) {
      background: var(--mint);
      box-shadow: 0 0 18px rgba(var(--mint-rgb), 0.72);
    }

    .hero-grid {
      display: grid;
      gap: 46px;
      align-items: center;
    }

    .hero-copy {
      position: relative;
      z-index: 1;
    }

    .hero-actions {
      display: grid;
      grid-template-columns: 1fr;
      gap: 12px;
      margin-top: 30px;
    }

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

    .stat {
      border-radius: 22px;
      padding: 16px;
      background: rgba(255, 255, 255, 0.055);
      backdrop-filter: blur(12px);
    }

    .stat strong {
      display: block;
      font-family: "Space Grotesk", sans-serif;
      font-size: 1.55rem;
      color: #ffffff;
    }

    .stat span {
      display: block;
      margin-top: 2px;
      color: var(--soft);
      font-size: 0.78rem;
      font-weight: 900;
      text-transform: uppercase;
    }

    .hero-visual {
      position: relative;
      min-height: 520px;
    }

    .device {
      position: absolute;
      left: 50%;
      top: 8px;
      width: min(78vw, 340px);
      height: 460px;
      transform: translateX(-50%);
      border-radius: 38px;
      padding: 12px;
      animation: float 6s ease-in-out infinite;
    }

    .device-screen {
      position: relative;
      height: 100%;
      overflow: hidden;
      border: 1px solid rgba(255, 255, 255, 0.1);
      border-radius: 30px;
      background: #11161b;
    }

    .device-screen img {
      height: 100%;
      object-fit: cover;
      opacity: 0.82;
      transform: scale(1.01);
      transition: opacity 0.48s ease, transform 1.1s ease, filter 0.55s ease;
      animation: imageBreath 7s ease-in-out infinite;
    }

    .device-screen img.is-changing {
      opacity: 0;
      transform: scale(1.06);
      filter: blur(5px) saturate(1.08);
      animation: none;
    }

    .device-screen::before {
      content: "";
      position: absolute;
      inset: -20% -70%;
      z-index: 1;
      background: linear-gradient(105deg, transparent 40%, rgba(255, 255, 255, 0.22), transparent 60%);
      transform: translateX(-45%) rotate(8deg);
      animation: glassSweep 4.8s ease-in-out infinite;
      pointer-events: none;
    }

    .device-screen::after {
      content: "";
      position: absolute;
      inset: 0;
      z-index: 1;
      background: linear-gradient(to top, rgba(11, 15, 19, 0.92), transparent 58%);
    }

    .visual-label {
      position: absolute;
      left: 16px;
      right: 16px;
      bottom: 16px;
      z-index: 3;
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 14px;
      border: 1px solid rgba(255, 255, 255, 0.1);
      border-radius: 22px;
      background: rgba(11, 15, 19, 0.58);
      padding: 14px;
      backdrop-filter: blur(12px);
    }

    .visual-label span {
      color: var(--neon);
      font-size: 0.72rem;
      font-weight: 900;
      text-transform: uppercase;
    }

    .visual-label strong {
      display: block;
      margin-top: 3px;
      color: #ffffff;
      font-family: "Space Grotesk", sans-serif;
      font-size: 1.05rem;
    }

    .floating-card {
      position: absolute;
      width: 165px;
      border-radius: 24px;
      padding: 14px;
      animation: drift 7s ease-in-out infinite;
    }

    .floating-card.left {
      left: 0;
      top: 72px;
    }

    .floating-card.right {
      right: 0;
      top: 140px;
      animation-delay: -2.2s;
    }

    .floating-card.bottom {
      left: 26px;
      right: 26px;
      bottom: 30px;
      width: auto;
      animation-delay: -1s;
    }

    .floating-card-row {
      display: flex;
      align-items: center;
      gap: 11px;
    }

    .mini-icon {
      display: grid;
      width: 42px;
      height: 42px;
      flex: 0 0 auto;
      place-items: center;
      border-radius: 16px;
      background: linear-gradient(135deg, rgba(var(--yellow-rgb), 0.18), rgba(var(--magenta-rgb), 0.1), rgba(var(--mint-rgb), 0.12));
      color: var(--yellow);
    }

    .floating-card small {
      display: block;
      color: var(--soft);
      font-size: 0.68rem;
      font-weight: 900;
      text-transform: uppercase;
    }

    .floating-card strong {
      display: block;
      margin-top: 3px;
      color: #ffffff;
      font-family: "Space Grotesk", sans-serif;
      font-size: 1.05rem;
    }

    .service-tabs,
    .portfolio-tabs {
      display: flex;
      gap: 10px;
      margin-top: 32px;
      padding-bottom: 10px;
      overflow-x: auto;
      scrollbar-width: thin;
      scrollbar-color: var(--neon) rgba(255, 255, 255, 0.08);
    }

    .tab {
      flex: 0 0 auto;
      border: 1px solid rgba(255, 255, 255, 0.11);
      border-radius: 999px;
      background: rgba(255, 255, 255, 0.055);
      color: rgba(255, 255, 255, 0.74);
      padding: 12px 17px;
      font-weight: 900;
      transition: 0.25s ease;
    }

    .tab.active,
    .tab:hover {
      border-color: rgba(var(--orange-rgb), 0.68);
      background: var(--logo-gradient);
      color: var(--ink);
      box-shadow: var(--logo-glow);
    }

    .services-grid {
      display: grid;
      grid-template-columns: repeat(2, minmax(0, 1fr));
      gap: 15px;
      margin-top: 24px;
    }

    .service-card {
      position: relative;
      overflow: hidden;
      border-radius: 26px;
      background: rgba(255, 255, 255, 0.05);
      padding: 12px;
      transform: translateZ(0);
      transition: transform 0.32s ease, border-color 0.28s ease, box-shadow 0.32s ease;
    }

    .service-card:hover,
    .feature-card:hover,
    .process-card:hover,
    .portfolio-card:hover {
      transform: translateY(-8px);
    }

    .service-card:hover,
    .feature-card:hover,
    .process-card:hover {
      box-shadow: 0 26px 70px rgba(0, 0, 0, 0.34), 0 16px 36px rgba(var(--gold-rgb), 0.08);
    }

    .service-img {
      position: relative;
      height: 154px;
      overflow: hidden;
      border-radius: 20px;
      background: var(--graphite);
    }

    .service-img::after {
      content: "";
      position: absolute;
      inset: 0;
      background: linear-gradient(110deg, transparent 24%, rgba(255, 255, 255, 0.2), transparent 46%);
      opacity: 0;
      transform: translateX(-70%);
      transition: opacity 0.35s ease, transform 0.7s ease;
      pointer-events: none;
    }

    .service-img img,
    .portfolio-card img {
      height: 100%;
      object-fit: cover;
      opacity: 0.78;
      transition: opacity 0.55s ease, transform 0.65s ease, filter 0.55s ease;
    }

    .service-card:hover img,
    .portfolio-card:hover img {
      opacity: 0.94;
      transform: scale(1.08);
      filter: saturate(1.05) contrast(1.02);
    }

    .service-card:hover .service-img::after {
      opacity: 1;
      transform: translateX(72%);
    }

    .service-card:hover .card-icon {
      transform: translateY(-2px) rotate(-2deg);
    }

    .service-category {
      position: absolute;
      left: 12px;
      top: 12px;
      border: 1px solid rgba(255, 255, 255, 0.13);
      border-radius: 999px;
      background: rgba(0, 0, 0, 0.36);
      color: rgba(255, 255, 255, 0.75);
      padding: 6px 10px;
      font-size: 0.7rem;
      font-weight: 900;
      backdrop-filter: blur(12px);
    }

    .service-body {
      padding: 16px 6px 6px;
    }

    .service-top {
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 14px;
      margin-bottom: 16px;
    }

    .card-icon {
      display: grid;
      width: 48px;
      height: 48px;
      place-items: center;
      border: 1px solid rgba(var(--orange-rgb), 0.36);
      border-radius: 18px;
      background: linear-gradient(135deg, rgba(var(--yellow-rgb), 0.15), rgba(var(--magenta-rgb), 0.1), rgba(var(--mint-rgb), 0.12));
      color: var(--yellow);
      box-shadow: var(--logo-glow);
      transition: transform 0.28s ease, border-color 0.28s ease, background 0.28s ease;
    }

    .service-card p,
    .feature-card p,
    .process-card p {
      margin-top: 12px;
      font-size: 0.93rem;
    }

    .split {
      display: grid;
      gap: 38px;
    }

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

    .counter-box,
    .feature-card {
      border-radius: 24px;
      padding: 18px;
      background: rgba(255, 255, 255, 0.055);
    }

    .counter-box strong {
      display: block;
      color: #ffffff;
      font-family: "Space Grotesk", sans-serif;
      font-size: clamp(1.8rem, 9vw, 2.7rem);
    }

    .counter-box span {
      display: block;
      margin-top: 5px;
      color: var(--soft);
      font-size: 0.72rem;
      font-weight: 900;
      line-height: 1.45;
      text-transform: uppercase;
    }

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

    .feature-card {
      position: relative;
      transition: transform 0.28s ease, border-color 0.28s ease;
    }

    .feature-card h3 {
      margin-top: 18px;
    }

    .portfolio-rail {
      display: flex;
      gap: 14px;
      margin-top: 26px;
      padding-bottom: 14px;
      overflow-x: auto;
      scrollbar-width: thin;
      scrollbar-color: var(--neon) rgba(255, 255, 255, 0.08);
    }

    .rail-card {
      position: relative;
      flex: 0 0 280px;
      height: 240px;
      overflow: hidden;
      border: 1px solid rgba(255, 255, 255, 0.1);
      border-radius: 24px;
      background: rgba(255, 255, 255, 0.055);
      text-align: left;
    }

    .portfolio-grid {
      display: grid;
      grid-template-columns: repeat(2, minmax(0, 1fr));
      gap: 15px;
      margin-top: 26px;
    }

    .portfolio-card {
      position: relative;
      height: 320px;
      overflow: hidden;
      border: 1px solid rgba(255, 255, 255, 0.1);
      border-radius: 26px;
      background: rgba(255, 255, 255, 0.055);
      text-align: left;
      transition: transform 0.28s ease;
    }

    .portfolio-card.tall {
      height: 390px;
    }

    .portfolio-card.wide {
      height: 260px;
    }

    .portfolio-overlay {
      position: absolute;
      inset: 0;
      display: flex;
      flex-direction: column;
      justify-content: flex-end;
      background: linear-gradient(to top, rgba(11, 15, 19, 0.92), transparent 58%);
      padding: 20px;
    }

    .portfolio-overlay span {
      width: fit-content;
      border: 1px solid rgba(255, 255, 255, 0.13);
      border-radius: 999px;
      background: rgba(0, 0, 0, 0.38);
      color: var(--neon);
      padding: 7px 11px;
      font-size: 0.72rem;
      font-weight: 900;
      backdrop-filter: blur(12px);
    }

    .portfolio-overlay h3 {
      margin-top: 12px;
      color: #ffffff;
      font-size: 1.45rem;
    }

    .process-wrap {
      position: relative;
      margin-top: 44px;
    }

    .process-line {
      position: absolute;
      left: 25px;
      top: 0;
      bottom: 0;
      width: 1px;
      background: linear-gradient(var(--gold), var(--orange), var(--magenta), var(--mint));
      opacity: 0.65;
    }

    .process-grid {
      display: grid;
      gap: 15px;
    }

    .process-card {
      position: relative;
      border-radius: 25px;
      padding: 20px;
      background: rgba(255, 255, 255, 0.055);
      transition: transform 0.28s ease;
    }

    .step-number {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      width: 48px;
      height: 48px;
      border: 1px solid rgba(var(--orange-rgb), 0.42);
      border-radius: 18px;
      background: linear-gradient(135deg, rgba(var(--yellow-rgb), 0.16), rgba(var(--orange-rgb), 0.1), rgba(var(--magenta-rgb), 0.1));
      color: var(--yellow);
      box-shadow: var(--logo-glow);
      font-family: "Space Grotesk", sans-serif;
      font-weight: 900;
    }

    .process-card h3 {
      margin-top: 18px;
    }

    .testimonial-layout {
      display: grid;
      gap: 16px;
      margin-top: 38px;
    }

    .testimonial-list {
      display: grid;
      gap: 10px;
    }

    .testimonial-tab {
      display: flex;
      align-items: center;
      gap: 12px;
      border: 1px solid rgba(255, 255, 255, 0.1);
      border-radius: 22px;
      background: rgba(255, 255, 255, 0.052);
      color: #ffffff;
      padding: 13px;
      text-align: left;
      transition: 0.25s ease;
    }

    .testimonial-tab.active {
      border-color: rgba(var(--mint-rgb), 0.48);
      background: linear-gradient(90deg, rgba(var(--yellow-rgb), 0.12), rgba(var(--magenta-rgb), 0.1), rgba(var(--mint-rgb), 0.1));
      box-shadow: var(--logo-glow);
    }

    .avatar {
      display: grid;
      width: 48px;
      height: 48px;
      flex: 0 0 auto;
      place-items: center;
      border-radius: 999px;
      background: var(--logo-gradient);
      color: var(--ink);
      font-family: "Space Grotesk", sans-serif;
      font-weight: 900;
    }

    .testimonial-card {
      min-height: 360px;
      border-radius: 30px;
      padding: 24px;
      background: rgba(255, 255, 255, 0.06);
    }

    .stars {
      display: flex;
      gap: 4px;
      color: var(--neon);
      margin-bottom: 22px;
    }

    .quote {
      color: #ffffff;
      font-family: "Space Grotesk", sans-serif;
      font-size: clamp(1.45rem, 6vw, 2.65rem);
      font-weight: 900;
      line-height: 1.25;
    }

    .testimonial-bottom {
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 14px;
      margin-top: 34px;
      border-top: 1px solid rgba(255, 255, 255, 0.1);
      padding-top: 22px;
    }

    .cta-box {
      position: relative;
      overflow: hidden;
      border-radius: 32px;
      padding: 28px;
      background:
        radial-gradient(circle at 84% 15%, rgba(var(--yellow-rgb), 0.2), transparent 18rem),
        radial-gradient(circle at 12% 90%, rgba(var(--mint-rgb), 0.14), transparent 18rem),
        radial-gradient(circle at 82% 88%, rgba(var(--magenta-rgb), 0.12), transparent 16rem),
        linear-gradient(135deg, rgba(var(--orange-rgb), 0.08), transparent 42%),
        rgba(255, 255, 255, 0.065);
    }

    .cta-grid {
      display: grid;
      gap: 28px;
      align-items: center;
    }

    .contact-grid {
      display: grid;
      gap: 26px;
    }

    .contact-cards {
      display: grid;
      gap: 12px;
      margin-top: 28px;
    }

    .contact-card {
      display: flex;
      gap: 13px;
      align-items: flex-start;
      border-radius: 24px;
      padding: 16px;
      transition: 0.25s ease;
    }

    .contact-card:hover {
      border-color: rgba(var(--mint-rgb), 0.42);
      background: linear-gradient(90deg, rgba(var(--yellow-rgb), 0.08), rgba(var(--mint-rgb), 0.08));
    }

    .contact-card small {
      display: block;
      color: var(--soft);
      font-weight: 900;
      text-transform: uppercase;
    }

    .contact-card strong {
      display: block;
      margin-top: 4px;
      color: #ffffff;
      line-height: 1.45;
      word-break: break-word;
    }

    .contact-form {
      border-radius: 30px;
      padding: 18px;
      background: rgba(255, 255, 255, 0.06);
    }

    .form-grid {
      display: grid;
      gap: 13px;
    }

    label {
      display: grid;
      gap: 8px;
      color: #ffffff;
      font-size: 0.9rem;
      font-weight: 800;
    }

    input,
    select,
    textarea {
      width: 100%;
      border: 1px solid rgba(255, 255, 255, 0.12);
      border-radius: 18px;
      background: rgba(0, 0, 0, 0.34);
      color: #ffffff;
      outline: none;
      padding: 14px 15px;
      transition: 0.22s ease;
    }

    textarea {
      min-height: 140px;
      resize: vertical;
    }

    select option {
      background: #0b0f13;
    }

    input::placeholder,
    textarea::placeholder {
      color: rgba(255, 255, 255, 0.34);
    }

    input:focus,
    select:focus,
    textarea:focus {
      border-color: var(--neon);
      box-shadow: 0 0 0 3px rgba(var(--yellow-rgb), 0.14), 0 0 22px rgba(var(--magenta-rgb), 0.08);
    }

    .map-box {
      position: relative;
      min-height: 320px;
      overflow: hidden;
      border-radius: 30px;
      background:
        linear-gradient(135deg, rgba(var(--yellow-rgb), 0.17), rgba(var(--orange-rgb), 0.14), rgba(var(--mint-rgb), 0.11), rgba(var(--magenta-rgb), 0.1)),
        rgba(255, 255, 255, 0.055);
    }

    .map-box::before {
      content: "";
      position: absolute;
      inset: 0;
      background-image:
        linear-gradient(rgba(255, 255, 255, 0.05) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 255, 255, 0.05) 1px, transparent 1px);
      background-size: 38px 38px;
      opacity: 0.55;
    }

    .map-photo {
      position: absolute;
      inset: 0;
      width: 100%;
      height: 100%;
      object-fit: cover;
      opacity: 0.24;
      filter: saturate(1.08) contrast(1.05);
    }

    .map-content {
      position: relative;
      z-index: 1;
      display: flex;
      min-height: 320px;
      flex-direction: column;
      justify-content: space-between;
      padding: 24px;
    }

    .site-footer {
      position: relative;
      border-top: 1px solid rgba(255, 255, 255, 0.1);
      background: rgba(0, 0, 0, 0.42);
      padding: 54px 0 22px;
      overflow: hidden;
    }

    .footer-grid {
      display: grid;
      gap: 32px;
    }

    .footer-title {
      margin-bottom: 17px;
      color: #ffffff;
      font-family: "Space Grotesk", sans-serif;
      font-size: 1.15rem;
      font-weight: 900;
    }

    .footer-links {
      display: grid;
      gap: 11px;
      list-style: none;
    }

    .footer-links a {
      color: rgba(255, 255, 255, 0.58);
      font-weight: 700;
      transition: 0.2s ease;
    }

    .footer-links a:hover {
      color: var(--neon);
    }

    .socials {
      display: flex;
      gap: 10px;
      margin-top: 18px;
    }

    .newsletter {
      display: flex;
      margin-top: 15px;
      border: 1px solid rgba(255, 255, 255, 0.1);
      border-radius: 999px;
      background: rgba(255, 255, 255, 0.055);
      padding: 4px;
    }

    .newsletter input {
      min-width: 0;
      border: 0;
      background: transparent;
      padding-inline: 14px;
    }

    .newsletter button {
      display: grid;
      width: 45px;
      height: 45px;
      flex: 0 0 auto;
      place-items: center;
      border: 0;
      border-radius: 999px;
      background: var(--logo-gradient);
      color: var(--ink);
    }

    .footer-bottom {
      display: flex;
      flex-direction: column;
      gap: 13px;
      margin-top: 36px;
      border-top: 1px solid rgba(255, 255, 255, 0.1);
      padding-top: 20px;
      color: var(--soft);
      font-size: 0.9rem;
    }

    .float-actions {
      position: fixed;
      right: 14px;
      bottom: 14px;
      z-index: 90;
      display: grid;
      gap: 10px;
    }

    .whatsapp-float {
      display: grid;
      width: 58px;
      height: 58px;
      place-items: center;
      border-radius: 999px;
      background: var(--mint);
      color: var(--ink);
      box-shadow: 0 0 52px rgba(var(--mint-rgb), 0.44), 0 0 34px rgba(var(--yellow-rgb), 0.18);
      animation: pulseGlow 2.4s ease-in-out infinite;
    }

    .call-float {
      display: grid;
      width: 50px;
      height: 50px;
      place-items: center;
      border: 1px solid rgba(255, 255, 255, 0.12);
      border-radius: 999px;
      background: rgba(255, 255, 255, 0.1);
      color: #ffffff;
      backdrop-filter: blur(10px);
    }

    .lightbox {
      position: fixed;
      inset: 0;
      z-index: 180;
      display: none;
      place-items: center;
      background: rgba(0, 0, 0, 0.82);
      padding: 16px;
      backdrop-filter: blur(12px);
    }

    .lightbox.open {
      display: grid;
    }

    .lightbox-panel {
      position: relative;
      width: min(100%, 980px);
      overflow: hidden;
      border-radius: 30px;
      background: var(--graphite);
    }

    .lightbox-img {
      height: min(66vh, 620px);
      background: #11161b;
    }

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

    .lightbox-info {
      padding: 22px;
    }

    .lightbox-close {
      position: absolute;
      right: 14px;
      top: 14px;
      z-index: 2;
      background: rgba(0, 0, 0, 0.48);
    }

    .reveal {
      opacity: 0;
      transform: translateY(34px);
      transition: opacity 0.72s ease, transform 0.72s ease;
    }

    .reveal.visible {
      opacity: 1;
      transform: translateY(0);
    }

    @keyframes shimmer {
      0% { background-position: 0% 50%; }
      100% { background-position: 220% 50%; }
    }

    @keyframes glassSweep {
      0%, 38% { transform: translateX(-45%) rotate(8deg); opacity: 0; }
      48% { opacity: 0.75; }
      70%, 100% { transform: translateX(45%) rotate(8deg); opacity: 0; }
    }

    @keyframes imageBreath {
      0%, 100% { transform: scale(1.01); }
      50% { transform: scale(1.045); }
    }

    @keyframes float {
      0%, 100% { transform: translate(-50%, 0); }
      50% { transform: translate(-50%, -16px); }
    }

    @keyframes lift {
      0%, 100% { transform: translateY(0); }
      50% { transform: translateY(-12px); }
    }

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

    @keyframes pulseGlow {
      0%, 100% { transform: scale(1); box-shadow: 0 0 30px rgba(var(--mint-rgb), 0.34); }
      50% { transform: scale(1.08); box-shadow: 0 0 58px rgba(var(--mint-rgb), 0.5), 0 0 34px rgba(var(--yellow-rgb), 0.2); }
    }

    @keyframes particleFloat {
      0% { transform: translateY(0) scale(0.8); opacity: 0; }
      20% { opacity: 0.8; }
      100% { transform: translateY(-120px) scale(1.45); opacity: 0; }
    }

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

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

    @media (max-width: 559px) {
      .container {
        width: min(100% - 20px, 1200px);
      }

      .services-grid,
      .portfolio-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 10px;
      }

      .service-card {
        border-radius: 18px;
        padding: 7px;
      }

      .service-img {
        height: 112px;
        border-radius: 14px;
      }

      .service-category {
        left: 7px;
        top: 7px;
        max-width: calc(100% - 14px);
        padding: 5px 7px;
        font-size: 0.58rem;
      }

      .service-body {
        padding: 11px 1px 3px;
      }

      .service-top {
        margin-bottom: 10px;
      }

      .service-card h3 {
        font-size: 0.92rem;
        line-height: 1.18;
      }

      .service-card p {
        display: none;
      }

      .card-icon,
      .service-card .icon-btn {
        width: 36px;
        height: 36px;
        border-radius: 13px;
      }

      .portfolio-card,
      .portfolio-card.tall,
      .portfolio-card.wide {
        height: 190px;
        border-radius: 18px;
      }

      .portfolio-overlay {
        padding: 12px;
      }

      .portfolio-overlay h3 {
        font-size: 1rem;
      }
    }

    @media (min-width: 560px) {
      .hero-actions {
        grid-template-columns: repeat(2, max-content);
      }

      .page-actions {
        flex-direction: row;
      }

      .stats,
      .mini-band,
      .form-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
      }

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

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

      .footer-bottom {
        flex-direction: row;
        align-items: center;
        justify-content: space-between;
      }
    }

    @media (min-width: 768px) {
      .section {
        padding: 108px 0;
      }

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

      .cta-box,
      .contact-form {
        padding: 30px;
      }

      .footer-grid {
        grid-template-columns: 1.15fr 0.7fr 0.9fr 1fr;
      }
    }

    @media (min-width: 980px) {
      .site-header {
        padding: 16px;
      }

      .menu-toggle {
        display: none;
      }

      .nav-links,
      .nav-actions {
        display: flex;
        align-items: center;
        gap: 4px;
      }

      .nav-links a {
        border-radius: 999px;
        padding: 10px 13px;
        color: rgba(255, 255, 255, 0.72);
        font-size: 0.9rem;
        font-weight: 800;
        transition: 0.25s ease;
      }

      .nav-links a:hover {
        background: rgba(255, 255, 255, 0.08);
        color: #ffffff;
      }

      .hero-grid,
      .split,
      .contact-grid,
      .testimonial-layout,
      .cta-grid {
        grid-template-columns: 1fr 1fr;
      }

      .hero-grid {
        gap: 26px;
      }

      .hero-visual {
        min-height: 610px;
      }

      .device {
        height: 560px;
        width: 390px;
      }

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

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

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

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

      .process-line {
        left: 0;
        right: 0;
        top: 52px;
        bottom: auto;
        width: auto;
        height: 1px;
      }

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

      .lightbox-panel {
        display: grid;
        grid-template-columns: 1.25fr 0.75fr;
      }

      .call-float {
        display: none;
      }

    }
