    :root {
      --teal: #14F195;
      --teal-dim: #0cb87a;
      --teal-glow: rgba(20, 241, 149, 0.4);
      --purple: #9945FF;
      --purple-dim: #7b32d4;
      --purple-glow: rgba(153, 69, 255, 0.3);
      --dark: #0a0a0f;
      --dark-card: rgba(12, 12, 20, 0.7);
      --dark-card-border: rgba(255, 255, 255, 0.07);
      --glass: rgba(255, 255, 255, 0.04);
      --glass-border: rgba(255, 255, 255, 0.08);
      --text: #ffffff;
      --text-dim: rgba(255, 255, 255, 0.55);
      --text-mid: rgba(255, 255, 255, 0.8);
      --font: 'Inter', -apple-system, BlinkMacSystemFont, 'SF Pro Display', sans-serif;
      --radius: 20px;
      --radius-sm: 14px;
      --transition: 300ms cubic-bezier(0.4, 0, 0.2, 1);
    }

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

    html { scroll-behavior: smooth; }

    body {
      font-family: var(--font);
      background: var(--dark);
      color: var(--text);
      line-height: 1.6;
      -webkit-font-smoothing: antialiased;
      overflow-x: hidden;
    }

    /* ========================================
       Neural Network Canvas (behind everything)
       ======================================== */
    #neural-canvas {
      position: fixed;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      z-index: 3;
      pointer-events: none;
    }

    /* ========================================
       Vancouver Skyline — Parallax Layer
       ======================================== */
    .bg-scene {
      position: fixed;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      z-index: 1;
      overflow: hidden;
    }

    .bg-scene picture {
      position: absolute;
      top: 0; left: 0;
      width: 130%; height: 130%;
    }

    .bg-scene__img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      object-position: center 40%;
      animation: slowPan 80s ease-in-out infinite alternate;
      filter: brightness(0.25) saturate(1.3);
      will-change: transform, opacity;
      transform: translateZ(0);
      opacity: 0;
      transition: opacity 2s ease-in-out;
    }

    .bg-scene__img--active {
      opacity: 1;
    }

    @keyframes slowPan {
      0%   { transform: translate(-5%, -5%) scale(1); }
      50%  { transform: translate(-10%, -3%) scale(1.03); }
      100% { transform: translate(-2%, -7%) scale(1.01); }
    }

    .bg-scene__overlay {
      position: absolute;
      top: 0; left: 0; width: 100%; height: 100%;
      background:
        linear-gradient(180deg, rgba(10,10,15,0.6) 0%, rgba(10,10,15,0.2) 30%, rgba(10,10,15,0.85) 100%),
        linear-gradient(135deg, rgba(153,69,255,0.08) 0%, transparent 50%, rgba(20,241,149,0.06) 100%);
    }

    /* ========================================
       Solana Aurora
       ======================================== */
    .aurora {
      position: fixed;
      top: 0; left: 0;
      width: 100%; height: 100%;
      z-index: 3;
      pointer-events: none;
      overflow: hidden;
      mix-blend-mode: screen;
      opacity: 0.55;
    }

    .aurora__wave {
      position: absolute;
      width: 200%; height: 60%;
      border-radius: 50%;
      filter: blur(70px);
      opacity: 0.75;
    }

    .aurora__wave--1 {
      background: radial-gradient(ellipse at 30% 50%, rgba(20, 241, 149, 0.55) 0%, rgba(20, 241, 149, 0) 70%);
      top: -20%; left: -50%;
      animation: auroraDrift1 18s ease-in-out infinite alternate;
    }

    .aurora__wave--2 {
      background: radial-gradient(ellipse at 60% 50%, rgba(153, 69, 255, 0.5) 0%, rgba(153, 69, 255, 0) 70%);
      top: -10%; left: -20%;
      animation: auroraDrift2 22s ease-in-out infinite alternate;
    }

    .aurora__wave--3 {
      background: radial-gradient(ellipse at 50% 50%, rgba(0, 210, 255, 0.4) 0%, rgba(0, 210, 255, 0) 70%);
      top: -30%; left: 0%;
      animation: auroraDrift3 26s ease-in-out infinite alternate;
    }

    .aurora__wave--4 {
      background: radial-gradient(ellipse at 40% 50%, rgba(20, 241, 149, 0.35) 0%, rgba(153, 69, 255, 0.25) 40%, transparent 70%);
      top: -15%; left: -30%;
      animation: auroraDrift4 20s ease-in-out infinite alternate;
    }

    @keyframes auroraDrift1 {
      0%   { transform: translate(0%, 0%) rotate(-5deg) scaleX(1); }
      50%  { transform: translate(30%, 10%) rotate(3deg) scaleX(1.1); }
      100% { transform: translate(60%, -5%) rotate(-3deg) scaleX(0.9); }
    }

    @keyframes auroraDrift2 {
      0%   { transform: translate(0%, 5%) rotate(3deg) scaleY(1); }
      50%  { transform: translate(-20%, -10%) rotate(-5deg) scaleY(1.15); }
      100% { transform: translate(40%, 8%) rotate(2deg) scaleY(0.95); }
    }

    @keyframes auroraDrift3 {
      0%   { transform: translate(10%, 0%) rotate(-2deg); }
      50%  { transform: translate(-15%, 15%) rotate(4deg) scaleX(1.1); }
      100% { transform: translate(50%, -10%) rotate(-4deg) scaleX(0.85); }
    }

    @keyframes auroraDrift4 {
      0%   { transform: translate(-10%, 10%) rotate(2deg); opacity: 0.4; }
      50%  { transform: translate(25%, -5%) rotate(-3deg); opacity: 0.7; }
      100% { transform: translate(55%, 12%) rotate(5deg); opacity: 0.5; }
    }

    /* ========================================
       Floating Orbs — Parallax Depth Elements
       ======================================== */
    .orb {
      position: fixed;
      border-radius: 50%;
      filter: blur(80px);
      pointer-events: none;
      z-index: 2;
      opacity: 0.35;
      will-change: transform;
    }

    .orb--teal {
      width: 500px; height: 500px;
      background: radial-gradient(circle, var(--teal-glow), transparent 70%);
      top: 20%; right: -10%;
    }

    .orb--purple {
      width: 600px; height: 600px;
      background: radial-gradient(circle, var(--purple-glow), transparent 70%);
      bottom: 10%; left: -15%;
    }

    .orb--sm {
      width: 250px; height: 250px;
      background: radial-gradient(circle, rgba(20,241,149,0.25), transparent 70%);
      top: 60%; right: 20%;
      opacity: 0.2;
    }

    /* ========================================
       Content wrapper
       ======================================== */
    .page { position: relative; z-index: 10; }

    /* ========================================
       iOS Glass Nav
       ======================================== */
    .nav {
      position: fixed;
      top: 0; left: 0; right: 0;
      z-index: 100;
      padding: 16px 32px;
      display: flex;
      justify-content: space-between;
      align-items: center;
      background: rgba(10, 10, 15, 0.4);
      backdrop-filter: saturate(180%) blur(24px);
      -webkit-backdrop-filter: saturate(180%) blur(24px);
      border-bottom: 1px solid var(--glass-border);
      transition: background var(--transition);
      overflow: hidden;
    }
    .nav::before {
      content: '';
      position: absolute;
      top: 0; left: -25%;
      width: 25%; height: 100%;
      background: linear-gradient(90deg,
        transparent 0%,
        rgba(20,241,149,0.015) 45%,
        rgba(20,241,149,0.035) 50%,
        rgba(20,241,149,0.015) 55%,
        transparent 100%);
      animation: navShine 14s ease-in-out infinite;
      pointer-events: none;
    }
    @keyframes navShine {
      0% { left: -25%; }
      55% { left: 100%; }
      100% { left: 100%; }
    }

    .nav--scrolled { background: rgba(10, 10, 15, 0.85); }

    .nav__logo {
      font-size: 1.3rem;
      font-weight: 800;
      letter-spacing: -0.5px;
    }

    .nav__logo span {
      background: linear-gradient(135deg, var(--teal), var(--purple));
      -webkit-background-clip: text;
      -webkit-text-fill-color: transparent;
      background-clip: text;
    }

    .nav__lang {
      background: rgba(255,255,255,0.08);
      border: 1px solid rgba(255,255,255,0.15);
      color: var(--text-mid);
      padding: 4px 12px;
      border-radius: 20px;
      font-size: 13px;
      font-weight: 500;
      cursor: pointer;
      transition: var(--transition);
      font-family: var(--font);
      letter-spacing: 0.3px;
    }
    .nav__lang:hover {
      background: rgba(20, 241, 149, 0.15);
      border-color: var(--teal);
      color: var(--teal);
    }
    .nav__lang-mobile { display: none; }
    .nav__lang-desktop { display: inline-block; }

    .nav__phone {
      display: flex;
      align-items: center;
      gap: 8px;
      color: var(--teal);
      text-decoration: none;
      font-weight: 700;
      font-size: 0.95rem;
      letter-spacing: 0.3px;
      padding: 8px 18px;
      border-radius: 100px;
      background: rgba(20, 241, 149, 0.08);
      border: 1px solid rgba(20, 241, 149, 0.2);
      transition: all var(--transition);
      white-space: nowrap;
    }

    .nav__phone:hover {
      background: rgba(20, 241, 149, 0.15);
      box-shadow: 0 0 20px rgba(20, 241, 149, 0.15);
    }

    .nav__phone svg {
      width: 16px; height: 16px;
      fill: var(--teal);
      flex-shrink: 0;
    }

    .nav__right { display: flex; align-items: center; gap: 24px; }

    .nav__links { list-style: none; display: flex; gap: 32px; }

    .nav__link {
      color: var(--text-dim);
      text-decoration: none;
      font-size: 0.88rem;
      font-weight: 500;
      transition: color var(--transition);
      position: relative;
    }

    .nav__link::after {
      content: '';
      position: absolute;
      bottom: -4px; left: 0;
      width: 0; height: 2px;
      background: linear-gradient(90deg, var(--teal), var(--purple));
      border-radius: 2px;
      transition: width var(--transition);
    }

    .nav__link:hover { color: var(--teal); }
    .nav__link:hover::after { width: 100%; }

    .nav__toggle {
      display: none;
      background: none; border: none; cursor: pointer; padding: 8px;
    }

    .nav__toggle span {
      display: block; width: 22px; height: 2px;
      background: #fff; margin: 5px 0; border-radius: 2px;
    }

    /* ========================================
       Scroll Reveal Animations
       ======================================== */
    .reveal {
      opacity: 0;
      transform: translateY(40px);
      transition: opacity 0.8s cubic-bezier(0.16, 1, 0.3, 1),
                  transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
    }

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

    .reveal-delay-1 { transition-delay: 0.1s; }
    .reveal-delay-2 { transition-delay: 0.2s; }
    .reveal-delay-3 { transition-delay: 0.3s; }
    .reveal-delay-4 { transition-delay: 0.4s; }
    .reveal-delay-5 { transition-delay: 0.5s; }

    /* Scale in variant */
    .reveal--scale {
      opacity: 0;
      transform: scale(0.9) translateY(20px);
      transition: opacity 0.7s cubic-bezier(0.16, 1, 0.3, 1),
                  transform 0.7s cubic-bezier(0.16, 1, 0.3, 1);
    }

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

    /* ========================================
       Hero
       ======================================== */
    .hero {
      min-height: 100vh;
      display: flex;
      align-items: center;
      justify-content: center;
      text-align: center;
      padding: 120px 32px 80px;
      position: relative;
    }

    .hero__inner {
      max-width: 780px;
      position: relative;
    }

    .hero__badge {
      display: inline-block;
      padding: 7px 20px;
      border-radius: 100px;
      font-size: 0.78rem;
      font-weight: 600;
      letter-spacing: 0.8px;
      text-transform: uppercase;
      margin-bottom: 36px;
      background: rgba(20, 241, 149, 0.08);
      border: 1px solid rgba(20, 241, 149, 0.18);
      color: var(--teal);
      animation: badgePulse 3s ease-in-out infinite;
    }

    @keyframes badgePulse {
      0%, 100% { box-shadow: 0 0 0 0 rgba(20, 241, 149, 0.1); }
      50% { box-shadow: 0 0 20px 4px rgba(20, 241, 149, 0.08); }
    }

    .hero__title {
      font-size: clamp(2rem, 5.5vw, 3.4rem);
      font-weight: 800;
      line-height: 1.12;
      letter-spacing: -1.5px;
      margin-bottom: 28px;
      color: rgba(255,255,255,0.95);
      text-shadow: 0 0 40px rgba(20,241,149,0.15), 0 0 80px rgba(20,241,149,0.05);
    }

    .hero__title span {
      background: linear-gradient(135deg, var(--teal) 0%, #80ffdb 30%, #a0ffe0 50%, var(--purple) 100%);
      background-size: 300% 300%;
      animation: gradientShift 8s ease-in-out infinite;
      -webkit-background-clip: text;
      -webkit-text-fill-color: transparent;
      background-clip: text;
      filter: drop-shadow(0 0 20px rgba(20,241,149,0.3)) drop-shadow(0 0 60px rgba(20,241,149,0.1));
    }

    @keyframes gradientShift {
      0% { background-position: 0% 50%; }
      33% { background-position: 100% 0%; }
      66% { background-position: 50% 100%; }
      100% { background-position: 0% 50%; }
    }

    /* Typed cursor */
    .typed-cursor {
      display: inline-block;
      width: 2px;
      height: 0.9em;
      background: var(--teal);
      margin-left: 3px;
      animation: cursorPulse 1.2s ease-in-out infinite;
      vertical-align: text-bottom;
      border-radius: 1px;
      box-shadow: 0 0 8px var(--teal), 0 0 20px rgba(20,241,149,0.3);
    }

    @keyframes cursorPulse {
      0%, 100% { opacity: 1; box-shadow: 0 0 8px var(--teal), 0 0 20px rgba(20,241,149,0.3); }
      50% { opacity: 0.2; box-shadow: 0 0 2px var(--teal), 0 0 6px rgba(20,241,149,0.1); }
    }

    @keyframes blink {
      0%, 100% { opacity: 1; }
      50% { opacity: 0; }
    }

    .hero__sub {
      font-size: 1.15rem;
      color: var(--text-dim);
      max-width: 540px;
      margin: 0 auto 44px;
      line-height: 1.75;
    }

    .hero__actions {
      display: flex;
      gap: 16px;
      justify-content: center;
      flex-wrap: wrap;
    }

    /* Scroll indicator */
    .hero__scroll {
      position: absolute;
      bottom: 40px;
      left: 50%;
      transform: translateX(-50%);
      display: flex;
      flex-direction: column;
      align-items: center;
      gap: 8px;
      color: var(--text-dim);
      font-size: 0.7rem;
      font-weight: 500;
      letter-spacing: 2px;
      text-transform: uppercase;
      animation: scrollBounce 2s ease-in-out infinite;
    }

    .hero__scroll-line {
      width: 1px;
      height: 40px;
      background: linear-gradient(180deg, var(--teal), transparent);
    }

    @keyframes scrollBounce {
      0%, 100% { transform: translateX(-50%) translateY(0); }
      50% { transform: translateX(-50%) translateY(8px); }
    }

    /* ========================================
       Buttons
       ======================================== */
    .btn {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      font-family: var(--font);
      font-weight: 600;
      font-size: 0.95rem;
      text-decoration: none;
      border: none;
      cursor: pointer;
      padding: 16px 36px;
      border-radius: var(--radius-sm);
      transition: all var(--transition);
      min-height: 52px;
      position: relative;
      overflow: hidden;
    }

    .btn--glow {
      background: linear-gradient(135deg, var(--teal), var(--teal-dim));
      color: #000;
      box-shadow: 0 0 24px rgba(20, 241, 149, 0.25), 0 0 60px rgba(20, 241, 149, 0.08);
      animation: glowPulse 2.5s ease-in-out infinite;
    }

    @keyframes glowPulse {
      0%, 100% { box-shadow: 0 0 24px rgba(20, 241, 149, 0.25), 0 0 60px rgba(20, 241, 149, 0.08); transform: scale(1); }
      50% { box-shadow: 0 0 35px rgba(20, 241, 149, 0.45), 0 0 80px rgba(20, 241, 149, 0.2), 0 0 120px rgba(20, 241, 149, 0.06); transform: scale(1.03); }
    }

    .btn--glow::before {
      content: '';
      position: absolute;
      top: 0; left: -100%;
      width: 100%; height: 100%;
      background: linear-gradient(90deg, transparent, rgba(255,255,255,0.25), transparent);
      transition: left 0.5s ease;
    }

    .btn--glow:hover::before { left: 100%; }

    .btn--glow:hover {
      transform: translateY(-2px);
      box-shadow: 0 0 40px rgba(20, 241, 149, 0.4), 0 0 80px rgba(20, 241, 149, 0.12);
    }

    .btn--glass {
      background: var(--glass);
      color: var(--text);
      border: 1px solid var(--glass-border);
      backdrop-filter: blur(12px);
      -webkit-backdrop-filter: blur(12px);
    }

    .btn--glass:hover {
      background: rgba(255, 255, 255, 0.1);
      border-color: rgba(255, 255, 255, 0.2);
      transform: translateY(-2px);
    }

    /* ========================================
       Horizontal Scrolling Text Banner
       ======================================== */
    .marquee {
      overflow: hidden;
      padding: 20px 0;
      border-top: 1px solid var(--glass-border);
      border-bottom: 1px solid var(--glass-border);
      background: rgba(10, 10, 15, 0.5);
      backdrop-filter: blur(8px);
      -webkit-backdrop-filter: blur(8px);
    }

    .marquee__track {
      display: flex;
      width: max-content;
      animation: marquee 30s linear infinite;
    }

    .marquee__item {
      flex-shrink: 0;
      padding: 0 48px;
      font-size: 0.85rem;
      font-weight: 600;
      color: var(--text-dim);
      white-space: nowrap;
      letter-spacing: 1px;
      text-transform: uppercase;
    }

    .marquee__item .dot {
      display: inline-block;
      width: 5px; height: 5px;
      border-radius: 50%;
      background: var(--teal);
      margin-right: 12px;
      vertical-align: middle;
    }

    @keyframes marquee {
      0% { transform: translateX(0); }
      100% { transform: translateX(-50%); }
    }

    /* ========================================
       Sections
       ======================================== */
    .section {
      max-width: 1140px;
      margin: 0 auto;
      padding: 120px 32px;
    }

    .section__header {
      text-align: center;
      margin-bottom: 64px;
    }

    .section__label {
      display: inline-block;
      font-size: 0.72rem;
      font-weight: 700;
      letter-spacing: 3px;
      text-transform: uppercase;
      color: var(--teal);
      margin-bottom: 16px;
    }

    .section__title {
      font-size: clamp(1.8rem, 3.5vw, 2.5rem);
      font-weight: 800;
      letter-spacing: -1px;
      margin-bottom: 12px;
    }

    .section__sub {
      color: var(--text-dim);
      font-size: 1.05rem;
      max-width: 500px;
      margin: 0 auto;
    }

    /* ========================================
       Services — 3D Tilt Glass Cards
       ======================================== */
    .grid {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 20px;
    }

    .card {
      background: var(--dark-card);
      backdrop-filter: saturate(150%) blur(20px);
      -webkit-backdrop-filter: saturate(150%) blur(20px);
      border: 1px solid var(--dark-card-border);
      border-radius: var(--radius);
      padding: 36px;
      transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
      position: relative;
      overflow: hidden;
    }

    /* Animated gradient border on hover */
    .card::before {
      content: '';
      position: absolute;
      top: 0; left: 0; right: 0; bottom: 0;
      border-radius: var(--radius);
      padding: 1px;
      background: linear-gradient(135deg, transparent, transparent);
      -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
      mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
      -webkit-mask-composite: xor;
      mask-composite: exclude;
      transition: background 0.5s ease;
      pointer-events: none;
    }

    .card:hover::before {
      background: linear-gradient(135deg, var(--teal), var(--purple));
    }

    .card:hover {
      transform: translateY(-6px) rotateX(2deg);
      box-shadow:
        0 20px 40px rgba(0, 0, 0, 0.4),
        0 0 30px rgba(20, 241, 149, 0.05);
    }

    .card__icon {
      width: 52px; height: 52px;
      border-radius: 14px;
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 1.5rem;
      margin-bottom: 24px;
      background: linear-gradient(135deg, rgba(20,241,149,0.1), rgba(153,69,255,0.1));
      border: 1px solid rgba(255, 255, 255, 0.05);
      position: relative;
    }

    /* ===== Futuristic Voice Agent Animation ===== */
    .voice-card {
      background: linear-gradient(135deg, rgba(20,241,149,0.04), rgba(153,69,255,0.04)), var(--card);
      border: 1px solid rgba(20,241,149,0.15);
      transition: all 0.4s ease;
    }
    .voice-card:hover {
      border-color: rgba(20,241,149,0.4);
      box-shadow: 0 0 40px rgba(20,241,149,0.15), 0 0 80px rgba(153,69,255,0.1);
      transform: translateY(-2px);
    }
    .voice-card::after {
      content: '';
      position: absolute;
      top: -2px; left: -50%;
      width: 50%; height: 2px;
      background: linear-gradient(90deg, transparent, var(--green), transparent);
      animation: voiceBorderShine 4s ease-in-out infinite;
      pointer-events: none;
    }
    @keyframes voiceBorderShine {
      0% { left: -50%; }
      100% { left: 100%; }
    }

    .voice-orb {
      width: 72px; height: 72px;
      margin: 0 0 24px 0;
      position: relative;
      display: flex;
      align-items: center;
      justify-content: center;
    }
    .voice-orb__core {
      width: 32px; height: 32px;
      border-radius: 50%;
      background: radial-gradient(circle at 30% 30%, #14F195 0%, #0a9c65 60%, #066b45 100%);
      box-shadow:
        0 0 20px rgba(20,241,149,0.6),
        0 0 40px rgba(20,241,149,0.3),
        inset 0 0 10px rgba(255,255,255,0.2);
      animation: orbPulse 2s ease-in-out infinite;
      position: relative;
      z-index: 3;
    }
    @keyframes orbPulse {
      0%, 100% { transform: scale(1); box-shadow: 0 0 20px rgba(20,241,149,0.6), 0 0 40px rgba(20,241,149,0.3), inset 0 0 10px rgba(255,255,255,0.2); }
      50% { transform: scale(1.1); box-shadow: 0 0 30px rgba(20,241,149,0.8), 0 0 60px rgba(20,241,149,0.4), inset 0 0 15px rgba(255,255,255,0.3); }
    }
    .voice-orb__ring {
      position: absolute;
      top: 50%; left: 50%;
      width: 32px; height: 32px;
      margin: -16px 0 0 -16px;
      border-radius: 50%;
      border: 1.5px solid rgba(20,241,149,0.6);
      opacity: 0;
      animation: ringExpand 2.4s ease-out infinite;
      pointer-events: none;
      will-change: transform, opacity;
      -webkit-backface-visibility: hidden;
      backface-visibility: hidden;
      transform: translateZ(0);
    }
    .voice-orb__ring--2 { animation-delay: 0.8s; }
    .voice-orb__ring--3 { animation-delay: 1.6s; }
    @keyframes ringExpand {
      0% {
        opacity: 0.8;
        transform: translateZ(0) scale(1);
      }
      100% {
        opacity: 0;
        transform: translateZ(0) scale(3.75);
      }
    }
    .voice-bars {
      position: absolute;
      top: 50%; left: 50%;
      transform: translate(-50%, -50%);
      display: flex;
      align-items: center;
      gap: 2px;
      height: 20px;
      z-index: 4;
      mix-blend-mode: screen;
    }
    .voice-bars span {
      display: block;
      width: 2px;
      background: linear-gradient(to top, #14F195, #9945FF);
      border-radius: 2px;
      animation: voiceBar 1.2s ease-in-out infinite;
    }
    .voice-bars span:nth-child(1) { height: 6px; animation-delay: 0.0s; }
    .voice-bars span:nth-child(2) { height: 10px; animation-delay: 0.15s; }
    .voice-bars span:nth-child(3) { height: 14px; animation-delay: 0.3s; }
    .voice-bars span:nth-child(4) { height: 18px; animation-delay: 0.45s; }
    .voice-bars span:nth-child(5) { height: 14px; animation-delay: 0.3s; }
    .voice-bars span:nth-child(6) { height: 10px; animation-delay: 0.15s; }
    .voice-bars span:nth-child(7) { height: 6px; animation-delay: 0.0s; }
    @keyframes voiceBar {
      0%, 100% { transform: scaleY(0.4); opacity: 0.6; }
      50% { transform: scaleY(1.2); opacity: 1; }
    }

    /* ===== Animated Service Icons ===== */
    .card .card__icon {
      transition: transform 0.4s ease, background 0.4s ease;
      will-change: transform;
    }
    .card:hover .card__icon {
      transform: scale(1.1) rotate(-5deg);
      background: linear-gradient(135deg, rgba(20,241,149,0.2), rgba(153,69,255,0.2));
    }

    /* Floating icon animation - gentle up/down bob */
    .card--float .card__icon { animation: iconFloat 3.5s ease-in-out infinite; }
    @keyframes iconFloat {
      0%, 100% { transform: translateY(0); }
      50% { transform: translateY(-5px); }
    }

    /* Pulsing glow */
    .card--pulse .card__icon { animation: iconPulse 2.8s ease-in-out infinite; }
    @keyframes iconPulse {
      0%, 100% { box-shadow: 0 0 0 0 rgba(20,241,149,0); }
      50% { box-shadow: 0 0 20px 2px rgba(20,241,149,0.25); }
    }

    /* Slow spin (currency coin) */
    .card--spin .card__icon { animation: iconSpin 6s ease-in-out infinite; transform-style: preserve-3d; }
    @keyframes iconSpin {
      0%, 100% { transform: rotateY(0); }
      50% { transform: rotateY(360deg); }
    }

    /* Slight tilt (real estate) */
    .card--tilt .card__icon { animation: iconTilt 4s ease-in-out infinite; }
    @keyframes iconTilt {
      0%, 100% { transform: rotate(-4deg); }
      50% { transform: rotate(4deg); }
    }

    /* Glow ring */
    .card--glow .card__icon::before {
      content: '';
      position: absolute;
      inset: -3px;
      border-radius: inherit;
      background: linear-gradient(135deg, var(--green), var(--purple));
      opacity: 0;
      z-index: -1;
      animation: glowFade 3s ease-in-out infinite;
      filter: blur(8px);
    }
    @keyframes glowFade {
      0%, 100% { opacity: 0; }
      50% { opacity: 0.5; }
    }

    /* Grow bars (strategy) */
    .card--chart .card__icon { animation: iconChart 3s ease-in-out infinite; }
    @keyframes iconChart {
      0%, 100% { transform: translateY(0) scale(1); }
      50% { transform: translateY(-3px) scale(1.05); }
    }

    /* Rotate (web dev) */
    .card--rotate .card__icon { animation: iconRotate 8s linear infinite; }
    @keyframes iconRotate {
      0% { transform: rotate(0deg); }
      100% { transform: rotate(360deg); }
    }

    /* Blink (consulting monitor) */
    .card--blink .card__icon { animation: iconBlink 4s ease-in-out infinite; }
    @keyframes iconBlink {
      0%, 100% { filter: brightness(1); }
      50% { filter: brightness(1.3) drop-shadow(0 0 6px rgba(20,241,149,0.4)); }
    }

    /* Falling gold coins animation for currency card */
    .card--coins {
      position: relative;
      overflow: hidden;
    }
    .coin-rain {
      position: absolute;
      inset: 0;
      pointer-events: none;
      overflow: hidden;
      z-index: 0;
    }
    .coin-rain span {
      position: absolute;
      top: -30px;
      width: 16px;
      height: 16px;
      border-radius: 50%;
      background: radial-gradient(circle at 30% 30%, #ffe57a 0%, #ffc83d 40%, #c79400 90%);
      box-shadow:
        inset 0 -2px 3px rgba(130,90,0,0.6),
        inset 0 2px 3px rgba(255,240,180,0.8),
        0 0 6px rgba(255,200,60,0.5);
      opacity: 0;
      animation: coinFall 6s linear infinite;
      will-change: transform, opacity;
    }
    .coin-rain span::after {
      content: '$';
      position: absolute;
      inset: 0;
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 10px;
      font-weight: 900;
      color: rgba(130,90,0,0.7);
      text-shadow: 0 1px 0 rgba(255,240,180,0.4);
    }
    .coin-rain span:nth-child(1) { left: 10%; animation-delay: 0s; width: 14px; height: 14px; }
    .coin-rain span:nth-child(2) { left: 25%; animation-delay: 1.2s; width: 18px; height: 18px; }
    .coin-rain span:nth-child(3) { left: 40%; animation-delay: 2.5s; width: 12px; height: 12px; }
    .coin-rain span:nth-child(4) { left: 55%; animation-delay: 0.8s; width: 16px; height: 16px; }
    .coin-rain span:nth-child(5) { left: 70%; animation-delay: 3.5s; width: 14px; height: 14px; }
    .coin-rain span:nth-child(6) { left: 85%; animation-delay: 2s; width: 15px; height: 15px; }
    .coin-rain span:nth-child(7) { left: 18%; animation-delay: 4.5s; width: 11px; height: 11px; }
    .coin-rain span:nth-child(8) { left: 62%; animation-delay: 5.2s; width: 14px; height: 14px; }
    @keyframes coinFall {
      0% {
        transform: translateY(0) rotateZ(0deg);
        opacity: 0;
      }
      10% { opacity: 0.85; }
      90% { opacity: 0.85; }
      100% {
        transform: translateY(400px) rotateZ(540deg);
        opacity: 0;
      }
    }
    .card--coins .card__icon,
    .card--coins .card__title,
    .card--coins .card__text {
      position: relative;
      z-index: 1;
    }

    .card__title {
      font-size: 1.1rem;
      font-weight: 700;
      margin-bottom: 10px;
    }

    .card__text {
      color: var(--text-dim);
      font-size: 0.88rem;
      line-height: 1.7;
    }

    /* ========================================
       About Section
       ======================================== */
    .about {
      background: rgba(10, 10, 15, 0.5);
      backdrop-filter: blur(12px);
      -webkit-backdrop-filter: blur(12px);
      border-top: 1px solid var(--glass-border);
      border-bottom: 1px solid var(--glass-border);
      position: relative;
      overflow: hidden;
    }

    .about__grid {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 80px;
      align-items: center;
    }

    .about__text {
      color: var(--text-dim);
      font-size: 1.02rem;
      line-height: 1.85;
    }

    .about__text p + p { margin-top: 20px; }

    .stats { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }

    .stat {
      background: var(--glass);
      border: 1px solid var(--dark-card-border);
      border-radius: var(--radius-sm);
      padding: 32px 20px;
      text-align: center;
      transition: all var(--transition);
      position: relative;
      overflow: hidden;
    }

    .stat::after {
      content: '';
      position: absolute;
      top: 0; left: 0;
      width: 100%; height: 2px;
      background: linear-gradient(90deg, var(--teal), var(--purple));
      transform: scaleX(0);
      transform-origin: left;
      transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
    }

    .stat:hover::after { transform: scaleX(1); }
    .stat:hover { border-color: rgba(20, 241, 149, 0.15); }

    .stat__num {
      font-size: 2.2rem;
      font-weight: 900;
      line-height: 1;
      margin-bottom: 8px;
      background: linear-gradient(135deg, var(--teal), var(--purple));
      -webkit-background-clip: text;
      -webkit-text-fill-color: transparent;
      background-clip: text;
    }

    .stat__label {
      font-size: 0.78rem;
      color: var(--text-dim);
      font-weight: 500;
      letter-spacing: 0.5px;
    }

    /* ========================================
       AI Showcase Section
       ======================================== */
    .showcase { text-align: center; }

    .showcase__visual {
      max-width: 700px;
      margin: 0 auto;
      padding: 48px;
      border-radius: var(--radius);
      background: var(--dark-card);
      border: 1px solid var(--dark-card-border);
      backdrop-filter: blur(16px);
      -webkit-backdrop-filter: blur(16px);
      position: relative;
      overflow: hidden;
    }

    .showcase__visual::before {
      content: '';
      position: absolute;
      top: -50%; left: -50%;
      width: 200%; height: 200%;
      background: conic-gradient(from 0deg, transparent, var(--teal), transparent, var(--purple), transparent);
      animation: rotate 8s linear infinite;
      opacity: 0.03;
    }

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

    .showcase__code {
      font-family: 'JetBrains Mono', 'SF Mono', monospace;
      font-size: 0.82rem;
      line-height: 1.8;
      text-align: left;
      color: var(--text-dim);
      position: relative;
    }

    .showcase__code .kw { color: var(--purple); font-weight: 600; }
    .showcase__code .fn { color: var(--teal); }
    .showcase__code .str { color: #80ffdb; }
    .showcase__code .cmt { color: rgba(255,255,255,0.25); font-style: italic; }
    .showcase__code .num { color: #f7b731; }

    /* ========================================
       Contact
       ======================================== */
    .contact { text-align: center; }

    .contact__cta {
      font-size: clamp(1.4rem, 3vw, 2rem);
      font-weight: 800;
      letter-spacing: -0.5px;
      margin-bottom: 32px;
      line-height: 1.3;
    }

    .contact__cta span {
      background: linear-gradient(135deg, var(--teal), var(--purple));
      -webkit-background-clip: text;
      -webkit-text-fill-color: transparent;
      background-clip: text;
    }

    .contact__methods {
      display: flex;
      flex-direction: column;
      align-items: center;
      gap: 20px;
    }

    .contact__phone {
      display: inline-flex;
      align-items: center;
      gap: 14px;
      color: #000;
      font-size: clamp(1.4rem, 3vw, 2rem);
      font-weight: 800;
      text-decoration: none;
      padding: 22px 48px;
      border-radius: var(--radius-sm);
      background: linear-gradient(135deg, var(--teal), var(--teal-dim));
      box-shadow: 0 0 30px rgba(20, 241, 149, 0.3), 0 0 80px rgba(20, 241, 149, 0.1);
      transition: all var(--transition);
      letter-spacing: 0.5px;
      position: relative;
      overflow: hidden;
    }

    .contact__phone::before {
      content: '';
      position: absolute;
      top: 0; left: -100%;
      width: 100%; height: 100%;
      background: linear-gradient(90deg, transparent, rgba(255,255,255,0.3), transparent);
      animation: phoneShimmer 3s ease-in-out infinite;
    }

    @keyframes phoneShimmer {
      0% { left: -100%; }
      50% { left: 100%; }
      100% { left: 100%; }
    }

    .contact__phone:hover {
      transform: translateY(-3px) scale(1.02);
      box-shadow: 0 0 50px rgba(20, 241, 149, 0.45), 0 0 100px rgba(20, 241, 149, 0.15);
    }

    .contact__link {
      display: inline-flex;
      align-items: center;
      gap: 12px;
      color: var(--teal);
      font-size: 1.15rem;
      font-weight: 600;
      text-decoration: none;
      padding: 18px 40px;
      border: 1px solid rgba(20, 241, 149, 0.2);
      border-radius: var(--radius-sm);
      transition: all var(--transition);
      background: rgba(20, 241, 149, 0.04);
    }

    .contact__link:hover {
      border-color: var(--teal);
      background: rgba(20, 241, 149, 0.1);
      box-shadow: 0 0 32px rgba(20, 241, 149, 0.15);
    }

    /* ========================================
       Footer
       ======================================== */
    .footer {
      text-align: center;
      padding: 36px;
      font-size: 0.78rem;
      color: var(--text-dim);
      border-top: 1px solid var(--glass-border);
      background: rgba(10, 10, 15, 0.7);
    }

    /* ========================================
       Focus & A11y
       ======================================== */
    :focus-visible {
      outline: 2px solid var(--teal);
      outline-offset: 2px;
    }

    .skip-link {
      position: absolute;
      top: -100%; left: 16px;
      background: var(--teal); color: #000;
      padding: 8px 20px; border-radius: 8px;
      font-weight: 600; z-index: 200;
      text-decoration: none;
    }
    .skip-link:focus { top: 16px; }

    @media (prefers-reduced-motion: reduce) {
      *, *::before, *::after {
        animation-duration: 0.01ms !important;
        transition-duration: 0.01ms !important;
      }
      .reveal { opacity: 1; transform: none; }
      .reveal--scale { opacity: 1; transform: none; }
    }

    /* ========================================
       Responsive
       ======================================== */
    @media (max-width: 1024px) {
      .grid { grid-template-columns: repeat(2, 1fr); }
      .about__grid { grid-template-columns: 1fr; text-align: center; }
      .orb { opacity: 0.2; }
    }

    @media (max-width: 768px) {
      .nav { padding: 12px 16px; overflow: visible; }
      .nav__links {
        display: flex; flex-direction: column;
        position: absolute; top: 100%; left: 0; right: 0;
        background: linear-gradient(180deg, rgba(10, 10, 15, 0.95) 0%, rgba(15, 12, 25, 0.95) 100%);
        backdrop-filter: blur(24px);
        -webkit-backdrop-filter: blur(24px);
        padding: 0; gap: 0;
        border-bottom: 1px solid transparent;
        max-height: 0; overflow: hidden; opacity: 0;
        transition: max-height 0.4s cubic-bezier(0.16, 1, 0.3, 1),
                    opacity 0.3s ease,
                    padding 0.4s cubic-bezier(0.16, 1, 0.3, 1);
      }
      .nav__toggle { display: block; order: 2; }
      .nav__right { gap: 12px; }
      .nav__phone { font-size: 0.82rem; padding: 6px 14px; order: 1; }
      .nav__lang-desktop { display: none; }
      .nav__lang-mobile { display: list-item; list-style: none; border-bottom: 1px solid rgba(255, 255, 255, 0.06); }
      .nav__lang-mobile .nav__lang { display: flex; align-items: center; width: 100%; padding: 16px 24px; border: none; border-radius: 0; background: none; font-size: 1rem; font-weight: 600; color: rgba(255, 255, 255, 0.8); }

      .nav.open .nav__links {
        max-height: 400px; opacity: 1;
        padding: 8px 0;
        border-bottom: 1px solid var(--glass-border);
      }

      .nav__links li {
        border-bottom: 1px solid rgba(255, 255, 255, 0.06);
      }

      .nav__links li:last-child {
        border-bottom: none;
      }

      .nav__links .nav__link {
        display: flex;
        align-items: center;
        padding: 16px 24px;
        font-size: 1rem;
        font-weight: 600;
        color: rgba(255, 255, 255, 0.8);
        transition: all 0.25s ease;
        position: relative;
      }

      .nav__links .nav__link::before {
        content: '';
        position: absolute;
        left: 0; top: 0;
        width: 3px; height: 100%;
        background: linear-gradient(180deg, var(--teal), var(--purple));
        opacity: 0;
        transition: opacity 0.25s ease;
      }

      .nav__links .nav__link::after {
        display: none;
      }

      .nav__links .nav__link:hover,
      .nav__links .nav__link:active {
        color: #fff;
        background: linear-gradient(90deg, rgba(20, 241, 149, 0.08) 0%, rgba(153, 69, 255, 0.04) 100%);
      }

      .nav__links .nav__link:hover::before,
      .nav__links .nav__link:active::before {
        opacity: 1;
      }

      .bg-scene {
        position: absolute;
        height: 100vh;
        height: 100svh;
      }
      .bg-scene picture { width: 100%; height: 100%; }
      .bg-scene__img {
        animation: none;
        transform: none !important;
      }

      .hero { min-height: 90vh; padding: 100px 20px 60px; }
      .hero__title { letter-spacing: -1px; }
      .hero__scroll { display: none; }

      .section { padding: 80px 20px; }
      .grid { grid-template-columns: 1fr; }

      .marquee__item { padding: 0 24px; font-size: 0.75rem; }

      .orb--teal { width: 300px; height: 300px; }
      .orb--purple { width: 350px; height: 350px; }
      .orb--sm { display: none; }
      .aurora { opacity: 0.25; }
      .aurora__wave { filter: blur(60px); }
    }

    @media (max-width: 480px) {
      .hero__actions { flex-direction: column; align-items: center; }
      .btn { width: 100%; max-width: 300px; }
      .stats { grid-template-columns: 1fr; }
      .contact__phone { font-size: 1.3rem; padding: 18px 32px; }
      .contact__methods { gap: 16px; }
      .modal__body { padding: 32px 20px; margin: 16px; }
    }

    /* ========================================
       Contact Modal — Futuristic Glass
       ======================================== */
    .modal-overlay {
      position: fixed;
      inset: 0;
      z-index: 9999;
      display: flex;
      align-items: center;
      justify-content: center;
      background: rgba(0, 0, 0, 0);
      backdrop-filter: blur(0px);
      -webkit-backdrop-filter: blur(0px);
      pointer-events: none;
      transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
      opacity: 0;
    }

    .modal-overlay.active {
      background: rgba(0, 0, 0, 0.6);
      backdrop-filter: blur(16px);
      -webkit-backdrop-filter: blur(16px);
      pointer-events: auto;
      opacity: 1;
    }

    .modal__body {
      position: relative;
      width: 100%;
      max-width: 480px;
      margin: 24px;
      padding: 44px 36px 36px;
      border-radius: var(--radius);
      background: rgba(12, 12, 20, 0.85);
      border: 1px solid rgba(255, 255, 255, 0.08);
      backdrop-filter: saturate(180%) blur(40px);
      -webkit-backdrop-filter: saturate(180%) blur(40px);
      box-shadow: 0 32px 80px rgba(0, 0, 0, 0.5), 0 0 60px rgba(20, 241, 149, 0.04);
      transform: scale(0.92) translateY(20px);
      transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1), opacity 0.4s ease;
      opacity: 0;
      overflow: hidden;
    }

    /* Animated border glow */
    .modal__body::before {
      content: '';
      position: absolute;
      top: -50%; left: -50%;
      width: 200%; height: 200%;
      background: conic-gradient(from 0deg, transparent, var(--teal), transparent, var(--purple), transparent);
      animation: rotate 6s linear infinite;
      opacity: 0.04;
    }

    .modal-overlay.active .modal__body {
      transform: scale(1) translateY(0);
      opacity: 1;
    }

    .modal__close {
      position: absolute;
      top: 16px; right: 16px;
      width: 36px; height: 36px;
      border: none;
      background: rgba(255, 255, 255, 0.05);
      border-radius: 50%;
      cursor: pointer;
      display: flex;
      align-items: center;
      justify-content: center;
      color: var(--text-dim);
      font-size: 1.2rem;
      transition: all var(--transition);
      z-index: 2;
    }

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

    .modal__title {
      font-size: 1.5rem;
      font-weight: 800;
      letter-spacing: -0.5px;
      margin-bottom: 6px;
      position: relative;
      z-index: 1;
    }

    .modal__subtitle {
      font-size: 0.88rem;
      color: var(--text-dim);
      margin-bottom: 32px;
      position: relative;
      z-index: 1;
      min-height: 1.4em;
    }

    .modal__subtitle .typing-cursor {
      display: inline-block;
      width: 2px;
      height: 1em;
      background: var(--teal);
      margin-left: 2px;
      vertical-align: text-bottom;
      animation: cursorBlink 0.6s ease-in-out infinite;
    }

    @keyframes cursorBlink {
      0%, 100% { opacity: 1; }
      50% { opacity: 0; }
    }

    .form-field.field-hidden {
      opacity: 0;
      transform: translateY(16px);
      transition: opacity 0.45s cubic-bezier(0.16, 1, 0.3, 1),
                  transform 0.45s cubic-bezier(0.16, 1, 0.3, 1);
    }

    .form-field.field-visible {
      opacity: 1;
      transform: translateY(0);
    }

    .modal__submit.field-hidden {
      opacity: 0;
      transform: translateY(16px);
      transition: opacity 0.45s cubic-bezier(0.16, 1, 0.3, 1),
                  transform 0.45s cubic-bezier(0.16, 1, 0.3, 1);
    }

    .modal__submit.field-visible {
      opacity: 1;
      transform: translateY(0);
    }

    .modal__form {
      display: flex;
      flex-direction: column;
      gap: 18px;
      position: relative;
      z-index: 1;
    }

    .form-field {
      position: relative;
    }

    .form-field__input {
      width: 100%;
      padding: 14px 44px 14px 16px;
      background: rgba(255, 255, 255, 0.04);
      border: 1px solid rgba(255, 255, 255, 0.1);
      border-radius: 12px;
      font-family: var(--font);
      font-size: 0.92rem;
      color: #fff;
      outline: none;
      transition: all var(--transition);
    }

    .form-field__input::placeholder {
      color: rgba(255, 255, 255, 0.3);
    }

    .form-field__input:focus {
      border-color: var(--teal);
      background: rgba(20, 241, 149, 0.04);
      box-shadow: 0 0 20px rgba(20, 241, 149, 0.08), inset 0 0 20px rgba(20, 241, 149, 0.02);
    }

    .form-field__input.valid {
      border-color: var(--teal);
    }

    .form-field__input.invalid,
    .form-field__input.invalid:focus {
      border-color: rgba(239, 68, 68, 0.7);
      box-shadow: 0 0 16px rgba(239, 68, 68, 0.2), 0 0 6px rgba(239, 68, 68, 0.15);
      background: rgba(239, 68, 68, 0.04);
    }

    textarea.form-field__input {
      min-height: 100px;
      resize: vertical;
      line-height: 1.6;
    }

    /* Check / X indicator */
    .form-field__status {
      position: absolute;
      right: 14px;
      bottom: 0;
      height: 48px;
      width: 20px;
      display: flex;
      align-items: center;
      justify-content: center;
      opacity: 0;
      transition: opacity 0.3s ease;
      pointer-events: none;
    }

    .form-field--textarea .form-field__status {
      bottom: auto;
      top: 32px;
      height: 20px;
    }

    .form-field__status.show { opacity: 1; }

    .form-field__status svg {
      width: 18px; height: 18px;
    }

    .form-field__status--valid svg { stroke: var(--teal); }
    .form-field__status--invalid svg { stroke: #ef4444; }

    .form-field__label {
      display: block;
      font-size: 0.72rem;
      font-weight: 600;
      letter-spacing: 1px;
      text-transform: uppercase;
      color: var(--text-dim);
      margin-bottom: 6px;
    }

    .form-field__label .required {
      color: var(--teal);
      margin-left: 2px;
    }

    .modal__submit {
      width: 100%;
      padding: 16px;
      border: none;
      border-radius: 12px;
      background: linear-gradient(135deg, var(--teal), var(--teal-dim));
      color: #000;
      font-family: var(--font);
      font-size: 0.95rem;
      font-weight: 700;
      cursor: pointer;
      transition: all var(--transition);
      position: relative;
      overflow: hidden;
      margin-top: 4px;
    }

    .modal__submit::before {
      content: '';
      position: absolute;
      top: 0; left: -100%;
      width: 100%; height: 100%;
      background: linear-gradient(90deg, transparent, rgba(255,255,255,0.25), transparent);
      transition: left 0.5s ease;
    }

    .modal__submit:hover::before { left: 100%; }

    .form-error-msg {
      text-align: center;
      font-size: 0.82rem;
      color: #ef4444;
      margin-top: -8px;
      opacity: 0;
      transform: translateY(-6px);
      transition: opacity 0.35s ease, transform 0.35s ease;
    }

    .form-error-msg.show {
      opacity: 1;
      transform: translateY(0);
    }

    @keyframes formShake {
      0%, 100% { transform: translateX(0); }
      20% { transform: translateX(-6px); }
      40% { transform: translateX(6px); }
      60% { transform: translateX(-4px); }
      80% { transform: translateX(4px); }
    }

    .form-field.shake {
      animation: formShake 0.4s ease;
    }

    .modal__submit:hover {
      transform: translateY(-2px);
      box-shadow: 0 0 30px rgba(20, 241, 149, 0.35);
    }

    .modal__submit:disabled {
      opacity: 0.5;
      cursor: not-allowed;
      transform: none;
    }

    .modal__submit:disabled:hover::before { left: -100%; }

    /* Success state */
    .modal__success {
      display: none;
      text-align: center;
      padding: 20px 0;
      position: relative;
      z-index: 1;
    }

    .modal__success.show { display: block; }

    .modal__success-icon {
      width: 64px; height: 64px;
      border-radius: 50%;
      background: rgba(20, 241, 149, 0.1);
      border: 2px solid var(--teal);
      display: flex;
      align-items: center;
      justify-content: center;
      margin: 0 auto 20px;
      animation: successPop 0.5s cubic-bezier(0.16, 1, 0.3, 1);
    }

    .modal__success-icon svg {
      width: 32px; height: 32px;
      stroke: var(--teal);
    }

    @keyframes successPop {
      0% { transform: scale(0); }
      50% { transform: scale(1.15); }
      100% { transform: scale(1); }
    }

    .modal__success h3 {
      font-size: 1.3rem;
      font-weight: 800;
      margin-bottom: 8px;
    }

    .modal__success p {
      color: var(--text-dim);
      font-size: 0.92rem;
    }
