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

    html,
    body {
      width: 100%;
      height: 100%;
      overflow: hidden;
      background:
        radial-gradient(circle at 18% 8%, rgba(45, 127, 249, 0.20), transparent 34%),
        linear-gradient(135deg, #06111f 0%, #0b1627 48%, #07111f 100%);
      color: #fff;
      font-family: 'Outfit', sans-serif;
    }

    body::before {
      content: '';
      position: fixed;
      inset: 0;
      pointer-events: none;
      opacity: 0.38;
      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: linear-gradient(to bottom, black, transparent 82%);
    }

    body::after {
      content: '';
      position: fixed;
      inset: 0;
      z-index: 55;
      pointer-events: none;
      background: rgba(3,10,20,0.54);
      opacity: 0;
      backdrop-filter: blur(0);
      transition: opacity 220ms ease, backdrop-filter 220ms ease;
    }

    body.mobile-menu-open::after,
    body.chat-panel-open::after {
      opacity: 1;
      backdrop-filter: blur(5px);
    }

    .site-shell {
      position: relative;
      width: 100%;
      height: 100%;
      overflow: hidden;
    }

    .nav-bar {
      position: fixed;
      top: 0;
      left: 0;
      right: 0;
      z-index: 50;
      height: 74px;
      background: rgba(6, 17, 31, 0.94);
      border-bottom: 1px solid rgba(255,255,255,0.10);
      box-shadow: 0 18px 50px rgba(0,0,0,0.24);
    }

    .nav-link {
      position: relative;
      display: inline-flex;
      align-items: center;
      justify-content: center;
      min-height: 40px;
      padding: 0 15px;
      border-radius: 8px;
      color: rgba(255,255,255,0.76);
      font-size: 14px;
      font-weight: 600;
      cursor: pointer;
      transition: color 180ms ease, background 180ms ease;
    }

    .nav-link:hover,
    .nav-link.active {
      color: #fff;
      background: rgba(45,127,249,0.15);
    }

    .portal-nav {
      border: 1px solid rgba(0,199,247,0.22);
      background: rgba(0,199,247,0.08);
      color: #a8efff;
    }

    .nav-link.active::after {
      content: '';
      position: absolute;
      left: 16px;
      right: 16px;
      bottom: 5px;
      height: 2px;
      border-radius: 999px;
      background: linear-gradient(90deg, #2d7ff9, #22d3a6);
    }

    .mobile-menu {
      position: fixed;
      left: 0;
      right: 0;
      bottom: 0;
      z-index: 60;
      display: grid;
      gap: 8px;
      padding: 12px 14px max(18px, env(safe-area-inset-bottom));
      border: 1px solid rgba(255,255,255,0.12);
      border-radius: 18px 18px 0 0;
      background: #0b1728;
      box-shadow: 0 -22px 60px rgba(0,0,0,0.42);
      transform: translateY(calc(100% + 18px));
      opacity: 0;
      pointer-events: none;
      transition: transform 240ms cubic-bezier(.2,.8,.2,1), opacity 180ms ease;
    }

    .mobile-menu.open {
      transform: translateY(0);
      opacity: 1;
      pointer-events: auto;
    }

    .mobile-menu .nav-link {
      justify-content: flex-start;
      width: 100%;
      min-height: 48px;
      gap: 12px;
      border: 1px solid rgba(255,255,255,0.08);
      background: rgba(255,255,255,0.035);
      font-size: 15px;
      font-weight: 800;
    }

    .mobile-menu .nav-link.active::after {
      display: none;
    }

    .mobile-menu .nav-link.active {
      border-color: rgba(0,199,247,0.28);
      background: rgba(45,127,249,0.12);
    }

    .mobile-menu-handle {
      justify-self: center;
      width: 42px;
      height: 4px;
      margin: 2px 0 7px;
      border-radius: 999px;
      background: rgba(255,255,255,0.24);
    }

    .mobile-menu-cta {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      gap: 10px;
      min-height: 48px;
      margin-top: 4px;
      border-radius: 8px;
      background: linear-gradient(135deg, #2d7ff9, #00c7f7);
      color: #fff;
      font-weight: 900;
      box-shadow: 0 16px 32px rgba(45,127,249,0.22);
    }

    .section {
      position: absolute;
      inset: 74px 0 0 0;
      overflow-y: auto;
      opacity: 0;
      pointer-events: none;
      transform: translateY(14px);
      transition: opacity 260ms ease, transform 260ms ease;
      scroll-behavior: smooth;
    }

    .section.active {
      opacity: 1;
      pointer-events: auto;
      transform: translateY(0);
    }

    .section-inner {
      width: min(1180px, calc(100% - 32px));
      min-height: calc(100svh - 74px);
      margin: 0 auto;
      padding: 42px 0;
      display: flex;
      align-items: center;
    }

    .page-layout {
      width: 100%;
    }

    .section::-webkit-scrollbar {
      width: 7px;
    }

    .section::-webkit-scrollbar-thumb {
      background: rgba(255,255,255,0.18);
      border-radius: 999px;
    }

    .eyebrow {
      display: inline-flex;
      align-items: center;
      gap: 8px;
      min-height: 34px;
      padding: 0 13px;
      border: 1px solid rgba(34, 211, 166, 0.28);
      border-radius: 999px;
      background: rgba(34, 211, 166, 0.09);
      color: #8ff6dd;
      font-size: 13px;
      font-weight: 700;
    }

    .hero-title {
      max-width: 760px;
      font-size: clamp(2.45rem, 6vw, 5.4rem);
      line-height: 0.96;
      letter-spacing: 0;
      font-weight: 800;
    }

    .gradient-text {
      background: linear-gradient(135deg, #fff 38%, #7ddfff 68%, #22d3a6 100%);
      -webkit-background-clip: text;
      background-clip: text;
      color: transparent;
    }

    .lead {
      color: rgba(232,241,255,0.72);
      font-size: clamp(1rem, 2vw, 1.18rem);
      line-height: 1.7;
    }

    .home-particles {
      position: absolute;
      inset: 0;
      overflow: hidden;
      pointer-events: none;
      opacity: 0.42;
      mask-image: radial-gradient(circle at 50% 44%, black, transparent 72%);
    }

    .home-particles span {
      position: absolute;
      width: 3px;
      height: 3px;
      border-radius: 999px;
      background: rgba(255,255,255,0.72);
      box-shadow: 0 0 14px rgba(0,199,247,0.38);
      animation: particleDrift 18s ease-in-out infinite;
    }

    .home-particles span:nth-child(1) { left: 10%; top: 24%; animation-delay: -2s; }
    .home-particles span:nth-child(2) { left: 18%; top: 68%; animation-delay: -9s; }
    .home-particles span:nth-child(3) { left: 31%; top: 18%; animation-delay: -5s; }
    .home-particles span:nth-child(4) { left: 46%; top: 78%; animation-delay: -12s; }
    .home-particles span:nth-child(5) { left: 58%; top: 28%; animation-delay: -7s; }
    .home-particles span:nth-child(6) { left: 72%; top: 62%; animation-delay: -14s; }
    .home-particles span:nth-child(7) { left: 84%; top: 22%; animation-delay: -4s; }
    .home-particles span:nth-child(8) { left: 90%; top: 76%; animation-delay: -10s; }

    @keyframes particleDrift {
      0%, 100% { transform: translate3d(0, 0, 0); opacity: 0.22; }
      50% { transform: translate3d(12px, -18px, 0); opacity: 0.62; }
    }

    .btn {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      gap: 10px;
      min-height: 48px;
      padding: 0 20px;
      border-radius: 8px;
      font-weight: 700;
      white-space: nowrap;
      transition: transform 180ms ease, background 180ms ease, border 180ms ease;
    }

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

    .btn:disabled {
      cursor: not-allowed;
      opacity: 0.76;
      transform: none;
    }

    .btn-primary {
      background: linear-gradient(135deg, #2d7ff9, #00c7f7);
      color: white;
      box-shadow: 0 18px 38px rgba(45,127,249,0.25);
    }

    .btn-secondary {
      border: 1px solid rgba(255,255,255,0.16);
      background: rgba(255,255,255,0.06);
      color: white;
    }

    .panel {
      border: 1px solid rgba(255,255,255,0.11);
      border-radius: 8px;
      background: linear-gradient(180deg, rgba(19,36,58,0.92), rgba(10,24,42,0.92));
      box-shadow: 0 24px 70px rgba(0,0,0,0.25);
    }

    .tile {
      border: 1px solid rgba(255,255,255,0.10);
      border-radius: 8px;
      background: rgba(255,255,255,0.045);
      transition: transform 180ms ease, border-color 180ms ease, background 180ms ease;
    }

    .tile:hover {
      transform: translateY(-3px);
      border-color: rgba(0,199,247,0.34);
      background: rgba(45,127,249,0.09);
    }

    .icon-box {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      width: 46px;
      height: 46px;
      border-radius: 8px;
      background: linear-gradient(135deg, rgba(45,127,249,0.95), rgba(34,211,166,0.82));
      color: #fff;
      box-shadow: 0 14px 28px rgba(0,0,0,0.22);
    }

    .founder-card {
      display: grid;
      gap: 24px;
      grid-template-columns: auto 1fr;
      align-items: center;
      border: 1px solid rgba(255,255,255,0.11);
      border-radius: 8px;
      background:
        linear-gradient(135deg, rgba(45,127,249,0.12), transparent 44%),
        rgba(255,255,255,0.045);
      padding: 22px;
    }

    .founder-avatar {
      display: grid;
      place-items: center;
      width: 92px;
      height: 92px;
      border: 1px solid rgba(255,255,255,0.14);
      border-radius: 8px;
      background: linear-gradient(135deg, rgba(45,127,249,0.92), rgba(34,211,166,0.72));
      box-shadow: 0 18px 34px rgba(0,0,0,0.24);
    }

    .founder-meta {
      display: flex;
      flex-wrap: wrap;
      gap: 8px;
      margin-top: 16px;
    }

    .founder-chip {
      display: inline-flex;
      align-items: center;
      min-height: 30px;
      border: 1px solid rgba(255,255,255,0.10);
      border-radius: 999px;
      padding: 0 11px;
      color: rgba(255,255,255,0.66);
      font-size: 12px;
      font-weight: 700;
    }

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

    .project-card {
      display: grid;
      min-height: 100%;
      overflow: hidden;
      border: 1px solid rgba(255,255,255,0.10);
      border-radius: 8px;
      background: rgba(255,255,255,0.045);
      color: #fff;
      transition: transform 180ms ease, border-color 180ms ease, background 180ms ease;
    }

    .project-card:hover {
      transform: translateY(-3px);
      border-color: rgba(0,199,247,0.34);
      background: rgba(45,127,249,0.09);
    }

    .project-visual {
      position: relative;
      min-height: 132px;
      overflow: hidden;
      border-bottom: 1px solid rgba(255,255,255,0.09);
      background:
        linear-gradient(135deg, rgba(45,127,249,0.18), rgba(34,211,166,0.08)),
        rgba(6,17,31,0.82);
      display: grid;
      place-items: center;
      padding: 42px 18px 16px;
    }

    .project-badge {
      position: absolute;
      top: 18px;
      left: 18px;
      z-index: 2;
      display: inline-flex;
      align-items: center;
      gap: 8px;
      min-height: 34px;
      padding: 0 10px;
      border: 1px solid rgba(255,255,255,0.14);
      border-radius: 999px;
      background: rgba(6,17,31,0.72);
      color: rgba(255,255,255,0.86);
      font-size: 12px;
      font-weight: 800;
      text-transform: uppercase;
    }

    .project-art {
      display: grid;
      place-items: center;
      width: min(100%, 220px);
      min-height: 72px;
      border: 1px solid rgba(255,255,255,0.12);
      border-radius: 8px;
      background:
        linear-gradient(180deg, rgba(255,255,255,0.08), rgba(255,255,255,0.025)),
        rgba(6,17,31,0.58);
    }

.project-logo-mark {
  width: 58px;
  height: 58px;
  border-radius: 8px;
  object-fit: cover;
  border: 1px solid rgba(255,255,255,0.18);
  box-shadow: 0 12px 22px rgba(0,0,0,0.22);
}

.project-logo-round {
  border-radius: 999px;
}

    .info-card,
    .process-card {
      width: 100%;
      color: #fff;
      text-align: left;
      cursor: pointer;
    }

    .process-card {
      display: flex;
      align-items: center;
      gap: 10px;
      min-height: 58px;
    }

    .process-number {
      display: inline-grid;
      place-items: center;
      flex: 0 0 36px;
      width: 36px;
      height: 36px;
      border-radius: 8px;
      background: rgba(0,199,247,0.11);
      color: #8befff;
      font-size: 13px;
      font-weight: 900;
    }

    .process-name {
      font-weight: 800;
    }

    .info-modal {
      position: fixed;
      inset: 0;
      z-index: 100;
      display: flex;
      align-items: center;
      justify-content: center;
      padding: 18px;
      opacity: 0;
      visibility: hidden;
      pointer-events: none;
      transition: opacity 220ms ease, visibility 220ms ease;
    }

    .info-modal.open {
      opacity: 1;
      visibility: visible;
      pointer-events: auto;
    }

    .info-modal-backdrop {
      position: absolute;
      inset: 0;
      background: rgba(3,10,20,0.72);
      opacity: 0;
      transition: opacity 220ms ease;
    }

    .info-modal.open .info-modal-backdrop {
      opacity: 1;
    }

    .info-modal-card {
      position: relative;
      width: min(430px, 100%);
      border: 1px solid rgba(255,255,255,0.13);
      border-radius: 8px;
      background:
        linear-gradient(135deg, rgba(45,127,249,0.16), transparent 44%),
        linear-gradient(180deg, rgba(19,36,58,0.98), rgba(8,20,36,0.98));
      box-shadow: 0 30px 80px rgba(0,0,0,0.42);
      padding: 24px;
      opacity: 0;
      transform: translateY(18px) scale(0.96);
      transition: opacity 240ms ease, transform 240ms cubic-bezier(.2,.8,.2,1);
    }

    .info-modal.open .info-modal-card {
      opacity: 1;
      transform: translateY(0) scale(1);
    }

    .info-modal-close {
      position: absolute;
      top: 14px;
      right: 14px;
      display: grid;
      place-items: center;
      width: 38px;
      height: 38px;
      border: 1px solid rgba(255,255,255,0.13);
      border-radius: 999px;
      background: rgba(255,255,255,0.06);
      color: rgba(255,255,255,0.82);
    }

    .info-modal-icon {
      display: grid;
      place-items: center;
      width: 54px;
      height: 54px;
      margin-bottom: 16px;
      border-radius: 8px;
      background: linear-gradient(135deg, rgba(45,127,249,0.92), rgba(34,211,166,0.72));
      color: #fff;
      box-shadow: 0 16px 34px rgba(0,0,0,0.22);
    }

    .info-modal-icon {
      transform: scale(0.88);
      transition: transform 260ms cubic-bezier(.2,.8,.2,1) 70ms;
    }

    .info-modal.open .info-modal-icon {
      transform: scale(1);
    }

    .chat-widget {
      position: fixed;
      right: 18px;
      bottom: 18px;
      z-index: 90;
      transition: opacity 180ms ease, transform 180ms ease, visibility 180ms ease;
    }

    body.mobile-menu-open .chat-widget {
      opacity: 0;
      visibility: hidden;
      pointer-events: none;
      transform: translateY(12px);
    }

    .chat-toggle {
      position: relative;
      display: grid;
      place-items: center;
      width: 58px;
      height: 58px;
      border: 1px solid rgba(0,199,247,0.38);
      border-radius: 999px;
      background:
        radial-gradient(circle at 30% 20%, rgba(255,255,255,0.28), transparent 30%),
        linear-gradient(135deg, #2d7ff9, #00c7f7);
      color: #fff;
      box-shadow: 0 18px 42px rgba(0,0,0,0.34), 0 0 0 7px rgba(45,127,249,0.08);
      animation: chatFloat 3.8s ease-in-out infinite;
      transition: transform 180ms ease, box-shadow 180ms ease;
    }

    .chat-toggle::after {
      content: '';
      position: absolute;
      inset: -7px;
      border-radius: inherit;
      border: 1px solid rgba(0,199,247,0.18);
      opacity: 0.75;
      animation: chatGlow 2.8s ease-in-out infinite;
    }

    .chat-toggle:hover {
      transform: translateY(-2px);
      box-shadow: 0 22px 48px rgba(0,0,0,0.38), 0 0 0 8px rgba(45,127,249,0.12);
    }

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

    @keyframes chatGlow {
      0%, 100% { transform: scale(0.96); opacity: 0.34; }
      50% { transform: scale(1.08); opacity: 0.72; }
    }

    .chat-panel {
      position: absolute;
      right: 0;
      bottom: 72px;
      width: min(340px, calc(100vw - 32px));
      max-height: min(620px, calc(100svh - 108px));
      overflow: hidden;
      border: 1px solid rgba(255,255,255,0.13);
      border-radius: 8px;
      background:
        linear-gradient(135deg, rgba(45,127,249,0.12), transparent 45%),
        linear-gradient(180deg, #13243a, #081424);
      box-shadow: 0 28px 80px rgba(0,0,0,0.42);
      opacity: 0;
      pointer-events: none;
      transform: translateY(14px) scale(0.96);
      transform-origin: bottom right;
      transition: opacity 220ms ease, transform 240ms cubic-bezier(.2,.8,.2,1);
    }

    .chat-panel.open {
      opacity: 1;
      pointer-events: auto;
      transform: translateY(0) scale(1);
    }

    .chat-header {
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 14px;
      border-bottom: 1px solid rgba(255,255,255,0.09);
      padding: 14px;
    }

    .chat-close {
      display: grid;
      place-items: center;
      width: 36px;
      height: 36px;
      border: 1px solid rgba(255,255,255,0.13);
      border-radius: 999px;
      background: rgba(255,255,255,0.055);
      color: rgba(255,255,255,0.78);
    }

    .chat-body {
      display: grid;
      gap: 12px;
      max-height: calc(min(620px, calc(100svh - 108px)) - 78px);
      overflow-y: auto;
      padding: 14px;
      scrollbar-width: thin;
    }

    .chat-bubble {
      border: 1px solid rgba(255,255,255,0.10);
      border-radius: 8px;
      background: rgba(255,255,255,0.045);
      padding: 12px;
      color: rgba(255,255,255,0.72);
      font-size: 14px;
      line-height: 1.55;
    }

    .chat-actions {
      display: grid;
      gap: 8px;
    }

    .chat-actions button,
    .chat-actions a {
      display: flex;
      align-items: center;
      gap: 10px;
      min-height: 42px;
      border: 1px solid rgba(255,255,255,0.10);
      border-radius: 8px;
      background: rgba(255,255,255,0.045);
      color: rgba(255,255,255,0.82);
      padding: 0 12px;
      font-size: 13px;
      font-weight: 800;
      transition: border-color 180ms ease, background 180ms ease, color 180ms ease, transform 180ms ease;
    }

    .chat-actions button:hover,
    .chat-actions a:hover {
      transform: translateY(-1px);
      border-color: rgba(0,199,247,0.32);
      background: rgba(45,127,249,0.11);
      color: #fff;
    }

    .project-icon-art {
      display: grid;
      place-items: center;
      width: 58px;
      height: 58px;
      border-radius: 8px;
      background: linear-gradient(135deg, rgba(45,127,249,0.92), rgba(34,211,166,0.74));
      color: white;
      box-shadow: 0 12px 22px rgba(0,0,0,0.22);
    }

    .project-snapshot {
      display: grid;
      gap: 7px;
      width: min(100%, 180px);
      margin-top: 9px;
    }

    .snapshot-row {
      height: 6px;
      border-radius: 999px;
      background: rgba(255,255,255,0.11);
    }

    .snapshot-row.short {
      width: 62%;
      justify-self: center;
    }

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

    .snapshot-boxes span {
      min-height: 22px;
      border-radius: 8px;
      background: rgba(255,255,255,0.075);
    }

    .project-content {
      padding: 15px;
    }

    .project-meta {
      display: flex;
      flex-wrap: wrap;
      gap: 7px;
      margin-top: 12px;
    }

    .project-tag {
      display: inline-flex;
      min-height: 24px;
      align-items: center;
      border: 1px solid rgba(255,255,255,0.10);
      border-radius: 999px;
      padding: 0 9px;
      color: rgba(255,255,255,0.62);
      font-size: 12px;
      font-weight: 700;
    }

    .feedback-section {
      border: 1px solid rgba(255,255,255,0.10);
      border-radius: 8px;
      background: rgba(255,255,255,0.035);
      padding: 18px;
    }

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

    .feedback-note {
      display: inline-flex;
      align-items: center;
      gap: 10px;
      border: 1px solid rgba(255,255,255,0.10);
      border-radius: 8px;
      background: rgba(255,255,255,0.045);
      padding: 11px 13px;
      color: rgba(255,255,255,0.64);
      font-size: 14px;
      line-height: 1.55;
    }

    .feedback-note svg {
      flex: 0 0 16px;
      color: #8befff;
    }

    .testimonial-card,
    .testimonial-empty {
      border: 1px solid rgba(255,255,255,0.10);
      border-radius: 8px;
      background: rgba(255,255,255,0.045);
      padding: 16px;
    }

    .testimonial-empty {
      grid-column: 1 / -1;
      color: rgba(255,255,255,0.56);
      font-size: 14px;
      line-height: 1.6;
    }

    .testimonial-stars {
      color: #f8d66d;
      font-size: 13px;
      letter-spacing: 2px;
    }

    .testimonial-quote {
      margin: 12px 0;
      color: rgba(255,255,255,0.72);
      font-size: 14px;
      line-height: 1.65;
    }

    .testimonial-person {
      color: #fff;
      font-weight: 800;
    }

    .testimonial-meta {
      margin-top: 3px;
      color: rgba(255,255,255,0.48);
      font-size: 12px;
      line-height: 1.45;
    }

    .video-thumb {
      position: relative;
      display: grid;
      place-items: center;
      min-height: 130px;
      margin-bottom: 12px;
      overflow: hidden;
      border: 1px solid rgba(255,255,255,0.10);
      border-radius: 8px;
      background: linear-gradient(135deg, rgba(45,127,249,0.20), rgba(34,211,166,0.08)), rgba(6,17,31,0.70);
    }

    .video-thumb img {
      position: absolute;
      inset: 0;
      width: 100%;
      height: 100%;
      object-fit: cover;
      opacity: 0.72;
    }

    .play-button {
      position: relative;
      z-index: 1;
      display: grid;
      place-items: center;
      width: 52px;
      height: 52px;
      border-radius: 999px;
      background: rgba(255,255,255,0.92);
      color: #0d1a2d;
      box-shadow: 0 16px 34px rgba(0,0,0,0.28);
    }

    .video-modal-card {
      position: relative;
      width: min(860px, calc(100vw - 28px));
      border: 1px solid rgba(255,255,255,0.13);
      border-radius: 8px;
      background: #081424;
      box-shadow: 0 30px 80px rgba(0,0,0,0.46);
      padding: 12px;
      opacity: 0;
      transform: translateY(18px) scale(0.96);
      transition: opacity 240ms ease, transform 240ms cubic-bezier(.2,.8,.2,1);
    }

    .info-modal.open .video-modal-card {
      opacity: 1;
      transform: translateY(0) scale(1);
    }

    .video-modal-card iframe {
      display: block;
      width: 100%;
      aspect-ratio: 16 / 9;
      border: 0;
      border-radius: 8px;
      background: #000;
    }

    .project-link {
      display: inline-flex;
      align-items: center;
      gap: 8px;
      min-height: 36px;
      margin-top: 14px;
      border-radius: 8px;
      background: rgba(0,199,247,0.12);
      border: 1px solid rgba(0,199,247,0.24);
      padding: 0 12px;
      color: #a8efff;
      font-size: 13px;
      font-weight: 800;
    }

    .content-panel {
      border: 1px solid rgba(255,255,255,0.10);
      border-radius: 8px;
      background: rgba(255,255,255,0.04);
      padding: 18px;
    }

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

    .quick-chip {
      display: inline-flex;
      align-items: center;
      justify-content: flex-start;
      gap: 10px;
      min-height: 48px;
      border: 1px solid rgba(255,255,255,0.11);
      border-radius: 8px;
      background: rgba(255,255,255,0.045);
      color: rgba(255,255,255,0.78);
      padding: 10px 12px;
      text-align: left;
      font-size: 13px;
      font-weight: 800;
      line-height: 1.25;
      transition: transform 180ms ease, border-color 180ms ease, background 180ms ease, color 180ms ease;
    }

    .quick-chip svg {
      flex: 0 0 18px;
      width: 18px;
      height: 18px;
      color: #8befff;
    }

    .quick-chip:nth-child(5) {
      grid-column: 1 / -1;
    }

    .quick-chip:hover {
      transform: translateY(-2px);
      border-color: rgba(0,199,247,0.32);
      background: rgba(45,127,249,0.10);
      color: #fff;
    }

    .input {
      width: 100%;
      min-height: 46px;
      border: 1px solid rgba(255,255,255,0.12);
      border-radius: 8px;
      background: rgba(6,17,31,0.82);
      padding: 12px 14px;
      color: #fff;
      outline: none;
      font: inherit;
      transition: border 180ms ease, box-shadow 180ms ease;
    }

    .input:focus {
      border-color: rgba(0,199,247,0.78);
      box-shadow: 0 0 0 3px rgba(0,199,247,0.12);
    }

    textarea.input {
      min-height: 118px;
      resize: none;
    }

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

    .contact-intro {
      max-width: 820px;
      margin-bottom: 26px;
    }

    .contact-method {
      display: flex;
      align-items: center;
      gap: 16px;
      min-height: 70px;
      padding: 14px;
      border: 1px solid rgba(255,255,255,0.10);
      border-radius: 8px;
      background: rgba(255,255,255,0.045);
      color: #fff;
      transition: transform 180ms ease, border-color 180ms ease, background 180ms ease;
    }

    .contact-method:hover {
      transform: translateY(-2px);
      border-color: rgba(0,199,247,0.28);
      background: rgba(45,127,249,0.08);
    }

    .contact-card {
      overflow: hidden;
      min-height: 100%;
      border: 1px solid rgba(255,255,255,0.12);
      border-radius: 8px;
      background:
        linear-gradient(135deg, rgba(45,127,249,0.14), transparent 42%),
        linear-gradient(180deg, rgba(19,36,58,0.94), rgba(8,20,36,0.96));
      box-shadow: 0 24px 70px rgba(0,0,0,0.25);
    }

    .contact-card-top {
      padding: 22px;
      border-bottom: 1px solid rgba(255,255,255,0.09);
    }

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

    .form-toggle,
    .mini-link {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      gap: 10px;
      width: 100%;
      min-height: 44px;
      padding: 0 18px;
      line-height: 1;
      text-align: center;
      font-size: 14px;
    }

    .form-toggle svg,
    .mini-link svg {
      width: 18px;
      height: 18px;
      flex: 0 0 18px;
    }

    .form-toggle {
      border: 1px solid rgba(0,199,247,0.44);
      border-radius: 8px;
      background: linear-gradient(135deg, #2d7ff9, #00c7f7);
      color: #fff;
      font-weight: 800;
      white-space: nowrap;
      transition: transform 180ms ease, background 180ms ease, border-color 180ms ease;
      box-shadow: 0 14px 28px rgba(45,127,249,0.20);
    }

    .form-toggle:hover {
      transform: translateY(-2px);
      background: linear-gradient(135deg, #1f73ee, #00b6e6);
      border-color: rgba(34,211,166,0.50);
    }

    .form-toggle.is-hidden {
      display: none;
    }

    .mini-link {
      border: 1px solid rgba(255,255,255,0.13);
      border-radius: 8px;
      background: rgba(255,255,255,0.055);
      color: rgba(255,255,255,0.82);
      font-size: 14px;
      font-weight: 700;
      white-space: nowrap;
      transition: background 180ms ease, color 180ms ease;
    }

    .mini-link:hover {
      background: rgba(255,255,255,0.08);
      color: #fff;
    }

    .contact-stats {
      display: flex;
      flex-wrap: wrap;
      gap: 8px;
      padding: 16px 22px 22px;
    }

    .contact-stat {
      border: 1px solid rgba(255,255,255,0.09);
      border-radius: 999px;
      background: rgba(255,255,255,0.045);
      padding: 8px 11px;
      display: inline-flex;
      align-items: center;
      gap: 8px;
    }

    .form-shortcuts {
      display: flex;
      flex-wrap: wrap;
      gap: 8px;
    }

    .service-chip {
      min-height: 34px;
      border: 1px solid rgba(255,255,255,0.11);
      border-radius: 999px;
      background: rgba(255,255,255,0.045);
      color: rgba(255,255,255,0.72);
      padding: 0 11px;
      font-size: 12px;
      font-weight: 800;
      transition: background 180ms ease, border-color 180ms ease, color 180ms ease;
    }

    .service-chip:hover,
    .service-chip.active {
      border-color: rgba(0,199,247,0.34);
      background: rgba(0,199,247,0.12);
      color: #fff;
    }

    .status-card {
      border: 1px solid rgba(34,211,166,0.24);
      border-radius: 8px;
      background: rgba(34,211,166,0.08);
      padding: 13px 14px;
      color: #afffe8;
    }

    .status-card.error {
      border-color: rgba(248,113,113,0.28);
      background: rgba(248,113,113,0.09);
      color: #fecaca;
    }

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

    .next-step {
      min-height: 112px;
      border: 1px solid rgba(255,255,255,0.10);
      border-radius: 8px;
      background: rgba(255,255,255,0.045);
      padding: 13px;
    }

    .step-icon {
      display: inline-grid;
      place-items: center;
      width: 32px;
      height: 32px;
      margin-bottom: 10px;
      border-radius: 8px;
      background: rgba(0,199,247,0.13);
      color: #8befff;
    }

    .spinner {
      width: 17px;
      height: 17px;
      border: 2px solid rgba(255,255,255,0.32);
      border-top-color: #fff;
      border-radius: 999px;
      animation: spin 820ms linear infinite;
    }

    @keyframes spin {
      to { transform: rotate(360deg); }
    }

    .business-details {
      display: grid;
      gap: 10px;
      padding: 0 22px 22px;
    }

    .site-footer {
      display: flex;
      flex-wrap: wrap;
      justify-content: center;
      gap: 10px 16px;
      margin-top: 20px;
      border-top: 1px solid rgba(255,255,255,0.09);
      padding-top: 15px;
      color: rgba(255,255,255,0.48);
      font-size: 13px;
      font-weight: 700;
      text-align: center;
    }

    .site-footer a {
      color: rgba(255,255,255,0.72);
    }

    .site-footer a:hover {
      color: #fff;
    }

    .business-detail {
      display: flex;
      align-items: center;
      gap: 10px;
      color: rgba(255,255,255,0.62);
      font-size: 13px;
      font-weight: 700;
    }

    .contact-form {
      display: none;
    }

    .contact-form.open {
      display: grid;
      padding: 0 22px 22px;
    }

    .form-heading {
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 16px;
      padding-top: 22px;
      border-top: 1px solid rgba(255,255,255,0.09);
    }

    .form-dismiss {
      display: inline-grid;
      place-items: center;
      width: 38px;
      height: 38px;
      border: 1px solid rgba(255,255,255,0.14);
      border-radius: 999px;
      background: rgba(255,255,255,0.06);
      color: rgba(255,255,255,0.80);
      transition: background 180ms ease, color 180ms ease, transform 180ms ease;
    }

    .form-dismiss:hover {
      background: rgba(255,255,255,0.12);
      color: #fff;
      transform: rotate(90deg);
    }

    @media (max-width: 767px) {
      .nav-bar {
        height: 68px;
      }

      .section {
        top: 68px;
      }

      .section-inner {
        width: min(100% - 24px, 1180px);
        min-height: calc(100svh - 68px);
        padding: 24px 0 36px;
        align-items: flex-start;
      }

      .hero-title {
        font-size: clamp(2.1rem, 12vw, 3.45rem);
        line-height: 1.02;
      }

      .lead {
        font-size: 1rem;
        line-height: 1.62;
      }

      .home-particles {
        opacity: 0.20;
      }

      .btn {
        width: 100%;
      }

      .home-trust {
        grid-template-columns: repeat(3, minmax(0, 1fr));
        gap: 8px;
      }

      .home-trust .info-card {
        min-height: 84px;
        padding: 10px 8px;
        text-align: center;
      }

      .home-trust .info-card svg {
        margin-left: auto;
        margin-right: auto;
      }

      .home-trust .info-card p {
        font-size: 11px;
        line-height: 1.25;
      }

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

      .process-card {
        min-height: 52px;
        padding: 10px 12px;
      }

      .contact-grid,
      .contact-card-top,
      .contact-stats,
      .project-grid,
      .testimonial-grid,
      .quick-grid,
      .next-steps,
      .founder-card {
        grid-template-columns: 1fr;
      }

      .founder-avatar {
        width: 76px;
        height: 76px;
      }

      .contact-card-top,
      .contact-stats,
      .business-details,
      .contact-form.open {
        padding-left: 18px;
        padding-right: 18px;
      }

      .contact-actions {
        flex-direction: column;
        align-items: stretch;
      }

      .form-toggle,
      .mini-link {
        width: 100%;
      }

      .chat-widget {
        right: 14px;
        bottom: 14px;
      }

      .chat-toggle {
        width: 54px;
        height: 54px;
      }

      .chat-panel {
        right: 0;
        bottom: 66px;
        width: min(330px, calc(100vw - 28px));
        max-height: calc(100svh - 92px);
      }

      .chat-body {
        max-height: calc(100svh - 170px);
      }
    }

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

      .home-particles {
        display: none;
      }

      .chat-toggle,
      .chat-toggle::after {
        animation: none;
      }
    }

