/* Hero */
    .hero{
      position:relative;
      overflow:hidden;
      padding:36px 0 24px;
    }

    .hero{
      position:relative;
      min-height:auto;
      overflow:hidden;
      margin:0;
      padding:0;
    }

    .hero > .container.hero-fullbleed{
      width:100%;
      max-width:none;
      margin:0;
      padding:0;
    }

    .hero-shell{
      position:relative;
      width:100%;
      border-radius:0;
      overflow:hidden;
      min-height:clamp(640px, 88svh, 820px);
      border:none;
      box-shadow:none;
      background:
        linear-gradient(110deg, rgba(255,255,255,.90) 0%, rgba(255,255,255,.82) 28%, rgba(255,255,255,.40) 58%, rgba(255,255,255,.20) 100%),
        url('assets/images/lab-genetics.jpg') center/cover no-repeat,
        linear-gradient(135deg, #eff7fd, #f8fbff);
      isolation:isolate;
    }

    .hero-shell::before{
      content:"";
      position:absolute;
      inset:0;
      background:
        radial-gradient(circle at 82% 18%, rgba(47,179,255,.14), transparent 22%),
        radial-gradient(circle at 78% 72%, rgba(26,140,168,.11), transparent 26%),
        linear-gradient(180deg, rgba(255,255,255,.12), rgba(255,255,255,.04));
      z-index:0;
    }

    .hero-orb{
      position:absolute;
      border-radius:50%;
      filter:blur(16px);
      pointer-events:none;
      opacity:.22;
      animation:floatBlob 10s ease-in-out infinite;
      z-index:0;
    }

    .hero-orb.orb-a{
      width:260px;height:260px;
      top:-40px;right:-60px;
      background:radial-gradient(circle, rgba(120,215,255,.55), rgba(120,215,255,0));
    }

    .hero-orb.orb-b{
      width:220px;height:220px;
      bottom:-30px;left:42%;
      background:radial-gradient(circle, rgba(47,179,255,.24), rgba(47,179,255,0));
      animation-duration:13s;
    }

    @keyframes floatBlob{
      0%,100%{transform:translateY(0) translateX(0)}
      50%{transform:translateY(-16px) translateX(10px)}
    }

    .hero-grid{
      position:relative;
      z-index:1;
      display:grid;
      grid-template-columns:1fr;
      gap:28px;
      min-height:clamp(640px, 88svh, 820px);
      width:min(1240px, calc(100% - 32px));
      margin:0 auto;
      padding:64px 0 42px;
      align-items:end;
    }

    .hero-copy{
      max-width:1100px;
    }

    .hero-title{
      font-size:clamp(42px, 5.2vw, 72px);
      line-height:.98;
      letter-spacing:-.045em;
      font-weight:700;
      margin-bottom:24px;
    }

    .hero-text{
      max-width:760px;
      font-size:17px;
      line-height:1.72;
      color:#49637a;
      margin-bottom:30px;
    }

    .hero-tags{
      display:flex;
      flex-wrap:wrap;
      gap:12px;
      margin-bottom:26px;
    }

    .hero-tag{
      padding:10px 14px;
      border-radius:999px;
      background:rgba(255,255,255,.78);
      border:1px solid rgba(16,32,51,.08);
      color:#314b62;
      font-size:13px;
      font-weight:700;
      white-space:nowrap;
      backdrop-filter:blur(10px);
      box-shadow:0 8px 20px rgba(16,32,51,.04);
    }

    .hero-actions{
      display:flex;
      flex-wrap:wrap;
      gap:14px;
      margin-bottom:28px;
    }

    .btn{
      display:inline-flex;
      align-items:center;
      justify-content:center;
      gap:10px;
      min-height:54px;
      padding:0 22px;
      border-radius:999px;
      border:1px solid rgba(16,32,51,.10);
      background:rgba(255,255,255,.82);
      backdrop-filter:blur(10px);
      font-size:15px;
      font-weight:800;
      transition:var(--transition);
      box-shadow:0 12px 26px rgba(16,32,51,.06);
      cursor:pointer;
    }

    .btn:hover{
      transform:translateY(-3px);
      box-shadow:0 18px 34px rgba(16,32,51,.10);
      border-color:rgba(11,92,171,.18);
    }

    .btn-primary{
      color:#fff;
      background:linear-gradient(135deg,var(--primary),var(--primary-2));
      border-color:transparent;
      box-shadow:0 14px 30px rgba(11,92,171,.22);
    }

    
    .hero-stats{
      margin-top:20px;
      display:grid;
      grid-template-columns:repeat(3, minmax(0,1fr));
      gap:14px;
    }

    .hero-stat{
      position:relative;
      overflow:hidden;
      min-height:172px;
      padding:20px 18px;
      border-radius:22px;
      background:rgba(255,255,255,.84);
      border:1px solid rgba(16,32,51,.08);
      box-shadow:var(--shadow);
      transition:transform .35s ease, box-shadow .35s ease;
    }

    .hero-stat:hover{
      transform:translateY(-6px);
      box-shadow:var(--shadow-hover);
    }

    /* Нестандартная анимация карт */
    .hero-stat::before,
    .direction-card::before,
    .quick-note::before,
    .leader-card::before,
    .lab-card::before,
    .other-lab-card::before{
      content:"";
      position:absolute;
      inset:-1px;
      border-radius:inherit;
      padding:1px;
      background:conic-gradient(
        from 180deg at 50% 50%,
        rgba(47,179,255,.0),
        rgba(47,179,255,.34),
        rgba(11,92,171,.0),
        rgba(120,215,255,.28),
        rgba(47,179,255,.0)
      );
      -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;
      opacity:0;
      transition:opacity .5s ease;
      pointer-events:none;
    }

    .hero-stat:hover::before,
    .direction-card:hover::before,
    .leader-card:hover::before{
      opacity:1;
      animation:spinBorder 2.8s linear infinite;
    }

    @keyframes spinBorder{
      from{transform:rotate(0deg)}
      to{transform:rotate(360deg)}
    }

    .hero-stat-icon{
      width:52px;height:52px;border-radius:16px;
      display:grid;place-items:center;
      background:linear-gradient(135deg, rgba(11,92,171,.10), rgba(26,140,168,.12));
      border:1px solid rgba(11,92,171,.08);
      color:var(--primary);
      font-size:22px;
      margin-bottom:14px;
    }

    .hero-stat h3{
      font-size:17px;
      line-height:1.18;
      letter-spacing:-.02em;
      font-weight:800;
      margin-bottom:9px;
    }

    .hero-stat p{
      font-size:13.5px;
      line-height:1.66;
      color:var(--muted);
    }