    @font-face { font-family: 'Poppins'; font-style: normal; font-weight: 400; font-display: swap; src: url('/fonts/poppins-400.woff2') format('woff2'); }
    @font-face { font-family: 'Poppins'; font-style: normal; font-weight: 600; font-display: swap; src: url('/fonts/poppins-600.woff2') format('woff2'); }
    @font-face { font-family: 'Poppins'; font-style: normal; font-weight: 700; font-display: swap; src: url('/fonts/poppins-700.woff2') format('woff2'); }
    @font-face { font-family: 'Poppins'; font-style: normal; font-weight: 800; font-display: swap; src: url('/fonts/poppins-800.woff2') format('woff2'); }
    @font-face { font-family: 'Poppins'; font-style: normal; font-weight: 900; font-display: swap; src: url('/fonts/poppins-900.woff2') format('woff2'); }
    @font-face { font-family: 'Inter'; font-style: normal; font-weight: 300; font-display: swap; src: url('/fonts/inter-300.woff2') format('woff2'); }
    @font-face { font-family: 'Inter'; font-style: normal; font-weight: 400; font-display: swap; src: url('/fonts/inter-400.woff2') format('woff2'); }
    @font-face { font-family: 'Inter'; font-style: normal; font-weight: 500; font-display: swap; src: url('/fonts/inter-500.woff2') format('woff2'); }
    @font-face { font-family: 'Inter'; font-style: normal; font-weight: 600; font-display: swap; src: url('/fonts/inter-600.woff2') format('woff2'); }
    @font-face { font-family: 'Caveat'; font-style: normal; font-weight: 700; font-display: swap; src: url('/fonts/caveat-700.woff2') format('woff2'); }
    /* =============================================
       BRAND TOKENS
    ============================================= */
    :root {
      --dark:        #373643;
      --dark-deep:   #272632;
      --dark-mid:    #2f2e3a;
      --cyan:        #18CBCB;
      --cyan-hover:  #0FA5A7;
      --light-teal:  #B0F0F0;
      --pale-aqua:   #E5FAFA;
      --off-white:   #F5F7FA;
      --light-gray:  #E8ECF1;
      --mid-gray:    #6B7085;
      --body-text:   #555566;
      --white:       #FFFFFF;

      --font-head: 'Poppins', Arial, sans-serif;
      --font-body: 'Inter', Arial, sans-serif;

      --nav-h:    72px;
      --pad:      clamp(64px, 9vw, 110px);
      --wrap:     1200px;
      --radius:   12px;
      --ease:     0.25s ease;
    }

    /* =============================================
       RESET
    ============================================= */
    *, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
    html { scroll-behavior: smooth; font-size: 16px; }
    body { font-family: var(--font-body); color: var(--body-text); background: var(--white); line-height: 1.6; overflow-x: hidden; }
    img, svg { display: block; max-width: 100%; }
    a { color: inherit; text-decoration: none; }
    .text-white { color: var(--white); }
    .honeypot { display: none !important; }
    .toast-msg {
      position: fixed; bottom: 40px; left: 50%; transform: translateX(-50%) translateY(20px);
      opacity: 0; background: #e74c3c; color: var(--white);
      font-family: var(--font-head); font-weight: 700; font-size: 14px;
      padding: 14px 28px; border-radius: 8px; z-index: 9999;
      transition: opacity 0.4s ease, transform 0.4s ease;
      box-shadow: 0 8px 30px rgba(231,76,60,0.3); white-space: nowrap; max-width: 90vw;
    }
    .toast-msg.visible { opacity: 1; transform: translateX(-50%) translateY(0); }
    .skip-link {
      position: absolute; top: -100px; left: 16px; z-index: 10000;
      background: var(--cyan); color: var(--dark); padding: 12px 24px; border-radius: 6px;
      font-family: var(--font-head); font-weight: 700; font-size: 14px;
      text-decoration: none; transition: top 0.2s ease;
    }
    .skip-link:focus { top: 12px; }
    ul { list-style: none; }

    .wrap {
      max-width: var(--wrap);
      margin: 0 auto;
      padding: 0 clamp(20px, 5vw, 60px);
    }

    /* =============================================
       NOISE TEXTURE
    ============================================= */
    .noise { position: relative; }
    .noise::after {
      content: '';
      position: absolute;
      inset: 0;
      pointer-events: none;
      background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='200' height='200'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.75' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='200' height='200' filter='url(%23n)' opacity='0.035'/%3E%3C/svg%3E");
      background-repeat: repeat;
      mix-blend-mode: overlay;
      z-index: 0;
    }
    .noise > * { position: relative; z-index: 1; }

    /* =============================================
       KICKER
    ============================================= */
    .kicker {
      display: inline-block;
      font-family: var(--font-body);
      font-size: 11px;
      font-weight: 600;
      letter-spacing: 0.18em;
      text-transform: uppercase;
      color: var(--cyan);
      margin-bottom: 16px;
    }
    .kicker-light { color: var(--light-teal); }

    /* =============================================
       BUTTONS
    ============================================= */
    .btn {
      display: inline-flex;
      align-items: center;
      gap: 8px;
      padding: 14px 28px;
      border-radius: 6px;
      font-family: var(--font-body);
      font-size: 15px;
      font-weight: 600;
      cursor: pointer;
      transition: all var(--ease);
      border: 2px solid transparent;
      white-space: nowrap;
      line-height: 1;
    }
    .btn-primary {
      background: var(--cyan);
      color: #1a1a2e;
      border-color: var(--cyan);
      font-weight: 700;
    }
    .btn-primary:hover {
      background: var(--cyan-hover);
      border-color: var(--cyan-hover);
      transform: translateY(-1px);
      box-shadow: 0 8px 24px rgba(24,203,203,0.25);
    }
    .btn-outline {
      background: transparent;
      color: var(--white);
      border-color: rgba(255,255,255,0.5);
    }
    .btn-outline:hover {
      border-color: var(--cyan);
      color: var(--cyan);
    }

    /* =============================================
       SCROLL REVEAL
    ============================================= */
    .reveal {
      opacity: 0;
      transform: translateY(30px);
      transition: opacity 0.65s ease, transform 0.65s ease;
    }
    .reveal.visible { opacity: 1; transform: translateY(0); }
    .delay-1 { transition-delay: 0.10s; }
    .delay-2 { transition-delay: 0.20s; }
    .delay-3 { transition-delay: 0.30s; }
    .delay-4 { transition-delay: 0.40s; }

    /* =============================================
       1. NAV
    ============================================= */
    .nav {
      position: fixed;
      top: 0; left: 0; right: 0;
      height: var(--nav-h);
      z-index: 1000;
      background: rgba(39,38,50,0.85);
      backdrop-filter: blur(8px);
      -webkit-backdrop-filter: blur(8px);
      border-bottom: 1px solid rgba(255,255,255,0.06);
      transition: background var(--ease), backdrop-filter var(--ease), border-color var(--ease);
    }
    .nav.scrolled {
      background: rgba(39,38,50,0.97);
      backdrop-filter: blur(16px);
      -webkit-backdrop-filter: blur(16px);
      border-bottom-color: rgba(24,203,203,0.12);
    }
    .nav-inner {
      display: flex;
      align-items: center;
      justify-content: space-between;
      height: 100%;
    }
    .nav-logo svg { height: 38px; width: auto; }
    .nav-links {
      display: flex;
      align-items: center;
      gap: 32px;
    }
    .nav-links a {
      font-size: 14px;
      font-weight: 500;
      color: rgba(255,255,255,0.7);
      letter-spacing: 0.02em;
      transition: color var(--ease);
    }
    .nav-links a:hover { color: var(--cyan); }
    .nav-cta { padding: 10px 20px; font-size: 14px; color: #1a1a2e; }

    /* Hamburger */
    .hamburger {
      display: none;
      flex-direction: column;
      gap: 5px;
      cursor: pointer;
      padding: 10px;
      background: none;
      border: none;
    }
    .hamburger span {
      display: block;
      width: 24px;
      height: 2px;
      background: var(--white);
      border-radius: 2px;
      transition: all 0.3s ease;
    }
    .hamburger.active span:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
    .hamburger.active span:nth-child(2) { opacity: 0; }
    .hamburger.active span:nth-child(3) { transform: rotate(-45deg) translate(5px, -5px); }

    /* Mobile overlay */
    .mobile-menu {
      display: none;
      position: fixed;
      inset: 0;
      top: var(--nav-h);
      background: var(--dark);
      z-index: 999;
      flex-direction: column;
      align-items: center;
      justify-content: center;
      gap: 40px;
      opacity: 0;
      transform: translateY(-8px);
      transition: opacity 0.3s ease, transform 0.3s ease;
    }
    .mobile-menu.open { opacity: 1; transform: translateY(0); }
    .mobile-menu a {
      font-family: var(--font-head);
      font-size: 28px;
      font-weight: 700;
      color: var(--white);
      letter-spacing: -0.02em;
      transition: color var(--ease);
    }
    .mobile-menu a:hover { color: var(--cyan); }

    /* =============================================
       LANG SWITCH
    ============================================= */
    .lang-switch {
      display: flex;
      align-items: center;
      gap: 6px;
      margin-left: 8px;
    }
    .lang-btn {
      background: none;
      border: none;
      font-family: var(--font-head);
      font-size: 11px;
      font-weight: 700;
      letter-spacing: 0.08em;
      text-transform: uppercase;
      color: var(--mid-gray);
      cursor: pointer;
      padding: 8px 6px;
      min-height: 44px;
      display: inline-flex;
      align-items: center;
      transition: color 0.2s;
    }
    .lang-btn.active { color: var(--white); }
    .lang-btn:hover { color: var(--cyan); }
    .lang-sep { color: rgba(255,255,255,0.15); font-size: 11px; }

    /* Mobile lang switch */
    .mobile-menu .lang-switch {
      margin-left: 0;
      gap: 10px;
    }
    .mobile-menu .lang-btn {
      font-size: 14px;
      padding: 4px 8px;
    }
    .mobile-menu .lang-sep { font-size: 14px; }

    /* =============================================
       2. HERO
    ============================================= */
    .hero {
      position: relative;
      min-height: 100vh;
      background: var(--dark);
      display: flex;
      align-items: center;
      padding-top: var(--nav-h);
      overflow: hidden;
    }

    /* Faded background chevron */
    .hero-bg {
      position: absolute;
      inset: 0;
      pointer-events: none;
      display: flex;
      align-items: center;
      justify-content: flex-end;
      overflow: hidden;
    }
    .hero-bg svg {
      width: min(75vw, 680px);
      height: min(75vw, 680px);
      opacity: 0.045;
      transform: translateX(12%);
      animation: bgPulse 7s ease-in-out infinite;
      flex-shrink: 0;
    }
    @keyframes bgPulse {
      0%,100% { opacity: 0.045; transform: translateX(12%) scale(1); }
      50%      { opacity: 0.07;  transform: translateX(12%) scale(1.04); }
    }

    /* =============================================
       KEYBOARD INTRO
    ============================================= */
    .keyboard-intro {
      position: absolute;
      inset: 0;
      display: flex;
      flex-direction: column;
      align-items: center;
      justify-content: center;
      z-index: 10;
      pointer-events: none;
      background: var(--dark);
      will-change: opacity;
      contain: paint;
      transition: opacity 0.3s ease;
    }
    .keyboard-intro.fade-out { opacity: 0; }
    .keys-row {
      display: flex;
      align-items: center;
      gap: 14px;
    }
    .key {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      padding: 16px 26px;
      background: linear-gradient(180deg, rgba(80,78,105,0.97) 0%, rgba(45,44,60,0.97) 100%);
      border: 1px solid rgba(255,255,255,0.16);
      border-bottom: 4px solid rgba(0,0,0,0.45);
      border-radius: 10px;
      box-shadow: 0 6px 18px rgba(0,0,0,0.5), inset 0 1px 0 rgba(255,255,255,0.14);
      font-family: var(--font-head);
      font-size: 24px;
      font-weight: 700;
      letter-spacing: 0.04em;
      color: rgba(255,255,255,0.88);
      text-transform: lowercase;
      transition: transform 0.1s ease, border-bottom-width 0.1s ease, box-shadow 0.1s ease;
      user-select: none;
    }
    .key.grow { color: var(--cyan); }
    .key.pressed {
      transform: translateY(3px);
      border-bottom-width: 1px;
      box-shadow: 0 1px 6px rgba(0,0,0,0.45), inset 0 1px 0 rgba(255,255,255,0.08);
    }
    .keyboard-flash {
      position: fixed;
      inset: 0;
      background: white;
      opacity: 0;
      pointer-events: none;
      z-index: 9999;
      transition: opacity 0.15s ease;
    }

    .hero-content {
      position: relative;
      z-index: 2;
      padding: clamp(60px, 9vw, 120px) 0;
      opacity: 0;
      transition: opacity 0.5s ease;
    }
    .hero-tag {
      display: inline-block;
      font-size: 11px;
      font-weight: 600;
      letter-spacing: 0.2em;
      text-transform: uppercase;
      color: var(--light-teal);
      border: 1px solid rgba(24,203,203,0.28);
      padding: 6px 14px;
      border-radius: 100px;
      margin-bottom: 28px;
      opacity: 0;
      transform: translateY(16px);
      transition: opacity 0.6s ease, transform 0.6s ease;
    }
    .hero-tag.animate { opacity: 1; transform: translateY(0); }
    .hero-headline {
      font-family: var(--font-head);
      font-size: clamp(44px, 7.8vw, 100px);
      font-weight: 900;
      line-height: 1.0;
      letter-spacing: -0.035em;
      color: var(--white);
      margin-bottom: 28px;
    }
    .hero-line {
      display: block;
      overflow: hidden;
    }
    .hero-line-inner {
      display: block;
      opacity: 0;
      transform: translateY(70px);
    }
    .hero-line-inner.animate {
      animation: slideUp 0.85s cubic-bezier(0.16,1,0.3,1) forwards;
    }
    .hero-line:nth-child(1) .hero-line-inner { animation-delay: 0.2s; }
    .hero-line:nth-child(2) .hero-line-inner { animation-delay: 0.42s; }
    .cyan { color: var(--cyan); }

    @keyframes slideUp {
      to { opacity: 1; transform: translateY(0); }
    }
    @keyframes fadeUp {
      from { opacity: 0; transform: translateY(16px); }
      to   { opacity: 1; transform: translateY(0); }
    }

    .hero-sub {
      font-size: clamp(15px, 1.7vw, 18px);
      color: rgba(255,255,255,0.78);
      max-width: 550px;
      line-height: 1.75;
      margin-bottom: 44px;
      opacity: 0;
      transform: translateY(16px);
      transition: opacity 0.7s ease, transform 0.7s ease;
    }
    .hero-sub.animate { opacity: 1; transform: translateY(0); }
    .hero-ctas {
      display: flex;
      align-items: center;
      gap: 16px;
      flex-wrap: wrap;
      opacity: 0;
      transform: translateY(16px);
      transition: opacity 0.7s ease, transform 0.7s ease;
    }
    .hero-ctas.animate { opacity: 1; transform: translateY(0); }

    /* =============================================
       3. MARQUEE
    ============================================= */
    .marquee-wrap {
      background: var(--dark);
      border-top: 1px solid rgba(255,255,255,0.06);
      border-bottom: 1px solid rgba(255,255,255,0.06);
      padding: 18px 0;
      overflow: hidden;
    }
    .marquee-track {
      display: flex;
      white-space: nowrap;
      animation: scroll 38s linear infinite;
      width: max-content;
    }
    .marquee-track:hover { animation-play-state: paused; }
    .m-item {
      display: inline-flex;
      align-items: center;
      gap: 16px;
      padding: 0 8px;
    }
    .m-text {
      font-family: var(--font-head);
      font-size: 12px;
      font-weight: 700;
      letter-spacing: 0.18em;
      color: rgba(255,255,255,0.55);
    }
    .m-text.outlined {
      color: transparent;
      -webkit-text-stroke: 1px rgba(24,203,203,0.55);
    }
    .m-dot {
      width: 5px; height: 5px;
      border-radius: 50%;
      background: var(--cyan);
      flex-shrink: 0;
    }
    @keyframes scroll {
      from { transform: translateX(0); }
      to   { transform: translateX(-50%); }
    }

    /* =============================================
       4. WHY US
    ============================================= */
    .why {
      background: var(--dark);
      padding: var(--pad) 0;
      overflow: hidden;
    }
    .why-grid {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: clamp(40px, 6vw, 90px);
      align-items: start;
    }
    .why-headline {
      font-family: var(--font-head);
      font-size: clamp(26px, 3.5vw, 42px);
      font-weight: 800;
      color: var(--white);
      line-height: 1.15;
      letter-spacing: -0.02em;
    }
    .why-headline .accent { color: var(--cyan); }
    .why-body {
      padding-top: 6px;
      font-size: 16px;
      color: rgba(255,255,255,0.65);
      line-height: 1.8;
    }
    .why-lead {
      display: block;
      font-size: 19px;
      color: rgba(255,255,255,0.70);
      line-height: 1.6;
      margin-bottom: 16px;
    }
    .why-detail {
      font-size: 15px;
      color: rgba(255,255,255,0.58);
      line-height: 1.8;
      border-top: 1px solid rgba(255,255,255,0.08);
      padding-top: 14px;
      margin-top: 0;
    }

    /* =============================================
       5. SERVICES
    ============================================= */
    .services {
      background: var(--off-white);
      padding: var(--pad) 0;
    }
    .services-head {
      text-align: center;
      margin-bottom: clamp(44px, 5.5vw, 70px);
    }
    .services-head h2 {
      font-family: var(--font-head);
      font-size: clamp(28px, 4vw, 50px);
      font-weight: 800;
      color: var(--dark);
      letter-spacing: -0.03em;
      margin-bottom: 12px;
    }
    .services-head p {
      font-size: 17px;
      color: var(--mid-gray);
      max-width: 500px;
      margin: 0 auto;
    }
    .services-grid {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 36px;
      align-items: start;
    }
    .svc-col { display: flex; flex-direction: column; gap: 14px; }
    .col-head { margin-bottom: 6px; }
    .col-title {
      font-family: var(--font-head);
      font-size: clamp(18px, 2.2vw, 22px);
      font-weight: 800;
      color: var(--dark);
      letter-spacing: -0.02em;
      margin-bottom: 3px;
    }
    .svc-col.primary .col-title { font-size: clamp(20px, 2.6vw, 26px); }
    .col-lead {
      font-size: 12px;
      font-weight: 500;
      color: var(--mid-gray);
      letter-spacing: 0.04em;
    }

    .svc-card {
      background: var(--white);
      border-left: 3px solid var(--cyan);
      border-radius: 0 var(--radius) var(--radius) 0;
      padding: 20px 22px;
      display: flex;
      align-items: flex-start;
      gap: 16px;
      transition: transform var(--ease), box-shadow var(--ease);
    }
    .svc-card:hover {
      transform: translateX(6px);
      box-shadow: 0 6px 28px rgba(55,54,67,0.09);
    }
    .svc-icon {
      width: 38px; height: 38px;
      display: flex; align-items: center; justify-content: center;
      flex-shrink: 0;
      color: var(--cyan);
      font-size: 20px;
      opacity: 0.8;
      transition: opacity var(--ease);
    }
    .svc-card:hover .svc-icon { opacity: 1; }
    .svc-text h3 {
      font-family: var(--font-head);
      font-size: 15px;
      font-weight: 700;
      color: var(--dark);
      margin-bottom: 5px;
      letter-spacing: -0.01em;
    }
    .svc-text p {
      font-size: 13.5px;
      color: var(--mid-gray);
      line-height: 1.55;
    }

    /* =============================================
       6. PROCESS
    ============================================= */
    .process {
      background: var(--dark);
      padding: var(--pad) 0;
      overflow: hidden;
    }
    .process-head {
      text-align: center;
      margin-bottom: clamp(44px, 5.5vw, 70px);
    }
    .process-head h2 {
      font-family: var(--font-head);
      font-size: clamp(26px, 3.5vw, 46px);
      font-weight: 800;
      color: var(--white);
      letter-spacing: -0.025em;
    }
    .process-grid {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 0;
      position: relative;
    }
    .process-grid::before {
      content: '';
      position: absolute;
      top: 47px;
      left: calc(16.66% + 20px);
      right: calc(16.66% + 20px);
      height: 1px;
      background: linear-gradient(90deg, transparent 0%, rgba(24,203,203,0.25) 20%, rgba(24,203,203,0.25) 80%, transparent 100%);
      pointer-events: none;
    }
    .p-card {
      padding: 0 28px 0;
      position: relative;
      border-left: 2px solid transparent;
      transition: border-color var(--ease);
    }
    .p-card:hover { border-left-color: var(--cyan); }
    .p-number-bg {
      position: absolute;
      top: -18px; left: 16px;
      font-family: var(--font-head);
      font-size: 140px;
      font-weight: 900;
      color: var(--cyan);
      opacity: 0.10;
      line-height: 1;
      pointer-events: none;
      user-select: none;
      letter-spacing: -0.05em;
    }
    .p-badge {
      display: inline-block;
      font-size: 10px;
      font-weight: 700;
      letter-spacing: 0.15em;
      text-transform: uppercase;
      color: var(--cyan);
      border: 1px solid rgba(24,203,203,0.28);
      padding: 4px 10px;
      border-radius: 100px;
      margin-bottom: 20px;
      position: relative;
    }
    .p-node {
      width: 48px; height: 48px;
      border-radius: 50%;
      background: rgba(24,203,203,0.08);
      border: 2px solid rgba(24,203,203,0.28);
      display: flex; align-items: center; justify-content: center;
      font-family: var(--font-head);
      font-size: 15px;
      font-weight: 800;
      color: var(--cyan);
      margin-bottom: 24px;
      position: relative;
      z-index: 1;
    }
    .p-card h3 {
      font-family: var(--font-head);
      font-size: 19px;
      font-weight: 700;
      color: var(--white);
      margin-bottom: 12px;
      letter-spacing: -0.01em;
    }
    .p-card p {
      font-size: 14.5px;
      color: rgba(255,255,255,0.62);
      line-height: 1.7;
    }

    /* =============================================
       7. TEAM
    ============================================= */
    .team {
      background: var(--off-white);
      padding: var(--pad) 0;
      overflow: hidden;
    }
    .team-head {
      text-align: center;
      margin-bottom: clamp(36px, 4.5vw, 56px);
    }
    .team-head h2 {
      font-family: var(--font-head);
      font-size: clamp(24px, 3.2vw, 40px);
      font-weight: 800;
      color: var(--dark);
      letter-spacing: -0.025em;
      margin-bottom: 12px;
    }
    .team-head p {
      font-size: 16px;
      color: var(--mid-gray);
      max-width: 420px;
      margin: 0 auto;
    }
    .team-grid {
      display: flex;
      gap: 24px;
      justify-content: center;
      flex-wrap: wrap;
    }
    .team-card {
      background: var(--white);
      border: 1px solid var(--light-gray);
      border-radius: var(--radius);
      padding: 28px 32px;
      display: flex;
      flex-direction: column;
      align-items: center;
      text-align: center;
      gap: 16px;
      width: min(400px, 100%);
      transition: border-color var(--ease), box-shadow var(--ease);
    }
    .team-card:hover {
      border-color: rgba(24,203,203,0.35);
      box-shadow: 0 6px 28px rgba(55,54,67,0.08);
    }
    .avatar {
      width: 80px; height: 80px;
      border-radius: 50%;
      background: linear-gradient(135deg, #373643 0%, #4a4860 100%);
      border: 2px solid var(--cyan);
      box-shadow: 0 0 0 4px rgba(24,203,203,0.08);
      display: flex; align-items: center; justify-content: center;
      font-family: var(--font-head);
      font-size: 17px;
      font-weight: 700;
      color: var(--cyan);
      flex-shrink: 0;
      letter-spacing: 0.04em;
    }
    .team-info { flex: 1; }
    .t-name {
      font-family: var(--font-head);
      font-size: 18px;
      font-weight: 700;
      color: var(--dark);
      margin-bottom: 4px;
      letter-spacing: -0.01em;
    }
    .t-title {
      font-size: 12px;
      color: var(--cyan);
      font-weight: 500;
      margin-bottom: 10px;
      letter-spacing: 0.02em;
    }
    .t-bio { font-size: 13px; color: var(--mid-gray); line-height: 1.7; }
    .t-linkedin {
      color: var(--mid-gray);
      font-size: 18px;
      transition: color var(--ease);
      margin-top: 8px;
    }
    .t-linkedin:hover { color: var(--cyan); }

    .email-copy { position: relative; cursor: pointer; }
    .email-copy.copied::after {
      content: var(--copy-text, 'Kopirano!');
      position: absolute; bottom: 100%; left: 50%; transform: translateX(-50%);
      background: var(--dark); color: var(--cyan); font-size: 11px; font-weight: 600;
      padding: 4px 10px; border-radius: 4px; white-space: nowrap;
      animation: fadeUp 1.2s ease forwards;
    }
    @keyframes fadeUp { 0% { opacity: 0; transform: translateX(-50%) translateY(4px); } 20% { opacity: 1; transform: translateX(-50%) translateY(0); } 80% { opacity: 1; } 100% { opacity: 0; transform: translateX(-50%) translateY(-6px); } }

    /* =============================================
       8. CONTACT
    ============================================= */
    .contact {
      background: var(--dark);
      padding: var(--pad) 0 clamp(80px, 10vw, 140px);
      overflow: hidden;
    }
    .contact-headline {
      font-family: var(--font-head);
      font-size: clamp(48px, 8.5vw, 108px);
      font-weight: 900;
      color: var(--white);
      letter-spacing: -0.04em;
      line-height: 0.95;
      margin-bottom: clamp(44px, 5.5vw, 72px);
    }
    .contact-headline span { color: var(--cyan); }
    .contact-grid {
      display: grid;
      grid-template-columns: 1fr 1.35fr;
      gap: clamp(40px, 6vw, 88px);
      align-items: start;
    }
    .c-sub {
      font-size: 16px;
      color: rgba(255,255,255,0.5);
      line-height: 1.75;
      margin-bottom: 32px;
      max-width: 300px;
    }
    .c-details { display: flex; flex-direction: column; gap: 18px; }
    .c-item { display: flex; align-items: flex-start; gap: 14px; }
    .c-icon {
      width: 36px; height: 36px;
      border-radius: 8px;
      background: rgba(24,203,203,0.08);
      display: flex; align-items: center; justify-content: center;
      color: var(--cyan);
      font-size: 14px;
      flex-shrink: 0;
      margin-top: 1px;
    }
    .c-label {
      font-size: 11px;
      font-weight: 600;
      letter-spacing: 0.1em;
      text-transform: uppercase;
      color: var(--mid-gray);
      margin-bottom: 2px;
    }
    .c-value { font-size: 15px; color: rgba(255,255,255,0.75); }
    .c-value a { color: rgba(255,255,255,0.75); transition: color var(--ease); }
    .c-value a:hover { color: var(--cyan); }

    /* Form */
    .c-form { display: flex; flex-direction: column; gap: 16px; }
    .form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
    .f-group { display: flex; flex-direction: column; gap: 6px; }
    .f-group label {
      font-size: 11px;
      font-weight: 600;
      letter-spacing: 0.08em;
      color: rgba(255,255,255,0.56);
      text-transform: uppercase;
    }
    .f-group input,
    .f-group select,
    .f-group textarea {
      background: rgba(255,255,255,0.05);
      border: 1px solid rgba(255,255,255,0.1);
      border-radius: 6px;
      padding: 13px 16px;
      font-family: var(--font-body);
      font-size: 15px;
      color: var(--white);
      outline: none;
      transition: border-color var(--ease), background var(--ease);
      -webkit-appearance: none;
      appearance: none;
    }
    .f-group select {
      cursor: pointer;
      background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8'%3E%3Cpath fill='%238A8FA3' d='M1 1l5 5 5-5'/%3E%3C/svg%3E");
      background-repeat: no-repeat;
      background-position: right 16px center;
      padding-right: 40px;
    }
    .f-group select option { background: var(--dark); color: var(--white); }
    .f-group input::placeholder,
    .f-group textarea::placeholder { color: rgba(255,255,255,0.35); }
    .f-group input:focus,
    .f-group select:focus,
    .f-group textarea:focus {
      border-color: rgba(24,203,203,0.5);
      background: rgba(255,255,255,0.07);
    }
    .f-group textarea { resize: vertical; min-height: 120px; }
    .form-foot { display: flex; align-items: center; gap: 16px; flex-wrap: wrap; }
    .f-success {
      font-size: 14px;
      color: var(--light-teal);
      opacity: 0;
      transition: opacity 0.4s ease;
      display: flex;
      align-items: center;
      gap: 7px;
    }
    .f-success.show { opacity: 1; }

    /* =============================================
       9. FOOTER
    ============================================= */
    .footer {
      background: var(--dark-deep);
      border-top: 2px solid rgba(24,203,203,0.25);
      padding: 40px 0;
    }
    .f-privacy-link {
      color: rgba(138,143,163,0.72);
      transition: color var(--ease);
      text-decoration: underline;
      text-underline-offset: 2px;
    }
    .f-privacy-link:hover { color: var(--cyan); }
    .footer-inner {
      display: flex;
      align-items: center;
      justify-content: space-between;
      flex-wrap: wrap;
      gap: 24px;
    }
    .footer-logo svg { height: 30px; width: auto; }
    .footer-mid { text-align: center; flex: 1; }
    .footer-links a { min-height: 44px; min-width: 44px; display: inline-flex; align-items: center; }
    .f-tagline {
      font-size: 11px;
      font-weight: 600;
      letter-spacing: 0.22em;
      text-transform: uppercase;
      color: var(--mid-gray);
    }
    .f-copy { font-size: 11px; color: rgba(138,143,163,0.82); margin-top: 2px; }
    .f-copy:last-child { margin-top: 4px; }
    .footer-links { display: flex; align-items: center; gap: 16px; }
    .footer-links a {
      color: rgba(255,255,255,0.25);
      font-size: 14px;
      transition: color var(--ease);
      display: flex;
      align-items: center;
      gap: 6px;
    }
    .footer-links a:hover { color: var(--cyan); }
    .fl-label { font-size: 12px; font-weight: 500; }

    /* =============================================
       10. INTERSTITIAL
    ============================================= */
    .interstitial {
      padding: clamp(60px, 10vw, 120px) 0;
      background: var(--dark-deep);
      border-top: 1px solid rgba(255,255,255,0.03);
      border-bottom: 1px solid rgba(255,255,255,0.03);
    }
    .inter-text {
      font-family: var(--font-head);
      font-size: clamp(28px, 5vw, 56px);
      font-weight: 800;
      color: var(--white);
      line-height: 1.2;
      letter-spacing: -0.03em;
      max-width: 800px;
    }
    .inter-city {
      font-family: 'Caveat', cursive;
      font-weight: 700;
      font-size: 1.15em;
      color: var(--cyan);
      display: block;
      margin-bottom: 8px;
    }

    /* =============================================
       11. SERVICES DUALITY + COMBO CARD
    ============================================= */
    .svc-col.primary .svc-card {
      border-radius: 0 4px 4px 0;
    }
    .svc-col:not(.primary) .svc-card {
      border-radius: 0 12px 12px 0;
      border-left-color: var(--light-teal);
    }
    .combo-card {
      margin-top: 48px;
      display: flex;
      align-items: center;
      gap: 20px;
      padding: 24px 32px;
      background: var(--cyan);
      color: var(--dark);
      border-radius: 12px;
      font-size: 15px;
    }
    .combo-card strong {
      font-family: var(--font-head);
      font-size: 16px;
      font-weight: 800;
      display: block;
      margin-bottom: 4px;
    }
    .combo-text span { opacity: 0.75; }
    .combo-icon { font-size: 22px; flex-shrink: 0; }
    .combo-cta {
      margin-left: auto;
      background: var(--dark) !important;
      color: var(--white) !important;
      white-space: nowrap;
      flex-shrink: 0;
    }
    .combo-cta:hover { background: var(--dark-deep) !important; }

    /* =============================================
       RESPONSIVE
    ============================================= */
    @media (max-width: 1024px) {
      .services-grid { grid-template-columns: 1fr; gap: 44px; }
      .process-grid::before { display: none; }
    }

    @media (max-width: 768px) {
      .nav-links, .nav-cta { display: none; }
      .hamburger { display: flex; }
      .why-grid { grid-template-columns: 1fr; gap: 28px; }
      .process-grid { grid-template-columns: 1fr; gap: 44px; }
      .contact-grid { grid-template-columns: 1fr; }
      .form-row { grid-template-columns: 1fr; }
      .hero-ctas { flex-direction: column; align-items: flex-start; }
      .team-grid { flex-direction: column; align-items: center; }
      .footer-inner { flex-direction: column; align-items: center; text-align: center; }
      .combo-card { flex-direction: column; text-align: center; }
      .combo-cta { margin-left: 0; margin-top: 16px; }
    }

    @media (max-width: 480px) {
      .contact-headline { font-size: clamp(38px, 13vw, 64px); }
    }

    @media (prefers-reduced-motion: reduce) {
      *, *::before, *::after { animation-duration: 0.01ms !important; animation-iteration-count: 1 !important; transition-duration: 0.01ms !important; scroll-behavior: auto !important; }
      .hero-line-inner { transform: none !important; opacity: 1 !important; }
      .marquee-track { animation: none !important; }
      .keyboard-intro { display: none !important; }
      .hero-content { opacity: 1 !important; }
    }

    /* Focus visible for keyboard navigation */
    .btn:focus-visible, .nav-cta:focus-visible { outline: 2px solid var(--cyan); outline-offset: 3px; }
    .nav-links a:focus-visible { color: var(--cyan); outline: 2px solid var(--cyan); outline-offset: 3px; border-radius: 2px; }
    .t-linkedin:focus-visible, .footer-links a:focus-visible { outline: 2px solid var(--cyan); outline-offset: 3px; border-radius: 4px; }
    .lang-btn:focus-visible { outline: 2px solid var(--cyan); outline-offset: 2px; border-radius: 2px; }
    .f-group input:focus-visible, .f-group select:focus-visible, .f-group textarea:focus-visible { outline: none; }

    /* Language suggestion banner */
    .lang-banner {
      position: fixed;
      top: var(--nav-h);
      left: 0; right: 0;
      background: var(--pale-aqua);
      border-bottom: 1px solid var(--light-gray);
      padding: 10px 0;
      z-index: 998;
      font-family: var(--font-body);
      font-size: 14px;
      color: var(--body-text);
      transition: transform 0.3s ease, opacity 0.3s ease;
    }
    .lang-banner.hidden {
      transform: translateY(-100%);
      opacity: 0;
      pointer-events: none;
    }
    .lang-banner-inner {
      display: flex;
      align-items: center;
      justify-content: center;
      gap: 12px;
    }
    .lang-banner-link {
      color: var(--cyan);
      font-weight: 600;
      text-decoration: underline;
      text-underline-offset: 2px;
    }
    .lang-banner-link:hover { color: var(--cyan-hover); }
    .lang-banner-close {
      background: none;
      border: none;
      color: var(--mid-gray);
      font-size: 18px;
      cursor: pointer;
      padding: 8px;
      min-height: 44px;
      min-width: 44px;
      display: inline-flex;
      align-items: center;
      justify-content: center;
      line-height: 1;
      transition: color var(--ease);
    }
    .lang-banner-close:hover { color: var(--dark); }
    .lang-banner-close:focus-visible { outline: 2px solid var(--cyan); outline-offset: 2px; border-radius: 2px; }

    @media (max-width: 480px) {
      .lang-banner { font-size: 13px; padding: 8px 0; }
      .lang-banner-inner { gap: 8px; }
    }

    /* Easter egg shake */
    @keyframes eggShake {
      0%, 100% { transform: translateX(0); }
      15% { transform: translateX(-4px) rotate(-0.5deg); }
      30% { transform: translateX(4px) rotate(0.5deg); }
      45% { transform: translateX(-3px); }
      60% { transform: translateX(3px); }
      75% { transform: translateX(-1px); }
    }

    /* =============================================
       PRIVACY PAGES
    ============================================= */
    .privacy-hero {
      background: var(--dark); padding: calc(var(--nav-h) + 48px) 0 48px; text-align: center;
    }
    .privacy-hero h1 {
      font-family: var(--font-head); font-size: clamp(28px, 5vw, 44px); font-weight: 800;
      color: var(--white); letter-spacing: -0.03em; margin-bottom: 8px;
    }
    .privacy-hero .updated {
      font-size: 13px; color: var(--mid-gray); letter-spacing: 0.04em;
    }

    .privacy-content { padding: clamp(40px, 6vw, 72px) 0 clamp(60px, 8vw, 100px); }
    .privacy-inner { max-width: 780px; margin: 0 auto; }

    .p-section { margin-bottom: 40px; }
    .p-section h2 {
      font-family: var(--font-head); font-size: clamp(17px, 2vw, 20px); font-weight: 700;
      color: var(--dark); letter-spacing: -0.01em; margin-bottom: 14px;
      padding-left: 16px; border-left: 3px solid var(--cyan);
    }
    .p-section p, .p-section li {
      font-size: 15px; color: var(--body-text); line-height: 1.8; margin-bottom: 10px;
    }
    .p-section ul { padding-left: 20px; margin-bottom: 10px; }
    .p-section li { list-style: disc; margin-bottom: 6px; }
    .p-section a { color: var(--cyan); text-decoration: underline; text-underline-offset: 2px; }
    .p-section a:hover { color: var(--cyan-hover); }
    .p-section strong { color: var(--dark); font-weight: 600; }

    .back-link {
      display: inline-flex; align-items: center; gap: 8px;
      font-size: 14px; font-weight: 600; color: var(--cyan); margin-top: 24px;
      transition: color var(--ease);
    }
    .back-link:hover { color: var(--cyan-hover); }

    .inspect-us {
      background: var(--dark-deep);
      border-top: 1px solid rgba(24,203,203,0.08);
      padding: 16px 0;
      text-align: center;
    }
    .inspect-label {
      font-family: 'SF Mono', 'Cascadia Code', 'Fira Code', 'Consolas', monospace;
      font-size: 11px;
      font-weight: 500;
      color: rgba(138,143,163,0.5);
      letter-spacing: 0.03em;
      margin-bottom: 8px;
    }
    .inspect-badges {
      display: flex;
      flex-wrap: wrap;
      justify-content: center;
      gap: 4px 12px;
      margin-bottom: 6px;
    }
    .inspect-badge {
      display: inline-flex;
      align-items: center;
      gap: 5px;
      padding: 0;
      border-radius: 0;
      border: none;
      background: none;
      font-family: 'SF Mono', 'Cascadia Code', 'Fira Code', 'Consolas', monospace;
      font-size: 10px;
      font-weight: 500;
      color: rgba(176,240,240,0.4);
      letter-spacing: 0.02em;
    }
    .inspect-badge:hover { color: rgba(176,240,240,0.7); }
    .inspect-badge i { font-size: 9px; color: var(--cyan); opacity: 0.4; }
    .inspect-hint {
      font-size: 10px;
      color: rgba(138,143,163,0.25);
      font-family: 'SF Mono', 'Cascadia Code', 'Fira Code', 'Consolas', monospace;
      letter-spacing: 0.03em;
    }
